diff options
Diffstat (limited to 'khotkeys/shared/khlistbox.h')
-rw-r--r-- | khotkeys/shared/khlistbox.h | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/khotkeys/shared/khlistbox.h b/khotkeys/shared/khlistbox.h new file mode 100644 index 000000000..95bd32963 --- /dev/null +++ b/khotkeys/shared/khlistbox.h @@ -0,0 +1,64 @@ +/**************************************************************************** + + KHotKeys + + Copyright (C) 1999-2002 Lubos Lunak <l.lunak@kde.org> + + Distributed under the terms of the GNU General Public License version 2. + +****************************************************************************/ + +#ifndef _KHLISTBOX_H_ +#define _KHLISTBOX_H_ + +#include <qtimer.h> + +#include <klistbox.h> + +namespace KHotKeys +{ + +class KHListBox + : public QListBox + { + Q_OBJECT + Q_PROPERTY( bool forceSelect READ forceSelect WRITE setForceSelect ) + public: + KHListBox( QWidget* parent_P, const char* name_P = NULL ); + virtual void clear(); + virtual void insertItem( QListBoxItem* item_P ); + bool forceSelect() const; + void setForceSelect( bool force_P ); + signals: + void current_changed( QListBoxItem* item_P ); + private slots: + void slot_selection_changed( QListBoxItem* item_P ); + void slot_selection_changed(); + void slot_current_changed( QListBoxItem* item_P ); + void slot_insert_select(); + private: + QListBoxItem* saved_current_item; + bool in_clear; + bool force_select; + QTimer insert_select_timer; + }; + +//*************************************************************************** +// Inline +//*************************************************************************** + +inline +void KHListBox::setForceSelect( bool force_P ) + { + force_select = force_P; + } + +inline +bool KHListBox::forceSelect() const + { + return force_select; + } + +} // namespace KHotKeys + +#endif |