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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
/*******************************************************************
KNotes -- Notes for the KDE project
Copyright (c) 1997-2006, The KNotes Developers
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.
*******************************************************************/
#include <tdeuniqueapplication.h>
#include <tdecmdlineargs.h>
#include <tdeaboutdata.h>
#include <tdelocale.h>
#include <kxerrorhandler.h>
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include "knotesapp.h"
#include "version.h"
#include "main.h"
void remove_sm_from_client_leader()
{
Atom type;
int format, status;
unsigned long nitems = 0;
unsigned long extra = 0;
unsigned char *data = 0;
Atom atoms[ 2 ];
char *atom_names[ 2 ] = { (char*)"WM_CLIENT_LEADER", (char*)"SM_CLIENT_ID" };
XInternAtoms( tqt_xdisplay(), atom_names, 2, False, atoms );
TQWidget w;
KXErrorHandler handler; // ignore X errors
status = XGetWindowProperty( tqt_xdisplay(), w.winId(), atoms[ 0 ], 0, 10000,
FALSE, XA_WINDOW, &type, &format,
&nitems, &extra, &data );
if (status == Success && !handler.error( false ))
{
if (data && nitems > 0)
{
Window leader = *((Window*) data);
XDeleteProperty( tqt_xdisplay(), leader, atoms[ 1 ] );
}
XFree(data);
}
}
Application::Application()
: TDEUniqueApplication(), mMainWindow( 0 )
{
}
Application::~Application()
{
delete mMainWindow;
}
int Application::newInstance()
{
if ( !mMainWindow )
{
mMainWindow = new KNotesApp();
mMainWindow->show();
}
else
mMainWindow->newNote();
return TDEUniqueApplication::newInstance();
}
int main( int argc, char* argv[] )
{
TQString version = TQString::number( KNOTES_VERSION );
TDEAboutData aboutData(
"knotes",
I18N_NOOP("KNotes"),
version.latin1(),
I18N_NOOP( "TDE Notes" ),
TDEAboutData::License_GPL,
I18N_NOOP("(c) 1997-2006, The KNotes Developers")
);
aboutData.addAuthor("Michael Brade", I18N_NOOP("Maintainer"), "[email protected]");
aboutData.addAuthor("Bernd Johannes Wuebben", I18N_NOOP("Original KNotes Author"), "[email protected]");
aboutData.addAuthor("Wynn Wilkes", I18N_NOOP("Ported KNotes to KDE 2"), "[email protected]");
aboutData.addAuthor("Daniel Martin", I18N_NOOP("Network Interface"), "[email protected]");
aboutData.addAuthor("Bo Thorsen", I18N_NOOP("Started KDE Resource Framework Integration"), "[email protected]");
aboutData.addCredit("Bera Debajyoti", I18N_NOOP("Idea and initial code for the new look&feel"),
"[email protected]");
aboutData.addCredit("Matthias Ettrich", 0, "[email protected]");
aboutData.addCredit("David Faure", 0, "[email protected]");
aboutData.addCredit("Matthias Kiefer", 0, "[email protected]");
aboutData.addCredit("Luboš Luňák", 0, "[email protected]");
aboutData.addCredit("Laurent Montel", 0, "[email protected]");
aboutData.addCredit("Dirk A. Mueller", 0, "[email protected]");
aboutData.addCredit("Carsten Pfeiffer", 0, "[email protected]");
aboutData.addCredit("Harri Porten", 0, "[email protected]");
aboutData.addCredit("Espen Sand", 0, "[email protected]");
TDECmdLineArgs::init( argc, argv, &aboutData );
TDEUniqueApplication::addCmdLineOptions();
Application app;
app.connect( &app, TQ_SIGNAL( lastWindowClosed() ), &app, TQ_SLOT( quit() ) );
remove_sm_from_client_leader();
int rval = app.exec();
return rval;
}
|