blob: c91e01f427f0f48d7c381bca4ccbd8656e9a63fa (
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
|
#ifndef __TDEACCELPRIVATE_H
#define __TDEACCELPRIVATE_H
#include "kkeyserver_x11.h"
#include <tqtimer.h>
class TDEAccelAction;
/**
* @internal
*/
class TDECORE_EXPORT TDEAccelPrivate : public TQObject, public TDEAccelBase
{
Q_OBJECT
public:
TDEAccel* m_pAccel;
TQWidget* m_pWatch;
TQMap<int, int> m_mapIDToKey;
TQMap<int, TDEAccelAction*> m_mapIDToAction;
TQTimer m_timerShowMenu;
TDEAccelPrivate( TDEAccel* pParent, TQWidget* pWatch );
virtual void setEnabled( bool bEnabled );
bool setEnabled( const TQString& sAction, bool bEnable );
virtual bool removeAction( const TQString& sAction );
virtual bool emitSignal( TDEAccelBase::Signal signal );
virtual bool connectKey( TDEAccelAction& action, const KKeyServer::Key& key );
virtual bool connectKey( const KKeyServer::Key& key );
virtual bool disconnectKey( TDEAccelAction& action, const KKeyServer::Key& key );
virtual bool disconnectKey( const KKeyServer::Key& key );
signals:
void menuItemActivated();
void menuItemActivated(TDEAccelAction*);
private:
#ifndef Q_WS_WIN /** @todo TEMP: new implementation (commit #424926) didn't work */
void emitActivatedSignal(TDEAccelAction*);
#endif
private slots:
void slotKeyPressed( int id );
void slotShowMenu();
void slotMenuActivated( int iAction );
bool eventFilter( TQObject* pWatched, TQEvent* pEvent ); // virtual method from QObject
};
#endif // !__TDEACCELPRIVATE_H
|