summaryrefslogtreecommitdiff
path: root/noncore/tools/pimconverter/converter.h
blob: e9035e703a5ec5d89997327052a2631feafaecdd (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
#ifndef _CONVERTER_H_
#define _CONVERTER_H_


#include "converter_base.h"


class Converter: public converter_base {
public:
        Converter(QWidget *parent, const char* name, WFlags fl);
	static QString appName() { return QString::fromLatin1("opimconverter");}

	// Slots defined in the ui-description file
	void start_conversion();
	void start_upgrade();
	void selectedDatabase( int num );
	void selectedDestFormat( int num );
	void selectedSourceFormat( int num );

	void closeEvent( QCloseEvent *e );
	
private:
	// Caution:
	// The order and value of the following enums must be regarding
	// the predefinition in the UI-File !!
	// If you don't understand what I am talking about: Keep your fingers away!!
	enum DataBases{
		ADDRESSBOOK = 0,
		TODOLIST    = 1,
		DATEBOOK    = 2,
	};

	enum DbFormats{
		XML = 0,
		SQL = 1,
	};

	int m_selectedDatabase;
	int m_selectedSourceFormat;
	int m_selectedDestFormat;
	bool m_criticalState;


private:
	static bool sqliteCopyAndConvert( const QString &src, const QString &destination, QString &lastCommand );
};


#endif