Mercurial > hg > svgui
comparison widgets/PluginPathConfigurator.h @ 1285:abd52bd8d435 plugin-path-config
Toward allowing the user to see (at least, and maybe change) the plugin path
author | Chris Cannam |
---|---|
date | Fri, 11 May 2018 16:59:14 +0100 |
parents | |
children | e327bbf4bf57 |
comparison
equal
deleted
inserted
replaced
1284:51e6125627fa | 1285:abd52bd8d435 |
---|---|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ | |
2 | |
3 /* | |
4 Sonic Visualiser | |
5 An audio file viewer and annotation editor. | |
6 Centre for Digital Music, Queen Mary, University of London. | |
7 | |
8 This program is free software; you can redistribute it and/or | |
9 modify it under the terms of the GNU General Public License as | |
10 published by the Free Software Foundation; either version 2 of the | |
11 License, or (at your option) any later version. See the file | |
12 COPYING included with this distribution for more information. | |
13 */ | |
14 | |
15 #ifndef SV_PLUGIN_PATH_CONFIGURATOR_H | |
16 #define SV_PLUGIN_PATH_CONFIGURATOR_H | |
17 | |
18 #include <QFrame> | |
19 #include <QGridLayout> | |
20 #include <QStringList> | |
21 | |
22 class PluginPathConfigurator : public QFrame | |
23 { | |
24 Q_OBJECT | |
25 | |
26 public: | |
27 PluginPathConfigurator(QWidget *parent = 0); | |
28 ~PluginPathConfigurator(); | |
29 | |
30 void setPath(QStringList directories, QString envVariable); | |
31 QStringList getPath() const; | |
32 | |
33 signals: | |
34 void pathChanged(QStringList); | |
35 | |
36 private slots: | |
37 void upClicked(); | |
38 void downClicked(); | |
39 void deleteClicked(); | |
40 | |
41 private: | |
42 QGridLayout *m_layout; | |
43 | |
44 QStringList m_path; | |
45 QString m_var; | |
46 | |
47 void populate(); | |
48 | |
49 }; | |
50 | |
51 #endif | |
52 | |
53 |