diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
commit | 5f5ee2367157176ed223b86343eb0a9e4022e020 (patch) | |
tree | 6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /kregexpeditor/KMultiFormListBox/indexWindow.h | |
parent | 4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff) | |
download | tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kregexpeditor/KMultiFormListBox/indexWindow.h')
-rw-r--r-- | kregexpeditor/KMultiFormListBox/indexWindow.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kregexpeditor/KMultiFormListBox/indexWindow.h b/kregexpeditor/KMultiFormListBox/indexWindow.h index 3597960..ab20e73 100644 --- a/kregexpeditor/KMultiFormListBox/indexWindow.h +++ b/kregexpeditor/KMultiFormListBox/indexWindow.h @@ -18,7 +18,7 @@ #ifndef __indexWindow #define __indexWindow -#include <qlistbox.h> +#include <tqlistbox.h> /** Post a toplevel listbox synchronously. @@ -29,12 +29,12 @@ This widget takes care of posting this listbox, and ensuring that the user can not do anything else before he has chosen an element. - This widget resembles the behavior of @ref QPopupMenu, the difference - is, however, that the QPopupMenu can not handle that the elements in the + This widget resembles the behavior of @ref TQPopupMenu, the difference + is, however, that the TQPopupMenu can not handle that the elements in the menu exceed the size of the screen. This widget can. - In the future this widget may be replaced with the QPopupMenu if the - QPopupMenu can handle this situation. But for now - it works! + In the future this widget may be replaced with the TQPopupMenu if the + TQPopupMenu can handle this situation. But for now - it works! @internal **/ @@ -49,7 +49,7 @@ public: This method inserts an element into the listbox which is shown when the @ref exec method is invoked. **/ - void insertItem(QString txt); + void insertItem(TQString txt); /** This function shows the index window with the elements inserted using @@ -63,17 +63,17 @@ public: @return The index of the element chosen, or -1 if no element has been chosen. **/ - int exec(const QPoint &start, int width); + int exec(const TQPoint &start, int width); protected: void finish(int retVal); - virtual void hideEvent(QHideEvent *h); + virtual void hideEvent(TQHideEvent *h); protected slots: void lbSelected(int); private: - QListBox *lb; + TQListBox *lb; bool lbFinish; int itemSelected; |