Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / workspace / khotkeys / kcontrol / main_buttons_widget.h
blob8b9e523ae0400374aee2f87df3f8ad95a82b110f
1 /****************************************************************************
3 KHotKeys
5 Copyright (C) 1999-2001 Lubos Lunak <l.lunak@kde.org>
7 Distributed under the terms of the GNU General Public License version 2.
9 ****************************************************************************/
11 #ifndef MAIN_BUTTONS_WIDGET_H
12 #define MAIN_BUTTONS_WIDGET_H
14 #include <ui_main_buttons_widget_ui.h>
16 namespace KHotKeys
19 class Main_buttons_widget_ui : public QWidget, public Ui::Main_buttons_widget_ui
21 public:
22 Main_buttons_widget_ui( QWidget *parent ) : QWidget( parent ) {
23 setupUi( this );
27 class Main_buttons_widget
28 : public Main_buttons_widget_ui
30 Q_OBJECT
31 public:
32 Main_buttons_widget( QWidget* parent_P = NULL, const char* name_P = NULL );
33 void enable_delete( bool enable_P );
34 Q_SIGNALS:
35 void new_action_pressed();
36 void new_action_group_pressed();
37 void delete_action_pressed();
38 void global_settings_pressed();
41 //***************************************************************************
42 // Inline
43 //***************************************************************************
45 } // namespace KHotKeys
47 #endif