1 //-*-C++-*-
2 /*
3  * KMix -- KDE's full featured mini mixer
4  *
5  * Copyright Christian Esken <esken@kde.org>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 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 GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this program; if not, write to the Free
19  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20  */
21 #ifndef KMixApp_h
22 #define KMixApp_h
23 
24 #include <QMutex>
25 #include <QObject>
26 
27 class QCommandLineParser;
28 class KMixWindow;
29 
30 
31 class KMixApp : public QObject
32 {
33     Q_OBJECT
34 
35  public:
36     KMixApp();
37     virtual ~KMixApp();
38 
39     void parseOptions(const QCommandLineParser &parser);
40 
41 public slots:
42     void newInstance(const QStringList &arguments = QStringList(), const QString &workingDirectory = QString());
43 
44 private:
45     bool restoreSessionIfApplicable(bool hasArgKeepvisibility, bool reset);
46     void createWindowOnce(bool hasArgKeepvisibility, bool reset);
47 
48     KMixWindow *m_kmix;
49     QMutex creationLock;
50     bool m_hasArgKeepvisibility;
51     bool m_hasArgReset;
52 };
53 
54 #endif
55