diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-09-12 20:26:03 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-09-12 20:26:03 +0000 |
commit | b971f9aae70373db39fb62a75c82f25e9252f6b3 (patch) | |
tree | ae35ba91c40e293d6ea6ed40978b4b81cddf5764 /ksmserver/startupdlg.h | |
parent | 9925fc58bcca4faf6f6a356ace24acdf19556560 (diff) | |
download | tdebase-b971f9aae70373db39fb62a75c82f25e9252f6b3.tar.gz tdebase-b971f9aae70373db39fb62a75c82f25e9252f6b3.zip |
Use new modal system nofitication dialog in kdebase smserver
Add fancy startup dialog to match the fancy shutdown dialog
This is only used if the themed splash screen is turned off
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1253056 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksmserver/startupdlg.h')
-rw-r--r-- | ksmserver/startupdlg.h | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/ksmserver/startupdlg.h b/ksmserver/startupdlg.h new file mode 100644 index 000000000..3b1fe7925 --- /dev/null +++ b/ksmserver/startupdlg.h @@ -0,0 +1,60 @@ +/***************************************************************** +ksmserver - the KDE session management server + +Copyright (C) 2000 Matthias Ettrich <ettrich@kde.org> +******************************************************************/ + +#ifndef STARTUPDLG_H +#define STARTUPDLG_H + +#include <tqpixmap.h> +#include <tqimage.h> +#include <tqdatetime.h> +#include <kdialog.h> +#include <kpushbutton.h> +#include <tqpushbutton.h> +#include <tqframe.h> +#include <kguiitem.h> +#include <tqtoolbutton.h> +#include <ksharedpixmap.h> + +class TQPushButton; +class TQVButtonGroup; +class TQPopupMenu; +class TQTimer; +class TQPainter; +class TQString; +class KAction; + +#include "timed.h" +#include <kapplication.h> +#include <kpixmapio.h> + +#include <config.h> + +#ifndef NO_QT3_DBUS_SUPPORT +/* We acknowledge the the dbus API is unstable */ +#define DBUS_API_SUBJECT_TO_CHANGE +#include <dbus/connection.h> +#endif // NO_QT3_DBUS_SUPPORT + +#ifdef COMPILE_HALBACKEND +#include <hal/libhal.h> +#endif + +// The startup-in-progress dialog +class KSMStartupIPDlg : public KSMModalDialog +{ + Q_OBJECT + +public: + static TQWidget* showStartupIP(); + +protected: + ~KSMStartupIPDlg(); + +private: + KSMStartupIPDlg( TQWidget* parent ); +}; + +#endif |