2002-06-29 06:31:33 +00:00
|
|
|
/*****************************************************************
|
2003-09-16 19:28:03 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2002-06-29 06:31:33 +00:00
|
|
|
|
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
|
|
Copyright (C) 1997 to 2002 Cristian Tibirna <tibirna@kde.org>
|
2003-09-16 19:28:03 +00:00
|
|
|
Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
|
|
|
You can Freely distribute this program under the GNU General Public
|
|
|
|
License. See the file "COPYING" for the exact licensing terms.
|
2002-06-29 06:31:33 +00:00
|
|
|
******************************************************************/
|
2003-09-16 19:28:03 +00:00
|
|
|
|
2002-07-26 20:30:36 +00:00
|
|
|
#ifndef KWIN_PLACEMENT_H
|
|
|
|
#define KWIN_PLACEMENT_H
|
2002-06-29 06:31:33 +00:00
|
|
|
|
|
|
|
#include <qpoint.h>
|
|
|
|
#include <qvaluelist.h>
|
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
namespace KWinInternal
|
|
|
|
{
|
2002-06-29 06:31:33 +00:00
|
|
|
|
|
|
|
class Workspace;
|
|
|
|
class Client;
|
|
|
|
|
|
|
|
class Placement
|
2003-09-16 19:28:03 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
Placement(Workspace* w);
|
|
|
|
|
2004-01-10 15:13:23 +00:00
|
|
|
void place(Client* c, QRect& area );
|
2002-06-29 06:31:33 +00:00
|
|
|
|
2004-01-10 15:13:23 +00:00
|
|
|
void placeAtRandom (Client* c, const QRect& area );
|
|
|
|
void placeCascaded (Client* c, const QRect& area, bool re_init = false);
|
|
|
|
void placeSmart (Client* c, const QRect& area );
|
|
|
|
void placeCentered (Client* c, const QRect& area );
|
|
|
|
void placeZeroCornered(Client* c, const QRect& area );
|
|
|
|
void placeDialog (Client* c, QRect& area );
|
|
|
|
void placeUtility (Client* c, QRect& area );
|
2002-06-29 06:31:33 +00:00
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
private:
|
2002-06-29 06:31:33 +00:00
|
|
|
|
2004-01-10 15:13:23 +00:00
|
|
|
void placeInternal(Client* c, const QRect& area );
|
|
|
|
void placeUnderMouse(Client* c, QRect& area );
|
|
|
|
void placeOnMainWindow(Client* c, QRect& area );
|
|
|
|
QRect checkArea( const Client*c, const QRect& area );
|
2002-06-29 06:31:33 +00:00
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
Placement();
|
2002-06-29 06:31:33 +00:00
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
//CT needed for cascading+
|
|
|
|
struct DesktopCascadingInfo
|
|
|
|
{
|
|
|
|
QPoint pos;
|
|
|
|
int col;
|
|
|
|
int row;
|
|
|
|
};
|
2002-06-29 06:31:33 +00:00
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
QValueList<DesktopCascadingInfo> cci;
|
2002-06-29 06:31:33 +00:00
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
Workspace* m_WorkspacePtr;
|
|
|
|
};
|
2002-06-29 06:31:33 +00:00
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
} // namespace
|
2002-06-29 14:39:35 +00:00
|
|
|
|
|
|
|
#endif
|