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.
28 lines
386 B
28 lines
386 B
#ifndef KMixApp_h
|
|
#define KMixApp_h
|
|
|
|
#include <kuniqueapplication.h>
|
|
|
|
class KMixWindow;
|
|
|
|
class KMixApp : public KUniqueApplication
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
KMixApp();
|
|
~KMixApp();
|
|
int newInstance ();
|
|
|
|
public slots:
|
|
void quitExtended(); // For a hack on visibility()
|
|
|
|
signals:
|
|
void stopUpdatesOnVisibility();
|
|
|
|
private:
|
|
KMixWindow *m_kmix;
|
|
};
|
|
|
|
#endif
|