blob: 26db6fd870620ce5558015bcc396efc689fa08f7 (
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
|
/****************************************************************************
KHotKeys
Copyright (C) 1999-2001 Lubos Lunak <l.lunak@kde.org>
Distributed under the terms of the GNU General Public License version 2.
****************************************************************************/
#ifndef _WINDOWDEF_SIMPLE_WIDGET_H_
#define _WINDOWDEF_SIMPLE_WIDGET_H_
#include <windowdef_simple_widget_ui.h>
namespace KHotKeys
{
class Windowdef_simple;
class Windowdef_list_item;
class Windowdef_simple_widget
: public Windowdef_simple_widget_ui
{
Q_OBJECT
public:
Windowdef_simple_widget( TQWidget* parent_P = NULL, const char* name_P = NULL );
void set_data( const Windowdef_simple* data_P );
Windowdef_simple* get_data() const;
void set_autodetect( TQObject* obj_P, const char* slot_P );
public slots:
void clear_data();
protected:
void autodetect();
protected slots:
virtual void autodetect_clicked();
virtual void window_role_combo_changed( int item_P );
virtual void window_class_combo_changed( int item_P );
virtual void window_title_combo_changed( int item_P );
void autodetect_window_selected( WId window );
signals:
void autodetect_signal();
};
//***************************************************************************
// Inline
//***************************************************************************
} // namespace KHotKeys
#endif
|