2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-04-29 17:35:43 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2007 Rivo Laks <rivolaks@hot.ee>
|
2008-09-22 13:03:00 +00:00
|
|
|
Copyright (C) 2008 Lucas Murray <lmurray@undefinedfire.com>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#ifndef KWIN_PRESENTWINDOWS_H
|
|
|
|
#define KWIN_PRESENTWINDOWS_H
|
|
|
|
|
2009-02-06 10:15:06 +00:00
|
|
|
#include "presentwindows_proxy.h"
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
#include <kwineffects.h>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Expose-like effect which shows all windows on current desktop side-by-side,
|
|
|
|
* letting the user select active window.
|
|
|
|
**/
|
|
|
|
class PresentWindowsEffect
|
|
|
|
: public QObject, public Effect
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2008-09-22 13:03:00 +00:00
|
|
|
private:
|
|
|
|
// Structures
|
|
|
|
struct WindowData
|
|
|
|
{
|
|
|
|
bool visible;
|
|
|
|
double opacity;
|
|
|
|
double highlight;
|
|
|
|
int slot;
|
|
|
|
int slot_distance;
|
2009-02-22 13:04:16 +00:00
|
|
|
EffectFrame* textFrame;
|
|
|
|
EffectFrame* iconFrame;
|
2008-09-22 13:03:00 +00:00
|
|
|
};
|
|
|
|
typedef QHash<EffectWindow*, WindowData> DataHash;
|
|
|
|
struct GridSize
|
|
|
|
{
|
|
|
|
int columns;
|
|
|
|
int rows;
|
|
|
|
};
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
public:
|
|
|
|
PresentWindowsEffect();
|
|
|
|
virtual ~PresentWindowsEffect();
|
|
|
|
|
2008-10-02 09:27:32 +00:00
|
|
|
virtual void reconfigure( ReconfigureFlags );
|
2009-02-06 10:15:06 +00:00
|
|
|
virtual const void* proxy() const;
|
|
|
|
|
2008-09-22 13:03:00 +00:00
|
|
|
// Screen painting
|
|
|
|
virtual void prePaintScreen( ScreenPrePaintData &data, int time );
|
|
|
|
virtual void paintScreen( int mask, QRegion region, ScreenPaintData &data );
|
2007-04-29 17:35:43 +00:00
|
|
|
virtual void postPaintScreen();
|
|
|
|
|
2008-09-22 13:03:00 +00:00
|
|
|
// Window painting
|
|
|
|
virtual void prePaintWindow( EffectWindow *w, WindowPrePaintData &data, int time );
|
|
|
|
virtual void paintWindow( EffectWindow *w, int mask, QRegion region, WindowPaintData &data );
|
|
|
|
|
|
|
|
// User interaction
|
|
|
|
virtual void windowAdded( EffectWindow *w );
|
|
|
|
virtual void windowClosed( EffectWindow *w );
|
2008-09-23 03:16:36 +00:00
|
|
|
virtual void windowDeleted( EffectWindow *w );
|
2007-04-29 17:35:43 +00:00
|
|
|
virtual bool borderActivated( ElectricBorder border );
|
2008-09-22 13:03:00 +00:00
|
|
|
virtual void windowInputMouseEvent( Window w, QEvent *e );
|
|
|
|
virtual void grabbedKeyboardEvent( QKeyEvent *e );
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2008-09-22 13:03:00 +00:00
|
|
|
// Tab box
|
2008-08-13 12:25:19 +00:00
|
|
|
virtual void tabBoxAdded( int mode );
|
|
|
|
virtual void tabBoxClosed();
|
|
|
|
virtual void tabBoxUpdated();
|
|
|
|
|
2008-08-25 09:17:15 +00:00
|
|
|
enum { LayoutNatural, LayoutRegularGrid, LayoutFlexibleGrid }; // Layout modes
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
public slots:
|
2008-12-13 09:02:27 +00:00
|
|
|
void setActive( bool active, bool closingTab = false ); // HACK: closingTab shouldn't be needed
|
2008-09-22 13:03:00 +00:00
|
|
|
void toggleActive() { m_allDesktops = false; setActive( !m_activated ); }
|
|
|
|
void toggleActiveAllDesktops() { m_allDesktops = true; setActive( !m_activated ); }
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
protected:
|
2008-09-22 13:03:00 +00:00
|
|
|
// Window rearranging
|
2007-04-29 17:35:43 +00:00
|
|
|
void rearrangeWindows();
|
2008-09-22 13:03:00 +00:00
|
|
|
void calculateWindowTransformationsClosest( EffectWindowList windowlist, int screen );
|
|
|
|
void calculateWindowTransformationsKompose( EffectWindowList windowlist, int screen );
|
|
|
|
void calculateWindowTransformationsNatural( EffectWindowList windowlist, int screen );
|
|
|
|
|
|
|
|
// Helper functions for window rearranging
|
|
|
|
inline double aspectRatio( EffectWindow *w )
|
|
|
|
{ return w->width() / double( w->height() ); }
|
|
|
|
inline int widthForHeight( EffectWindow *w, int height )
|
|
|
|
{ return int(( height / double( w->height() )) * w->width() ); }
|
|
|
|
inline int heightForWidth( EffectWindow *w, int width )
|
|
|
|
{ return int(( width / double( w->width() )) * w->height() ); }
|
|
|
|
void assignSlots( EffectWindowList windowlist, const QRect &area, int columns, int rows );
|
2008-06-10 15:49:49 +00:00
|
|
|
void getBestAssignments( EffectWindowList windowlist );
|
2008-09-22 13:03:00 +00:00
|
|
|
bool isOverlappingAny( EffectWindow *w, const QHash<EffectWindow*, QRect> &targets, const QRegion &border );
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2008-09-22 13:03:00 +00:00
|
|
|
// Filter box
|
2009-02-21 04:53:13 +00:00
|
|
|
void updateFilterFrame();
|
2007-07-05 11:41:02 +00:00
|
|
|
|
2008-09-22 13:03:00 +00:00
|
|
|
// Helper functions
|
|
|
|
bool isSelectableWindow( EffectWindow *w );
|
|
|
|
bool isVisibleWindow( EffectWindow *w );
|
|
|
|
void setHighlightedWindow( EffectWindow *w );
|
|
|
|
EffectWindow* relativeWindow( EffectWindow *w, int xdiff, int ydiff, bool wrap ) const;
|
2007-11-21 11:57:09 +00:00
|
|
|
EffectWindow* findFirstWindow() const;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
private:
|
2009-02-06 10:15:06 +00:00
|
|
|
PresentWindowsEffectProxy m_proxy;
|
|
|
|
friend class PresentWindowsEffectProxy;
|
|
|
|
|
2008-09-22 13:03:00 +00:00
|
|
|
// User configuration settings
|
|
|
|
ElectricBorder m_borderActivate;
|
|
|
|
ElectricBorder m_borderActivateAll;
|
|
|
|
int m_layoutMode;
|
|
|
|
bool m_showCaptions;
|
|
|
|
bool m_showIcons;
|
|
|
|
bool m_tabBoxAllowed;
|
|
|
|
int m_accuracy;
|
|
|
|
bool m_fillGaps;
|
|
|
|
double m_fadeDuration;
|
2009-01-13 10:19:47 +00:00
|
|
|
bool m_showPanel;
|
2008-09-22 13:03:00 +00:00
|
|
|
|
|
|
|
// Activation
|
|
|
|
bool m_activated;
|
|
|
|
bool m_allDesktops;
|
2008-10-21 07:15:35 +00:00
|
|
|
bool m_ignoreMinimized;
|
2008-09-22 13:03:00 +00:00
|
|
|
double m_decalOpacity;
|
|
|
|
Window m_input;
|
|
|
|
bool m_hasKeyboardGrab;
|
|
|
|
bool m_tabBoxEnabled;
|
|
|
|
|
|
|
|
// Window data
|
|
|
|
WindowMotionManager m_motionManager;
|
|
|
|
DataHash m_windowData;
|
|
|
|
EffectWindow *m_highlightedWindow;
|
|
|
|
|
|
|
|
// Grid layout info
|
|
|
|
QList<GridSize> m_gridSizes;
|
|
|
|
|
|
|
|
// Filter box
|
2009-02-21 04:53:13 +00:00
|
|
|
EffectFrame m_filterFrame;
|
2008-09-22 13:03:00 +00:00
|
|
|
QString m_windowFilter;
|
2007-04-29 17:35:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|