Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / workspace / khotkeys / kcontrol / voice_settings_tab.h
blobfe12e768d84af1fa54725aaa58954f9327857611
1 /****************************************************************************
3 KHotKeys
5 Copyright (C) 2005 Olivier Goffart <ogoffart @ kde.org>
7 Distributed under the terms of the GNU General Public License version 2.
9 ****************************************************************************/
11 #ifndef VOICE_SETTINGS_TAB_H_
12 #define VOICE_SETTINGS_TAB_H_
14 #include <ui_voice_settings_tab_ui.h>
17 class Voice_settings_tab_ui : public QWidget, public Ui::Voice_settings_tab_ui
19 public:
20 Voice_settings_tab_ui( QWidget *parent ) : QWidget( parent ) {
21 setupUi( this );
25 namespace KHotKeys
28 class Voice_settings_tab
29 : public Voice_settings_tab_ui
31 Q_OBJECT
32 public:
33 Voice_settings_tab( QWidget* parent = NULL, const char* name = NULL );
34 void read_data();
35 void write_data() const;
36 public slots:
37 void clear_data();
38 private slots:
39 void slotCapturedKey( const QKeySequence& );
42 //***************************************************************************
43 // Inline
44 //***************************************************************************
46 } // namespace KHotKeys
48 #endif