blob: 32690f44e16ba234349261649ddfaf21d470fc6a (
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
|
/****************************************************************************
KHotKeys
Copyright (C) 1999-2001 Lubos Lunak <l.lunak@kde.org>
Distributed under the terms of the GNU General Public License version 2.
****************************************************************************/
#ifndef _KEYBOARD_INPUT_WIDGET_H_
#define _KEYBOARD_INPUT_WIDGET_H_
#include <keyboard_input_widget_ui.h>
namespace KHotKeys
{
class Keyboard_input_action;
class Action_data;
class Keyboard_input_widget
: public Keyboard_input_widget_ui
{
Q_OBJECT
public:
Keyboard_input_widget( TQWidget* parent_P = NULL, const char* name_P = NULL );
void set_data( const Keyboard_input_action* data_P );
Keyboard_input_action* get_data( Action_data* data_P ) const;
public slots:
void clear_data();
protected slots:
virtual void modify_pressed();
};
typedef Keyboard_input_widget Keyboard_input_tab;
//***************************************************************************
// Inline
//***************************************************************************
} // namespace KHotKeys
#endif
|