You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
374 B
27 lines
374 B
15 years ago
|
#ifndef KMixApp_h
|
||
|
#define KMixApp_h
|
||
|
|
||
|
#include <kuniqueapplication.h>
|
||
|
|
||
|
class KMixWindow;
|
||
|
|
||
|
class KMixApp : public KUniqueApplication
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
KMixApp();
|
||
|
~KMixApp();
|
||
|
int newInstance ();
|
||
|
|
||
|
public slots:
|
||
|
void quitExtended(); // For a hack on visibility()
|
||
|
|
||
|
signals:
|
||
|
void stopUpdatesOnVisibility();
|
||
|
|
||
|
private:
|
||
|
KMixWindow *m_kmix;
|
||
|
};
|
||
|
|
||
|
#endif
|