summaryrefslogtreecommitdiffstats
path: root/kickermenu-3.3/menuapplet.h
blob: 7825bd288845844cf8dd022c9c899c61a6ff5ca1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*****************************************************************

Copyright (c) 2002 Siegfried Nijssen <snijssen@liacs.nl>
Copyright (c) 2003 Lubos Lunak <l.lunak@suse.cz>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

******************************************************************/

#ifndef _MENUAPPLET_H_
#define _MENUAPPLET_H_

#include <kpanelapplet.h>
#include <qintdict.h>
#include <qvaluelist.h>
#include <qmenubar.h>
#include <kwindowlistmenu.h>
#include <kwinmodule.h>
#include <kmanagerselection.h>
#include <dcopclient.h>
#include <dcopobject.h>
#include <qxembed.h>
#include <karrowbutton.h>
#include <assert.h>

namespace KickerMenuApplet
{

class MenuEmbed;

class Applet : public KPanelApplet, public DCOPObject
    {
    Q_OBJECT
    K_DCOP
    k_dcop:
        ASYNC configure();
    public:
	Applet( const QString& configFile, QWidget *parent );
        virtual ~Applet();
	virtual int widthForHeight( int height ) const;
	virtual int heightForWidth( int width ) const;
	virtual bool eventFilter( QObject* obj, QEvent* ev );
	void menuLost( MenuEmbed* embed );
    protected:
	virtual void resizeEvent( QResizeEvent* );
	virtual void paletteChange(const QPalette& );
    private slots:
	void windowAdded( WId w );
	void activeWindowChanged( WId w );
	void lostSelection();
        void readSettings();
        void claimSelection();
        void growClicked();
        // to show current active window (not necessary equal to the menubar)
        void initPopup();
        void windowRemoved(WId w);
    private:
        bool isDisabled() const; // does it own the manager selection?
	void updateGrowIndicators();
        void moveMenu( const QWidget* indicator );
	WId tryTransientFor( WId w );
        void activateMenu( MenuEmbed* embed );
	static Atom makeSelectionAtom();
	KWinModule* module;
	QValueList< MenuEmbed* > menus;
	MenuEmbed* active_menu;
	KArrowButton grow_indicator_left, grow_indicator_right;
	KSelectionOwner* selection;
        KSelectionWatcher* selection_watcher;
        bool desktop_menu;
        DCOPClient dcopclient;
        // to show current active window (not necessary equal to the menubar)   
        QMenuBar *windowIndicator;
        QIntDict<QString>windowTitleDict;
        KWindowListMenu* windowList;
    };

class MenuEmbed
    : public QXEmbed
    {
    Q_OBJECT
    public:
	MenuEmbed( WId mainwindow, bool desktop,
            QWidget* parent = NULL, const char* name = NULL );
	WId mainWindow() const;
        bool isDesktopMenu() const;
        virtual void setMinimumSize( int w, int h );
        void setMinimumSize( const QSize& s ) { setMinimumSize( s.width(), s.height()); }
    protected:
	virtual void windowChanged( WId w );
	virtual bool x11Event( XEvent* ev );
    private:
        void sendSyntheticConfigureNotifyEvent();
	WId main_window;
        bool desktop;
    };

inline
bool Applet::isDisabled() const
    {
    assert( ( selection == NULL && selection_watcher != NULL )
        || ( selection != NULL && selection_watcher == NULL ));
    return selection == NULL;
    }

inline
WId MenuEmbed::mainWindow() const
    {
    return main_window;
    }
        
inline
bool MenuEmbed::isDesktopMenu() const
    {
    return desktop;
    }
    
} // namespace

#endif