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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1738 - (show annotations) (download) (as text)
Wed May 14 15:24:22 2008 UTC (15 years, 10 months ago) by capela
File MIME type: text/x-c++hdr
File size: 3132 byte(s)
* Messages file logging makes its first long overdue appearance,
  with user configurable settings in View/Options.../Server/Logging.

1 // qsamplerOptions.h
2 //
3 /****************************************************************************
4 Copyright (C) 2004-2008, rncbc aka Rui Nuno Capela. All rights reserved.
5 Copyright (C) 2007, 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 // Command line arguments parser.
52 bool parse_args(int argc, char **argv);
53 // Command line usage helper.
54 void print_usage(const char *arg0);
55
56 // Startup supplied session file.
57 QString sSessionFile;
58
59 // Server options...
60 QString sServerHost;
61 int iServerPort;
62 int iServerTimeout;
63 bool bServerStart;
64 QString sServerCmdLine;
65 int iStartDelay;
66
67 // Logging options...
68 bool bMessagesLog;
69 QString sMessagesLogPath;
70
71 // Display options...
72 QString sDisplayFont;
73 bool bDisplayEffect;
74 bool bAutoRefresh;
75 int iAutoRefreshTime;
76 int iMaxVolume;
77 QString sMessagesFont;
78 bool bMessagesLimit;
79 int iMessagesLimitLines;
80 bool bConfirmRemove;
81 bool bKeepOnTop;
82 bool bStdoutCapture;
83 bool bCompletePath;
84 bool bInstrumentNames;
85
86 // View options...
87 bool bMenubar;
88 bool bToolbar;
89 bool bStatusbar;
90 bool bAutoArrange;
91
92 // Default options...
93 QString sSessionDir;
94 QString sInstrumentDir;
95 QString sEngineName;
96 QString sAudioDriver;
97 QString sMidiDriver;
98 int iMidiMap;
99 int iMidiBank;
100 int iMidiProg;
101 int iVolume;
102 int iLoadMode;
103
104 // Recent file list.
105 int iMaxRecentFiles;
106 QStringList recentFiles;
107
108 // Widget geometry persistence helper prototypes.
109 void saveWidgetGeometry(QWidget *pWidget);
110 void loadWidgetGeometry(QWidget *pWidget);
111
112 // Combo box history persistence helper prototypes.
113 void loadComboBoxHistory(QComboBox *pComboBox, int iLimit = 8);
114 void saveComboBoxHistory(QComboBox *pComboBox, int iLimit = 8);
115
116 private:
117
118 // Settings member variables.
119 QSettings m_settings;
120 };
121
122 } // namespace QSampler
123
124
125 #endif // __qsamplerOptions_h
126
127
128 // end of qsamplerOptions.h

  ViewVC Help
Powered by ViewVC