OSDN Git Service

import a bunch of important libraries and applications
[kde/kde-extraapps.git] / kmix / apps / KMixApp.h
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 <kuniqueapplication.h>
25
26 class KMixWindow;
27
28 class KMixApp : public KUniqueApplication
29 {
30 Q_OBJECT
31  public:
32     KMixApp();
33     ~KMixApp();
34     int newInstance ();
35
36     public slots:
37     //void quitExtended();  // For a hack on visibility()
38     static void keepVisibility(bool);
39 /*
40  signals:
41     void stopUpdatesOnVisibility();
42 */
43  private:
44     KMixWindow *m_kmix;
45     static bool _keepVisibility;
46 };
47
48 #endif