summaryrefslogtreecommitdiffstats
path: root/kicker/applets/menu/menuapplet.h
blob: 0b09334b690ff435fc2b8030f4ccc543f3a83cff (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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
/*****************************************************************

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 <assert.h>

#include <tqvaluelist.h>
#include <tqevent.h>
#include <qxembed.h>

#include <kpanelapplet.h>
#include <kmanagerselection.h>

#include <dcopobject.h>
#include <dcopclient.h>

#include <karrowbutton.h>

class KWinModule;

namespace KickerMenuApplet
{

class MenuEmbed;

/**
 * @short A central menu bar
 *
 * @description All status change, such as when an window is activated,
 * a new window popped up, etc, is received via @ref KWin::WindowInfo and @ref
 * NETWinInfo. Status changes for X selections are done via TDESelectionWatcher.
 *
 * How it works in broad terms:  KickerMenuApplet gets notified as soon a window
 * changes(a new pops up etc.) and accordingly updates the list @ref menus,
 * which contains all known menus. When a new window gains focus, it looks up the
 * correct MenuEmbed in @ref menus, and then switches to that one.
 *
 * The documentation is a bit rusty -- read it with a critical eye.
 *
 * @author Siegfried Nijssen <snijssen@liacs.nl>
 * @author Lubos Lunak <l.lunak@suse.cz>
 */

class Applet : public KPanelApplet, public DCOPObject
{
    Q_OBJECT
    K_DCOP

k_dcop:
   
    /**
     * Called by the Kicker configuration(KCM). Does in turn call
     * readSettings().
     */
    ASYNC configure();
    
public:
    Applet( const TQString& configFile, TQWidget *parent );
            virtual ~Applet();
    virtual int widthForHeight( int height ) const;
    virtual int heightForWidth( int width ) const;
    
    /**
     * Looks up @param embed in @ref menus, and removes it.
     */
    void menuLost( MenuEmbed* embed );
    void updateMenuGeometry( MenuEmbed* embed );
    void setBackground();

protected:
    
    virtual void paletteChange(const TQPalette& );
    virtual void positionChange( Position p );
    virtual void moveEvent(TQMoveEvent *);

private slots:
    
    /**
     * Called each time a window is added. When the selection is
     * initially claimed, it is called for every window. It does the big
     * work, and does the embedding with MenuEmbed.
     */
    void windowAdded( WId w );
   
    /**
     * Finds @p w's menubar in @see menus, and then activates it.
     *
     * @param w the activated window.
     */
    void activeWindowChanged( WId w );
    
    /**
     * Called when the selection(selection_atom) is lost. Deletes the
     * embedded menus, and starts listening for the selection again.
     *
     */
    void lostSelection();
    
    /**
     * Reads whether a central menu bar should be used or not, basically.
     */
    void readSettings();
    void claimSelection();
    
private:
    
    /**
     * Returns true if the selection is Not owned. That is, the menu applet
     * isn't "running" and is listening for the selection to be released.
     */
    bool isDisabled() const;
    
    WId tryTransientFor( WId w );
   
    /**
     * Does some sanity checks, and then sets active_menu to @param embed.
     */
    void activateMenu( MenuEmbed* embed );
    
    /**
     * Creates msg_type_atom and selection_atom, and returns the latter.
     */
    static Atom makeSelectionAtom();
    void updateTopEdgeOffset();
    KWinModule* module;
    
    /**
     * List of all known menus.
     */
    TQValueList< MenuEmbed* > menus;
    
    /**
     * A pointer to the current active menu, which is member
     * of @ref menus.
     */
    MenuEmbed* active_menu;
    
    TDESelectionOwner* selection;
    
    /**
     * Only the messenger. Dispatches signals to  claimSelection().
     */
    TDESelectionWatcher* selection_watcher;
    
    /**
     * Whether the Desktop menu should be used, when a window
     * with no menu is used.
     */
    bool desktop_menu;
    DCOPClient dcopclient;
    
    /**
     * The distance to the top of the screen.
     */
    int topEdgeOffset;
};

/**
 *
 * @author Siegfried Nijssen <snijssen@liacs.nl>
 * @author Lubos Lunak <l.lunak@suse.cz>
 */
class MenuEmbed
    : public QXEmbed
{
    Q_OBJECT

public:

    /**
     * Default constructor
     *
     * @param mainwindow window ID for the window to be plugged
     * @param desktop true if @p mainwindow is the desktop
     */
    MenuEmbed( WId mainwindow, bool desktop,
                TQWidget* parent = NULL, const char* name = NULL );
    
    void setBackground();
    
    /**
     * @returns the window ID for the handled window.
     */
    WId mainWindow() const;
    
    /**
     */
    bool isDesktopMenu() const;
    virtual void setMinimumSize( int w, int h );
    void setMinimumSize( const TQSize& s ) { setMinimumSize( s.width(), s.height()); }

protected:
    
    /**
     * When @p w is None, that is the embedded window was lost, it calls
     * menuLost() such that the this is deleted from @ref menus list.
     */
    virtual void windowChanged( WId w );
    
    virtual bool x11Event( XEvent* ev );

private:
    
    void sendSyntheticConfigureNotifyEvent();
    WId main_window;
    
    /**
     * If the window is the desktop 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