summaryrefslogtreecommitdiffstats
path: root/khotkeys/kcontrol/waiting_widget.h
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2022-08-24 20:55:24 +0900
committerMichele Calgaro <[email protected]>2022-08-25 20:38:45 +0900
commita2cb178bed086ae98097b5bded1817cc7704d2b4 (patch)
tree83bcb15c64826e0d153e6efe981d943242dae9d9 /khotkeys/kcontrol/waiting_widget.h
parent12007bb689082f356835ae6ad4412ee414230e83 (diff)
downloadtdebase-a2cb178bed086ae98097b5bded1817cc7704d2b4.tar.gz
tdebase-a2cb178bed086ae98097b5bded1817cc7704d2b4.zip
khotkeys: added 'waiting' action to the list of available choices.
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 7fed9587e9673983fe4128557baa33b23b71076f)
Diffstat (limited to 'khotkeys/kcontrol/waiting_widget.h')
-rw-r--r--khotkeys/kcontrol/waiting_widget.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/khotkeys/kcontrol/waiting_widget.h b/khotkeys/kcontrol/waiting_widget.h
new file mode 100644
index 000000000..520e7742e
--- /dev/null
+++ b/khotkeys/kcontrol/waiting_widget.h
@@ -0,0 +1,36 @@
+/****************************************************************************
+
+ KHotKeys
+
+ Copyright (C) 1999-2001 Lubos Lunak <[email protected]>
+
+ Distributed under the terms of the GNU General Public License version 2.
+
+****************************************************************************/
+
+#ifndef _WAITING_WIDGET_H_
+#define _WAITING_WIDGET_H_
+
+#include <waiting_widget_ui.h>
+
+namespace KHotKeys
+{
+
+class Waiting_action;
+class Action_data;
+
+class Waiting_widget
+ : public Waiting_widget_ui
+ {
+ Q_OBJECT
+ public:
+ Waiting_widget( TQWidget* parent_P = NULL, const char* name_P = NULL );
+ void set_data( const Waiting_action* data_P );
+ Waiting_action* get_data( Action_data* data_P ) const;
+ };
+
+typedef Waiting_widget Waiting_tab;
+
+} // namespace KHotKeys
+
+#endif