You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.1 KiB
104 lines
3.1 KiB
/***************************************************************************
|
|
copyright : (C) 1997-2000 by Peter Putzer
|
|
email : putzer@kde.org
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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; version 2. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <iostream>
|
|
|
|
#include <tdecmdlineargs.h>
|
|
#include <tdeaboutdata.h>
|
|
#include <tdeglobal.h>
|
|
#include <tdelocale.h>
|
|
#include <kstandarddirs.h>
|
|
|
|
#include "ksvapplication.h"
|
|
#include "ksv_conf.h"
|
|
#include "ksvconfigwizard.h"
|
|
#include "TopWidget.h"
|
|
#include "version.h"
|
|
|
|
using namespace std;
|
|
|
|
#if (defined(DEBUG) && !(defined(NDEBUG) || defined(NO_DEBUG)))
|
|
#define KSYSV_DEBUG(x) x
|
|
#else
|
|
#define KSYSV_DEBUG(x) do { } while (0)
|
|
#endif
|
|
|
|
static void myMessageOutput( TQtMsgType type, const char *msg )
|
|
{
|
|
switch ( type ) {
|
|
case TQtDebugMsg:
|
|
KSYSV_DEBUG(cerr << "Debug: " << msg << endl);
|
|
break;
|
|
case TQtWarningMsg:
|
|
KSYSV_DEBUG(cerr << "Warning: " << msg << endl);
|
|
break;
|
|
case TQtFatalMsg:
|
|
cerr << "Fatal: " << msg << endl;
|
|
abort(); // dump core on purpose
|
|
}
|
|
}
|
|
|
|
int main( int argc, char **argv ) {
|
|
// install own message handler that ignores debug-msg when DEBUG is not defined
|
|
tqInstallMsgHandler(myMessageOutput);
|
|
|
|
TDEAboutData about("ksysv", I18N_NOOP("SysV-Init Editor"), KSYSV_VERSION_STRING,
|
|
I18N_NOOP ("Editor for Sys-V like init configurations"),
|
|
TDEAboutData::License_GPL,
|
|
"Copyright (c) 1997-2000, Peter Putzer.",
|
|
I18N_NOOP ("Similar to Red Hat's" \
|
|
"\"tksysv\", but SysV-Init Editor allows\n" \
|
|
"drag-and-drop, as well as keyboard use."));
|
|
about.addAuthor ("Peter Putzer", I18N_NOOP("Main developer"), "putzer@kde.org");
|
|
ksv::about = &about;
|
|
|
|
TDECmdLineArgs::init(argc, argv, &about);
|
|
KUniqueApplication::addCmdLineOptions ();
|
|
|
|
if (!KUniqueApplication::start()) {
|
|
cerr << "SysV-Init Editor is already running!" << endl;
|
|
return -1;
|
|
}
|
|
|
|
KSVApplication app;
|
|
|
|
// session-management
|
|
if (kapp->isRestored())
|
|
RESTORE(KSVTopLevel)
|
|
else
|
|
{
|
|
KSVConfig* conf = KSVConfig::self();
|
|
if (!conf->isConfigured())
|
|
{
|
|
KSVConfigWizard* w = new KSVConfigWizard(0, "ConfigWizard", true);
|
|
w->exec();
|
|
|
|
conf->setConfigured(true);
|
|
conf->setRunlevelPath (w->runlevelPath());
|
|
conf->setScriptPath (w->servicesPath());
|
|
conf->writeSettings();
|
|
}
|
|
|
|
KSVTopLevel* top = new KSVTopLevel();
|
|
app.setMainWidget(top);
|
|
top->show();
|
|
}
|
|
// end session-management
|
|
|
|
return app.exec();
|
|
}
|
|
|