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.
tdebase/ksmserver/client.h

61 lines
1.4 KiB

/*****************************************************************
ksmserver - the KDE session management server
Copyright (C) 2000 Matthias Ettrich <ettrich@kde.org>
******************************************************************/
#ifndef CLIENT_H
#define CLIENT_H
// needed to avoid clash with INT8 defined in X11/Xmd.h on solaris
#define QT_CLEAN_NAMESPACE 1
#include <tqobject.h>
#include <tqstring.h>
#include <tqstringlist.h>
#include <tqsocketnotifier.h>
#include <tqptrlist.h>
#include <tqvaluelist.h>
#include <tqcstring.h>
#include <tqdict.h>
#include <tqptrqueue.h>
#include <tqptrdict.h>
#include <kapplication.h>
#include <tqtimer.h>
#include <dcopobject.h>
#include "server2.h"
class KSMListener;
class KSMConnection;
class KSMClient
{
public:
KSMClient( SmsConn );
~KSMClient();
void registerClient( const char* previousId = 0 );
SmsConn connection() const { return smsConn; }
void resetState();
uint saveYourselfDone : 1;
uint pendingInteraction : 1;
uint waitForPhase2 : 1;
uint wasPhase2 : 1;
TQPtrList<SmProp> properties;
SmProp* property( const char* name ) const;
TQString program() const;
TQStringList restartCommand() const;
TQStringList discardCommand() const;
int restartStyleHint() const;
TQString userId() const;
const char* clientId() { return id ? id : ""; }
private:
const char* id;
SmsConn smsConn;
};
#endif