diff options
author | Michele Calgaro <[email protected]> | 2022-08-11 18:01:06 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2022-08-12 17:39:12 +0900 |
commit | 12007bb689082f356835ae6ad4412ee414230e83 (patch) | |
tree | 0c0a1cc4c1e7244cce7fa75ad7fcea4dbccdc25a /khotkeys/kcontrol/actions_listview_widget.h | |
parent | 371ad533a3d4bf755ea1ccf50f8821261428d059 (diff) | |
download | tdebase-12007bb689082f356835ae6ad4412ee414230e83.tar.gz tdebase-12007bb689082f356835ae6ad4412ee414230e83.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]>
(cherry picked from commit 5e4ca4df9bb34e10a897e32e7e0ca8645b97f293)
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 ) { |