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
|
/***************************************************************************
* Copyright (C) 2004-2009 by Thomas Fischer *
* fischer@unix-ag.uni-kl.de *
* *
* 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., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
// #define UNIQUEAPP 1
#include <qframe.h>
#include <qpixmap.h>
#ifdef UNIQUEAPP
#include <kuniqueapplication.h>
#else // UNIQUEAPP
#include <kapplication.h>
#endif // UNIQUEAPP
#include <kmessagebox.h>
#include <kaboutdata.h>
#include <kcmdlineargs.h>
#include <klocale.h>
#include <kglobal.h>
#include <kstandarddirs.h>
#include <kdebug.h>
#include "kbibtexshell.h"
static const char description[] =
I18N_NOOP( "A BibTeX editor for KDE" );
static const char version[] = "0.2.3.91";
static KCmdLineOptions options[] =
{
{ "+[URL]", I18N_NOOP( "Document to open." ), 0
},
KCmdLineLastOption
};
#ifdef UNIQUEAPP
class KBibTeXApplication: public KUniqueApplication
#else // UNIQUEAPP
class KBibTeXApplication: public KApplication
#endif // UNIQUEAPP
{
public:
#ifdef UNIQUEAPP
KBibTeXApplication() : KUniqueApplication()
{
// nothing
}
int newInstance()
{
#else // UNIQUEAPP
KBibTeXApplication() : KApplication()
{
#endif // UNIQUEAPP
// see if we are starting with session management
if ( isRestored() )
{
RESTORE( KBibTeXShell );
}
else
{
// no session.. just start up normally
KCmdLineArgs * args = KCmdLineArgs::parsedArgs();
if ( args->count() == 0 )
{
KBibTeXShell * shell = new KBibTeXShell();
shell->show();
}
else
{
for ( int i = 0 ; i < args->count(); i++ )
{
KBibTeXShell *shell = new KBibTeXShell();
if ( shell->openURL( args->url( i ) ) )
shell->show();
else
{
kdDebug() << "Couldn't open file " << args->url( i ).path() << endl;
KMessageBox::error( NULL, i18n( "Could not open file '%1'." ).arg( args->url( i ).path() ) );
}
}
}
args->clear();
}
#ifdef UNIQUEAPP
return 0;
#endif // UNIQUEAPP
}
};
int main( int argc, char **argv )
{
KAboutData about( "kbibtex", I18N_NOOP( "KBibTeX" ), version, description,
KAboutData::License_GPL, "(C) 2004-2009 Thomas Fischer", 0, "http://www.unix-ag.uni-kl.de/~fischer/kbibtex/", "fischer@unix-ag.uni-kl.de" );
about.addAuthor( "Thomas Fischer", 0, "fischer@unix-ag.uni-kl.de" );
about.setTranslator( I18N_NOOP( "NAME OF TRANSLATORS" ), I18N_NOOP( "EMAIL OF TRANSLATORS" ) );
KCmdLineArgs::init( argc, argv, &about );
KCmdLineArgs::addCmdLineOptions( options );
#ifdef UNIQUEAPP
if ( !KUniqueApplication::start() )
{
kdDebug() << "Reusing existing KBibTeX instance" << endl;
return 0;
}
#endif // UNIQUEAPP
KBibTeXApplication app;
return app.exec();
}
|