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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/**************************************************************************
main.cpp - The main function for KPager
Copyright (C) 1998-2000 Antonio Larrosa Jimenez
This program 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
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Send comments and bug fixes to larrosa@kde.org
***************************************************************************/
#include <kuniqueapplication.h>
#include <tdelocale.h>
#include <tdecmdlineargs.h>
#include <tdeaboutdata.h>
#include <tqcolor.h>
#include <kdebug.h>
#include <stdlib.h>
#include <tqsessionmanager.h>
#include "kpager.h"
static TDECmdLineOptions pagerOpts[] =
{
{ "hidden", I18N_NOOP("Create pager but keep the window hidden"), 0 },
TDECmdLineLastOption
};
bool closed_by_sm = false;
class KPagerApplication : public KUniqueApplication
{
public:
KPagerApplication() : KUniqueApplication() {}
void commitData(TQSessionManager& sm) {
if (mainWidget()->isHidden()) {
sm.setRestartHint( TQSessionManager::RestartNever );
return;
}
closed_by_sm = true;
KUniqueApplication::commitData( sm );
closed_by_sm = false;
}
int newInstance() {
mainWidget()->show();
return 0;
}
};
int main(int argc, char **argv)
{
TDEAboutData *aboutdata = new TDEAboutData("kpager", "KPager", "1.5",
I18N_NOOP("Desktop Overview"), TDEAboutData::License_GPL,
"(C) 1998-2002, Antonio Larrosa Jimenez","");
aboutdata->addAuthor("Antonio Larrosa Jimenez",
I18N_NOOP("Original Developer/Maintainer"),"larrosa@kde.org",
"http://developer.kde.org/~larrosa/index.html");
aboutdata->addAuthor("Matthias Elter",
I18N_NOOP("Developer"),"elter@kde.org", "");
aboutdata->addAuthor("Matthias Ettrich",
I18N_NOOP("Developer"),"ettrich@kde.org", "");
TDECmdLineArgs::init(argc, argv, aboutdata);
TDECmdLineArgs::addCmdLineOptions(pagerOpts);
KUniqueApplication::addCmdLineOptions();
if (!KUniqueApplication::start())
{
kdError() << "kpager is already running!" << endl;
return 0;
}
TDEApplication * app = new KPagerApplication;
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
KPagerMainWindow *kpager = new KPagerMainWindow(0,"KPager");
kpager->setPlainCaption( i18n("Desktop Pager") );
app->setMainWidget(kpager);
if (!args->isSet("hidden")) kpager->show();
else kpager->hide();
int ret = app->exec();
delete app;
return ret;
}
|