diff options
author | Michele Calgaro <[email protected]> | 2022-08-11 18:01:06 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2022-08-11 18:31:08 +0900 |
commit | 5e4ca4df9bb34e10a897e32e7e0ca8645b97f293 (patch) | |
tree | 8201231b29ca15ca749e4d886c35c3596b85aae6 /khotkeys/kcontrol/actions_listview_widget.h | |
parent | 0c22a14875913dc185e029d0078a8d15c9ffe102 (diff) | |
download | tdebase-5e4ca4df9bb34e10a897e32e7e0ca8645b97f293.tar.gz tdebase-5e4ca4df9bb34e10a897e32e7e0ca8645b97f293.zip |
TCC khotkeys: added 'move up' and 'move down' buttons to 'Actions' and 'Conditions' listviews for input actions.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'khotkeys/kcontrol/actions_listview_widget.h')
-rw-r--r-- | khotkeys/kcontrol/actions_listview_widget.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/khotkeys/kcontrol/actions_listview_widget.h b/khotkeys/kcontrol/actions_listview_widget.h index 0f3a632f4..e380791ee 100644 --- a/khotkeys/kcontrol/actions_listview_widget.h +++ b/khotkeys/kcontrol/actions_listview_widget.h @@ -1,11 +1,11 @@ /**************************************************************************** KHotKeys - + Copyright (C) 1999-2001 Lubos Lunak <[email protected]> Distributed under the terms of the GNU General Public License version 2. - + ****************************************************************************/ #ifndef _ACTIONS_LISTVIEW_WIDGET_H_ @@ -27,13 +27,13 @@ class Action_data_base; class Actions_listview_widget : public Actions_listview_widget_ui - { + { Q_OBJECT public: Actions_listview_widget( TQWidget* parent_P = NULL, const char* name_P = NULL ); Action_listview_item* current_action() const; void set_current_action( Action_listview_item* item ); - Action_data_base* current_action_data() const; + Action_data_base* current_action_data() const; void set_action_data( Action_data_base* data_P, bool recent_action_P = false ); void action_name_changed( const TQString& name_P ); void clear(); @@ -54,7 +54,7 @@ class Actions_listview_widget }; class Actions_listview - : public KHListView + : public KHListView { Q_OBJECT public: @@ -78,7 +78,7 @@ class Action_listview_item Action_data_base* data_P ); protected: Action_data_base* _data; // CHECKME doesn't own !!! - }; + }; //*************************************************************************** // Inline @@ -113,7 +113,7 @@ Actions_listview_widget* Actions_listview::widget() { return _widget; } - + // Action_listview_item inline @@ -139,7 +139,7 @@ Action_data_base* Action_listview_item::data() const { return _data; } - + inline void Action_listview_item::set_data( Action_data_base* data_P ) { |