summaryrefslogtreecommitdiffstats
path: root/kexi/tests/startup/main.cpp
blob: d7429cf4cf9e9831e7635e357109a1a7d1b4393c (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
/* This file is part of the KDE project
   Copyright (C) 2003 Jaroslaw Staniek <js@iidea.pl>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library 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
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#include <kdebug.h>
#include <kapplication.h>

//#include <tableview/kexitableview.h>
/*#include <kexidb/drivermanager.h>
#include <kexidb/driver.h>
#include <kexidb/connection.h>
#include <kexidb/cursor.h>*/

#include "main/startup/KexiStartupDialog.h"
#include "main/startup/KexiConnSelector.h"
#include "core/kexiprojectset.h"
#include "core/kexiprojectdata.h"

int main(int argc, char* argv[])
{
	TDEApplication app(argc, argv, "startup");
	
//	Widget w;
//	app.setMainWidget(&w);
	
/*	KexiTableView tv;
	app.setMainWidget(&tv);

	KexiTableViewData data;
	KexiTableViewColumn col;
	col.type = TQVariant::Int; col.caption = "Id"; data.addColumn( col );
	col.type = TQVariant::String; col.caption = "Name"; data.addColumn( col );
	col.type = TQVariant::Int; col.caption = "Age"; data.addColumn( col );
	tv.setData(&data, false);
	tv.show();*/

	//some connection data
	KexiDBConnectionSet connset;
	KexiDB::ConnectionData *conndata;
	conndata = new KexiDB::ConnectionData();
		conndata->name = "My connection 1";
		conndata->driverName = "mysql";
		conndata->hostName = "host.net";
		conndata->userName = "user";
	connset.addConnectionData(conndata);
	conndata = new KexiDB::ConnectionData();
		conndata->name = "My connection 2";
		conndata->driverName = "mysql";
		conndata->hostName = "myhost.org";
		conndata->userName = "otheruser";
		conndata->port = 53121;
	connset.addConnectionData(conndata);
	
	//some recent projects data
	KexiProjectData *prjdata;
	prjdata = new KexiProjectData( *conndata, "bigdb", "Big DB" );
	prjdata->setCaption("My Big Project");
	prjdata->setDescription("This is my first biger project started yesterday. Have fun!");
	KexiProjectSet prj_set;
	prj_set.addProjectData(prjdata);
	
	KexiStartupDialog startup(KexiStartupDialog::Everything, 0, connset, prj_set, 0, "dlg");
	int e=startup.exec();
	kdDebug() << (e==TQDialog::Accepted ? "Accepted" : "Rejected") << endl;
	
	if (e==TQDialog::Accepted) {
		int r = startup.result();
		if (r==KexiStartupDialog::TemplateResult) {
			kdDebug() << "Template key == " << startup.selectedTemplateKey() << endl;
			if (startup.selectedTemplateKey()=="blank") {
#if 0				
				KexiConnSelectorDialog sel(connset, 0,"sel");
				e = sel.exec();
				kdDebug() << (e==TQDialog::Accepted ? "Accepted" : "Rejected") << endl;
				if (e==TQDialog::Accepted) {
					kdDebug() << "Selected conn. type: " << (sel.selectedConnectionType()==KexiConnSelectorWidget::FileBased ? "File based" : "Server based") << endl;
					if (sel.selectedConnectionType()==KexiConnSelectorWidget::ServerBased) {
						kdDebug() << "SERVER: " << sel.selectedConnectionData()->serverInfoString() << endl;
					}
				}
#endif				
			}
		}
		else if (r==KexiStartupDialog::OpenExistingResult) {
			kdDebug() << "Existing project --------" << endl;
			TQString selFile = startup.selectedExistingFile();
			if (!selFile.isEmpty())
				kdDebug() << "Project File: " << selFile << endl;
			else if (startup.selectedExistingConnection()) {
				kdDebug() << "Existing connection: " << startup.selectedExistingConnection()->serverInfoString() << endl;
				//ok, now we are trying to show daabases for this conenction to this user
				//todo
			}
		}
		else if (r==KexiStartupDialog::OpenRecentResult) {
			kdDebug() << "Recent project --------" << endl;
			const KexiProjectData *data = startup.selectedProjectData();
			if (data) {
				kdDebug() << "Selected project: database=" << data->databaseName()
					<< " connection=" << data->constConnectionData()->serverInfoString() << endl;
			}
		}
	}
}