~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to plasma/desktop/applets/windowlist/WindowList.h

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***********************************************************************************
 
2
* Window List: Plasmoid to show list of opened windows.
 
3
* Copyright (C) 2009 Michal Dutkiewicz aka Emdek <emdeck@gmail.com>
 
4
*
 
5
* This program is free software; you can redistribute it and/or
 
6
* modify it under the terms of the GNU General Public License
 
7
* as published by the Free Software Foundation; either version 2
 
8
* of the License, or (at your option) any later version.
 
9
*
 
10
* This program is distributed in the hope that it will be useful,
 
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
* GNU General Public License for more details.
 
14
*
 
15
* You should have received a copy of the GNU General Public License
 
16
* along with this program; if not, write to the Free Software
 
17
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
18
*
 
19
***********************************************************************************/
 
20
 
 
21
#ifndef WINDOWLIST_HEADER
 
22
#define WINDOWLIST_HEADER
 
23
 
 
24
#include <QEvent>
 
25
#include <QGraphicsLinearLayout>
 
26
#include <QGraphicsSceneMouseEvent>
 
27
#include <QGraphicsSceneWheelEvent>
 
28
 
 
29
#include <Plasma/Applet>
 
30
 
 
31
#include <kworkspace/kwindowlistmenu.h>
 
32
 
 
33
class WindowList : public Plasma::Applet
 
34
{
 
35
    Q_OBJECT
 
36
 
 
37
public:
 
38
    WindowList(QObject *parent, const QVariantList &args);
 
39
    ~WindowList();
 
40
 
 
41
    void init();
 
42
 
 
43
public slots:
 
44
    void showMenu(bool onlyCurrentDesktop = false);
 
45
    void triggered(QAction *action);
 
46
 
 
47
protected:
 
48
    void mousePressEvent(QGraphicsSceneMouseEvent *event);
 
49
    void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
 
50
    void wheelEvent(QGraphicsSceneWheelEvent *event);
 
51
    bool eventFilter(QObject *object, QEvent *event);
 
52
 
 
53
private:
 
54
    KWindowListMenu *m_listMenu;
 
55
    QPoint m_dragStartPosition;
 
56
};
 
57
 
 
58
#endif