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
637 B
28 lines
637 B
#ifndef KSMSERVER_INTERFACE_H
|
|
#define KSMSERVER_INTERFACE_H
|
|
|
|
#include <dcopobject.h>
|
|
#include <qstringlist.h>
|
|
|
|
class KSMServerInterface : virtual public DCOPObject
|
|
{
|
|
K_DCOP
|
|
|
|
k_dcop:
|
|
virtual void logout(int, int, int ) = 0;
|
|
virtual void restoreSessionInternal() = 0;
|
|
virtual void restoreSessionDoneInternal() = 0;
|
|
virtual QStringList sessionList() = 0;
|
|
|
|
virtual QString currentSession() = 0;
|
|
virtual void saveCurrentSession() = 0;
|
|
virtual void saveCurrentSessionAs( QString ) = 0;
|
|
|
|
virtual void autoStart2() = 0;
|
|
|
|
virtual void suspendStartup( QCString ) = 0;
|
|
virtual void resumeStartup( QCString ) = 0;
|
|
};
|
|
|
|
#endif
|