You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
3.3 KiB
141 lines
3.3 KiB
/******************************************************************** |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org> |
|
Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org> |
|
|
|
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/>. |
|
*********************************************************************/ |
|
|
|
#ifndef KWIN_TABBOX_H |
|
#define KWIN_TABBOX_H |
|
|
|
#include <QFrame> |
|
#include <QTimer> |
|
#include "utils.h" |
|
|
|
|
|
namespace KWin |
|
{ |
|
|
|
class Workspace; |
|
class Client; |
|
|
|
class TabBox : public QFrame |
|
{ |
|
Q_OBJECT |
|
public: |
|
TabBox( Workspace *ws ); |
|
~TabBox(); |
|
|
|
Client* currentClient(); |
|
ClientList currentClientList(); |
|
int currentDesktop(); |
|
QList< int > currentDesktopList(); |
|
|
|
void setCurrentClient( Client* newClient ); |
|
void setCurrentDesktop( int newDesktop ); |
|
|
|
enum SortOrder { StaticOrder, MostRecentlyUsedOrder }; |
|
void setMode( TabBoxMode mode ); |
|
TabBoxMode mode() const; |
|
|
|
void reset( bool partial_reset = false ); |
|
void nextPrev( bool next = true); |
|
|
|
void delayedShow(); |
|
void hide(); |
|
|
|
void refDisplay(); |
|
void unrefDisplay(); |
|
bool isDisplayed() const; |
|
|
|
void handleMouseEvent( XEvent* ); |
|
|
|
Workspace* workspace() const; |
|
|
|
void reconfigure(); |
|
|
|
public slots: |
|
void show(); |
|
|
|
protected: |
|
void showEvent( QShowEvent* ); |
|
void hideEvent( QHideEvent* ); |
|
void paintEvent( QPaintEvent* ); |
|
|
|
private: |
|
void createClientList(ClientList &list, int desktop /*-1 = all*/, Client *start, bool chain); |
|
void createDesktopList(QList< int > &list, int start, SortOrder order); |
|
|
|
private: |
|
Workspace* wspace; |
|
TabBoxMode m; |
|
ClientList clients; |
|
Client* client; |
|
QList< int > desktops; |
|
int desk; |
|
|
|
QTimer delayedShowTimer; |
|
int display_refcount; |
|
QString no_tasks; |
|
int lineHeight; |
|
bool showMiniIcon; |
|
bool options_traverse_all; |
|
}; |
|
|
|
|
|
/*! |
|
Returns the tab box' workspace |
|
*/ |
|
inline Workspace* TabBox::workspace() const |
|
{ |
|
return wspace; |
|
} |
|
|
|
/*! |
|
Returns the current mode, either TabBoxDesktopListMode or TabBoxWindowsMode |
|
|
|
\sa setMode() |
|
*/ |
|
inline TabBoxMode TabBox::mode() const |
|
{ |
|
return m; |
|
} |
|
|
|
/*! |
|
Increase the reference count, preventing the default tabbox from showing. |
|
|
|
\sa unrefDisplay(), isDisplayed() |
|
*/ |
|
inline void TabBox::refDisplay() |
|
{ |
|
++display_refcount; |
|
} |
|
|
|
/*! |
|
Returns whether the tab box is being displayed, either natively or by an |
|
effect. |
|
|
|
\sa refDisplay(), unrefDisplay() |
|
*/ |
|
inline bool TabBox::isDisplayed() const |
|
{ |
|
return display_refcount > 0; |
|
} |
|
|
|
} // namespace |
|
|
|
#endif
|
|
|