Mercurial > hg > svgui
comparison widgets/PluginPathConfigurator.h @ 1286:e327bbf4bf57 plugin-path-config
Up/down
author | Chris Cannam |
---|---|
date | Tue, 15 May 2018 11:18:07 +0100 |
parents | abd52bd8d435 |
children | 2dd7f764c3a6 |
comparison
equal
deleted
inserted
replaced
1285:abd52bd8d435 | 1286:e327bbf4bf57 |
---|---|
16 #define SV_PLUGIN_PATH_CONFIGURATOR_H | 16 #define SV_PLUGIN_PATH_CONFIGURATOR_H |
17 | 17 |
18 #include <QFrame> | 18 #include <QFrame> |
19 #include <QGridLayout> | 19 #include <QGridLayout> |
20 #include <QStringList> | 20 #include <QStringList> |
21 | |
22 class QLabel; | |
23 class QWidget; | |
21 | 24 |
22 class PluginPathConfigurator : public QFrame | 25 class PluginPathConfigurator : public QFrame |
23 { | 26 { |
24 Q_OBJECT | 27 Q_OBJECT |
25 | 28 |
41 private: | 44 private: |
42 QGridLayout *m_layout; | 45 QGridLayout *m_layout; |
43 | 46 |
44 QStringList m_path; | 47 QStringList m_path; |
45 QString m_var; | 48 QString m_var; |
49 | |
50 QWidget *m_innerFrame; | |
51 std::vector<QLabel *> m_labels; | |
46 | 52 |
47 void populate(); | 53 void populate(); |
48 | |
49 }; | 54 }; |
50 | 55 |
51 #endif | 56 #endif |
52 | 57 |
53 | 58 |