/[svn]/qsampler/trunk/src/qsamplerOptions.h
ViewVC logotype

Contents of /qsampler/trunk/src/qsamplerOptions.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3067 - (show annotations) (download) (as text)
Mon Jan 2 15:31:47 2017 UTC (7 years, 3 months ago) by capela
File MIME type: text/x-c++hdr
File size: 3624 byte(s)
- Got rid of some top-level widget/window size shrinking on bootstrap time.
1 // qsamplerOptions.h
2 //
3 /****************************************************************************
4 Copyright (C) 2004-2017, rncbc aka Rui Nuno Capela. All rights reserved.
5 Copyright (C) 2007,2008,2015 Christian Schoenebeck
6
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License
9 as published by the Free Software Foundation; either version 2
10 of the License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License along
18 with this program; if not, write to the Free Software Foundation, Inc.,
19 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21 *****************************************************************************/
22
23 #ifndef __qsamplerOptions_h
24 #define __qsamplerOptions_h
25
26 #include <QSettings>
27 #include <QStringList>
28
29
30 class QWidget;
31 class QComboBox;
32
33 namespace QSampler {
34
35 //-------------------------------------------------------------------------
36 // QSampler::Options - Prototype settings class.
37 //
38
39 class Options
40 {
41 public:
42
43 // Constructor.
44 Options();
45 // Default destructor.
46 ~Options();
47
48 // The settings object accessor.
49 QSettings& settings();
50
51 // explicit I/O methods.
52 void loadOptions();
53 void saveOptions();
54
55 // Command line arguments parser.
56 bool parse_args(const QStringList& args);
57 // Command line usage helper.
58 void print_usage(const QString& arg0);
59
60 // Startup supplied session file.
61 QString sSessionFile;
62
63 // Server options...
64 QString sServerHost;
65 int iServerPort;
66 int iServerTimeout;
67 bool bServerStart;
68 QString sServerCmdLine;
69 int iStartDelay;
70
71 // Logging options...
72 bool bMessagesLog;
73 QString sMessagesLogPath;
74
75 // Display options...
76 QString sDisplayFont;
77 bool bDisplayEffect;
78 bool bAutoRefresh;
79 int iAutoRefreshTime;
80 int iMaxVolume;
81 QString sMessagesFont;
82 bool bMessagesLimit;
83 int iMessagesLimitLines;
84 bool bConfirmRemove;
85 bool bConfirmReset;
86 bool bConfirmRestart;
87 bool bConfirmError;
88 bool bKeepOnTop;
89 bool bStdoutCapture;
90 bool bCompletePath;
91 bool bInstrumentNames;
92 int iBaseFontSize;
93
94 // View options...
95 bool bMenubar;
96 bool bToolbar;
97 bool bStatusbar;
98 bool bAutoArrange;
99
100 // Default options...
101 QString sSessionDir;
102 QString sInstrumentDir;
103 QString sEngineName;
104 QString sAudioDriver;
105 QString sMidiDriver;
106 int iMidiMap;
107 int iMidiBank;
108 int iMidiProg;
109 int iVolume;
110 int iLoadMode;
111
112 // Recent file list.
113 int iMaxRecentFiles;
114 QStringList recentFiles;
115
116 // Widget geometry persistence helper prototypes.
117 void saveWidgetGeometry(QWidget *pWidget, bool bVisible = false);
118 void loadWidgetGeometry(QWidget *pWidget, bool bVisible = false);
119
120 // Combo box history persistence helper prototypes.
121 void loadComboBoxHistory(QComboBox *pComboBox, int iLimit = 8);
122 void saveComboBoxHistory(QComboBox *pComboBox, int iLimit = 8);
123
124 int getMaxVoices();
125 int getEffectiveMaxVoices();
126 void setMaxVoices(int iMaxVoices);
127
128 int getMaxStreams();
129 int getEffectiveMaxStreams();
130 void setMaxStreams(int iMaxStreams);
131
132 void sendFineTuningSettings();
133
134 private:
135
136 // Settings member variables.
137 QSettings m_settings;
138
139 // Tuning
140 int iMaxVoices;
141 int iMaxStreams;
142 };
143
144 } // namespace QSampler
145
146
147 #endif // __qsamplerOptions_h
148
149
150 // end of qsamplerOptions.h
151

  ViewVC Help
Powered by ViewVC