blob: a18a121d617e8d20ca30289a6df4ecefdead58bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/*****************************************************************
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 TDEAction;
#include "timed.h"
#include <tdeapplication.h>
#include <kpixmapio.h>
// The startup-in-progress dialog
class KSMStartupIPDlg : public KSMModalDialog
{
Q_OBJECT
public:
static TQWidget* showStartupIP();
protected:
~KSMStartupIPDlg();
private:
KSMStartupIPDlg( TQWidget* parent );
};
#endif
|