diff options
Diffstat (limited to 'src/tdedocker.h')
-rw-r--r-- | src/tdedocker.h | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/src/tdedocker.h b/src/tdedocker.h index 46d0e13..c445a36 100644 --- a/src/tdedocker.h +++ b/src/tdedocker.h @@ -1,6 +1,6 @@ /* * Copyright (C) 2004 Girish Ramakrishnan All Rights Reserved. - * + * * This is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or @@ -19,41 +19,34 @@ // $Id: tdedocker.h,v 1.11 2005/02/09 03:32:26 cs19713 Exp $ -#ifndef _KDOCKER_H -#define _KDOCKER_H +#ifndef _TDEDOCKER_H +#define _TDEDOCKER_H -#include <tqapplication.h> +#include <tdeapplication.h> #include <X11/Xlib.h> -#define KDOCKER_APP_VERSION "1.3" - class TrayLabelMgr; -class TDEDocker : public TQApplication +class TDEDocker : public TDEApplication { Q_OBJECT public: - TDEDocker(int& argc, char** argv); + TDEDocker(); TrayLabelMgr *trayLabelMgr(void) { return mTrayLabelMgr; } void dumpState(const TQString &file); - void printUsage(char optopt = 'h'); protected: bool x11EventFilter(XEvent * event); - void saveState(TQSessionManager &sm); private: - TQString saveSession(); - bool restoreSession(); void notifyPreviousInstance(Window prevInstance); - void printVersion(); - Window mSelectionOwner; TrayLabelMgr *mTrayLabelMgr; + bool firstSaveState; }; -#endif // _KDOCKER_H +#endif // _TDEDOCKER_H |