Mercurial > hg > classical
comparison widgets/TypingSelectWidget.h @ 39:94cdfacc4910
* some track id stuff, widget test stuff
author | Chris Cannam |
---|---|
date | Thu, 01 Apr 2010 14:26:51 +0100 |
parents | 8bed05455706 |
children | a42493a3baf8 |
comparison
equal
deleted
inserted
replaced
38:ac956912fcdf | 39:94cdfacc4910 |
---|---|
6 #include <QWidget> | 6 #include <QWidget> |
7 #include <QList> | 7 #include <QList> |
8 | 8 |
9 class QLineEdit; | 9 class QLineEdit; |
10 class QListWidget; | 10 class QListWidget; |
11 class QGridLayout; | |
12 class QFrame; | |
11 | 13 |
12 namespace ClassicalData | 14 namespace ClassicalData |
13 { | 15 { |
14 | 16 |
15 class Matcher; | 17 class Matcher; |
27 void textEdited(const QString &); | 29 void textEdited(const QString &); |
28 | 30 |
29 private: | 31 private: |
30 QList<Matcher *> m_matchers; | 32 QList<Matcher *> m_matchers; |
31 QLineEdit *m_editor; | 33 QLineEdit *m_editor; |
32 QListWidget *m_list; | 34 QFrame *m_list; |
35 QGridLayout *m_listLayout; | |
36 QList<QWidget *> m_listEntries; | |
33 }; | 37 }; |
34 | 38 |
35 } | 39 } |
36 | 40 |
37 #endif | 41 #endif |