aboutsummaryrefslogtreecommitdiffstats
path: root/kde2/kpsion/main.cpp
blob: df909eff47cd882d5ed1228a7e6a9856b5ac501a (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
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "kpsion.h"
#include "wizards.h"
#include <kapp.h>
#include <klocale.h>
#include <kconfig.h>
#include <kcmdlineargs.h>
#include <kaboutdata.h>

static KCmdLineOptions options[] = {
	{"b", 0, 0},
	{"backup", I18N_NOOP("perform backup"), 0},
	{"r", 0, 0},
	{"restore", I18N_NOOP("perform restore"), 0},
	{"f", 0, 0},
	{"format", I18N_NOOP("format drive"), 0},
	{"+[DriveLetter]", I18N_NOOP("The drive letter to backup/restore or format."), 0},
	{ 0, 0, 0},
};

int main(int argc, char **argv) {
	KAboutData *about = new KAboutData("kpsion", I18N_NOOP("KPsion"),
					   VERSION, I18N_NOOP("Psion connectivity utility"),
					   KAboutData::License_GPL,
					   "(C) 2001, Fritz Elfert", 0L,
					   "http://plptools.sourceforge.net",
					   "plptools-developers@sourceforge.net");
	about->addAuthor("Fritz Elfert", I18N_NOOP("Original Developer/Maintainer"),
			 "felfert@users.sourceforge.net",
			 "http://plptools.sourceforge.net");
	KCmdLineArgs::init(argc, argv, about);
	KCmdLineArgs::addCmdLineOptions(options);

	KApplication a;

	KConfig *config = kapp->config();
	config->setGroup("Settings");
	QString backupDir = config->readEntry("BackupDir");
	
	if (backupDir.isEmpty()) {
		FirstTimeWizard *wiz = new FirstTimeWizard(0L, "firsttimewizard");
		wiz->exec();
	}

	KPsionMainWindow *w = new KPsionMainWindow();
	w->resize(300, 150);
	a.setMainWidget(w);
	w->show();
	return a.exec();
}