2002-06-29 06:31:33 +00:00
|
|
|
/*****************************************************************
|
|
|
|
kwin - the KDE window manager
|
|
|
|
|
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
|
|
|
|
|
|
|
|
|
|
Placement algorithms
|
|
|
|
Copyright (C) 1997 to 2002 Cristian Tibirna <tibirna@kde.org>
|
|
|
|
******************************************************************/
|
2002-06-29 14:39:35 +00:00
|
|
|
#ifndef PLACEMENT_H
|
|
|
|
#define PLACEMENT_H
|
2002-06-29 06:31:33 +00:00
|
|
|
|
|
|
|
#include <qpoint.h>
|
|
|
|
#include <qvaluelist.h>
|
|
|
|
|
|
|
|
namespace KWinInternal {
|
|
|
|
|
|
|
|
class Workspace;
|
|
|
|
class Client;
|
|
|
|
|
|
|
|
class PlacementPrivate;
|
|
|
|
|
|
|
|
class Placement
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
Placement(Workspace* w);
|
|
|
|
~Placement();
|
|
|
|
|
|
|
|
void place(Client* c);
|
|
|
|
|
|
|
|
void placeAtRandom (Client* c);
|
|
|
|
void placeCascaded (Client* c, bool re_init = false);
|
|
|
|
void placeSmart (Client* c);
|
|
|
|
void placeStupidlyCentered (Client* c);
|
|
|
|
void placeStupidlyZeroCornered(Client* c);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Placement();
|
|
|
|
|
|
|
|
PlacementPrivate* d;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2002-06-29 14:39:35 +00:00
|
|
|
|
|
|
|
#endif
|