summaryrefslogtreecommitdiffstats
path: root/quanta/src/main.cpp
blob: fda7d0dc226178fea5ef3edc35ab2198b3849b3d (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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/***************************************************************************
                          main.cpp  -  description
                             -------------------
    begin                : ���� 9 13:29:57 EEST 2000
    copyright            : (C) 2000 by Dmitry Poplavsky & Alexander Yakovlev & Eric Laffoon <[email protected],[email protected],[email protected]>
                           (C) 2001-2002 Andras Mantia <[email protected]>
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/

#include <stdlib.h>

// kde includes
#include <klocale.h>
#include <kaboutdata.h>
#include <kiconloader.h>
#include <ksimpleconfig.h>
#include <kdebug.h>
#include <kcmdlineargs.h>
#include <dcopclient.h>
#include <dcopref.h>

// qt includes
#include <tqpixmap.h>
#include <tqnetwork.h>
#include <tqdom.h>
#include <tqfile.h>
#include <tqfileinfo.h>

// app includes
#include "kqapp.h"
#include "quanta.h"

static const char *description =
  I18N_NOOP("Quanta Plus Web Development Environment");
// INSERT A DESCRIPTION FOR YOUR APPLICATION HERE

static const char *othertext =
  I18N_NOOP("Our goal is to be nothing less than the best possible tool for\n \
working with tagging and scripting languages.\
\n\nQuanta Plus is not in any way affiliated with any commercial\n \
versions of Quanta. \
\n\nWe hope you enjoy Quanta Plus.\n\n");

static const char *developers = I18N_NOOP("The Quanta+ developers");

static KCmdLineOptions options[] =
{
  { "+[File]", I18N_NOOP("File to open"), 0 },
  { "unique", I18N_NOOP("Whether we start as a one-instance application"), 0 },
  { "nologo", I18N_NOOP("Do not show the nice logo during startup"), 0 },
  { "resettqlayout", I18N_NOOP("Reset the tqlayout of the user interface to the default"), 0},
  KCmdLineLastOption
  // INSERT YOUR COMMANDLINE OPTIONS HERE
};

int main(int argc, char *argv[])
{
  char *copyright = new char[200]; //this should be enough
  strcpy(copyright, "(C) 2000-2006 - ");
  strcat(copyright, developers);
  KAboutData
    aboutData( QUANTA_PACKAGE, I18N_NOOP("Quanta"),
    QUANTA_VERSION, description, KAboutData::License_GPL_V2,    
    copyright,
    othertext,
    "http://kdewebdev.org"
    );

  //aboutData.otherText(&othertext);

   aboutData.addAuthor("Eric Laffoon",I18N_NOOP("Project Lead - public liaison"), "[email protected]");
   aboutData.addAuthor("Andras Mantia",I18N_NOOP("Program Lead - bug squisher"), "[email protected]");
   aboutData.addAuthor("Dmitry Poplavsky",I18N_NOOP("Inactive - left for commercial version"), "[email protected]");
   aboutData.addAuthor("Alexander Yakovlev",I18N_NOOP("Inactive - left for commercial version"), "[email protected]");

   aboutData.addCredit("Michal Rudolf",
    I18N_NOOP("Various fixes, table editor maintainer"),
    "[email protected]");

   aboutData.addCredit("Linus McCabe",
    I18N_NOOP("Debugger interface and integration of the Gubed PHP debugger"),
    "[email protected]");

   aboutData.addCredit("Thiago Silva",
    I18N_NOOP("Debugger interface"),
    "[email protected]");

   aboutData.addCredit("Chris Hornbaker",
    I18N_NOOP("XML - compliance, tools & DTEPs"),
    "[email protected]");

   aboutData.addCredit("Dave Reddish",
    I18N_NOOP("Template contributions"),
    "[email protected]");

   aboutData.addCredit("Doug Bezona",
    I18N_NOOP("ColdFusion support"),
    "[email protected]");

   aboutData.addCredit("Mathieu Kooiman",
    I18N_NOOP("Initial debugger work - advanced test"),
    "[email protected]");

   aboutData.addCredit("Richard Moore",
    I18N_NOOP("Coding and tag dialog definition documentation and more"),
    "[email protected]");

  aboutData.addCredit("Marc Britton",
    I18N_NOOP("Original plugin system, various fixes"),
    "[email protected]");

  aboutData.addCredit("Robert Nickel",
    I18N_NOOP("Original documentation, many cool parsing scripts to automate \ndevelopment"),
    "[email protected]");

  aboutData.addCredit("Jason P. Hanley",
    I18N_NOOP("Various fixes, foundational code for the old DTD parsing and other \nDTD related work"),
    "[email protected]");

  aboutData.addCredit("George Vilches",
    I18N_NOOP("Tree based upload dialog"),
    "[email protected]");

  aboutData.addCredit("Ted Pibil",
    I18N_NOOP("Addition and maintenance of DTDs"),
    "[email protected]");

  aboutData.addCredit("Nicolas Deschildre",
    I18N_NOOP("Visual Page Layout part, new undo/redo system"),
    "[email protected]");

  aboutData.addCredit("Paulo Moura Guedes",
    I18N_NOOP("VPL View"),
    "[email protected]");
  
  aboutData.addCredit("Luciano Gulmini",
    I18N_NOOP("Frame wizard, CSS wizard"),
    "[email protected]");

  aboutData.addCredit("Emiliano Gulmini",
    I18N_NOOP("Crash recovery"),
    "[email protected]");

  aboutData.addCredit("Jens Herden",
    I18N_NOOP("Improvements to the treeview code; code review and cleanup"),
    "[email protected]");

  aboutData.addCredit("Andrea Bergia",
    I18N_NOOP("Original CSS editor"),
    "[email protected]");

  aboutData.addCredit("Matthew Colton",
    I18N_NOOP("Cool splash screen for many version releases of Quanta"),
    "[email protected]");

  aboutData.addCredit("Claus Hindsgaul",
    I18N_NOOP("Danish translation"),
    "[email protected]");

  aboutData.addCredit("Dmitri Dmitrienko",
    I18N_NOOP("Part of a code for the old PHP4 Debugger"),
    "[email protected]");

  aboutData.addCredit("Keith Isdale",
    I18N_NOOP("XSLT tags"),
    "[email protected]");

  aboutData.addCredit("Lukas Masek",
    I18N_NOOP("Splash screen and icon for 3.2"),
    "[email protected]");

  KCmdLineArgs::init( argc, argv, &aboutData);
  KCmdLineArgs::addCmdLineOptions( options ); // Add our own options.

  // this defeats the purpose of KCmdLineArgs, but there is no other
  // way around, I'm afraid.
  const char *uniq = "--unique";
  bool isUnique = false;
  for ( int i = 1; i < argc; i++ ) {
    if ( strcmp(argv[i], uniq) == 0 ) {
      isUnique = true;
      KUniqueApplication::addCmdLineOptions(); // before calling parsedArgs!
      break;
    }
  }

  KApplication *app;
  KApplication::disableAutoDcopRegistration();

  if (isUnique) {
      KUniqueApplication::dcopClient()->registerAs("quanta-foo");
      if (KUniqueApplication::dcopClient()->isApplicationRegistered("quanta"))
      {
          KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
           for (int i = 0; i < args->count(); i++)
          {
              TQString s = args->url(i).url();
              DCOPRef("quanta", "WindowManagerIf").call("openFile(TQString, int, int)", s, 1, 1); // Activate it
          }
          DCOPRef("quanta", QUANTA_PACKAGE).call("newInstance()");
          exit(0);
      }
  app = new KQUniqueApplication;
  } else {
  app = new KQApplication;
  }

  return app->exec();
}