Mercurial > hg > svgui
comparison widgets/TransformFinder.h @ 417:fbf9f53cf979
* Annoyingly not-really-working twist on things
author | Chris Cannam |
---|---|
date | Tue, 23 Sep 2008 16:42:43 +0000 |
parents | f4487328320d |
children | b0c8e0def62e |
comparison
equal
deleted
inserted
replaced
416:f4487328320d | 417:fbf9f53cf979 |
---|---|
16 #ifndef _TRANSFORM_FINDER_H_ | 16 #ifndef _TRANSFORM_FINDER_H_ |
17 #define _TRANSFORM_FINDER_H_ | 17 #define _TRANSFORM_FINDER_H_ |
18 | 18 |
19 #include <QDialog> | 19 #include <QDialog> |
20 | 20 |
21 #include <vector> | |
22 | |
21 #include "transform/Transform.h" | 23 #include "transform/Transform.h" |
22 | 24 |
23 class QVBoxLayout; | 25 class QVBoxLayout; |
24 class QScrollArea; | 26 class QScrollArea; |
27 class QLabel; | |
28 class QWidget; | |
25 | 29 |
26 class TransformFinder : public QDialog | 30 class TransformFinder : public QDialog |
27 { | 31 { |
28 Q_OBJECT | 32 Q_OBJECT |
29 | 33 |
36 protected slots: | 40 protected slots: |
37 void searchTextChanged(const QString &); | 41 void searchTextChanged(const QString &); |
38 | 42 |
39 protected: | 43 protected: |
40 QScrollArea *m_resultsScroll; | 44 QScrollArea *m_resultsScroll; |
45 QWidget *m_resultsFrame; | |
41 QVBoxLayout *m_resultsLayout; | 46 QVBoxLayout *m_resultsLayout; |
47 std::vector<QLabel *> m_labels; | |
42 }; | 48 }; |
43 | 49 |
44 #endif | 50 #endif |
45 | 51 |