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.
tdemultimedia/kmix/KMixApp.h

30 lines
428 B

#ifndef KMixApp_h
#define KMixApp_h
#include <kuniqueapplication.h>
#include <tqtimer.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;
TQTimer *m_updateMixersTimer;
};
#endif