summaryrefslogtreecommitdiffstats
path: root/kexi/tests/startup/main.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
commit8362bf63dea22bbf6736609b0f49c152f975eb63 (patch)
tree0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kexi/tests/startup/main.cpp
downloadkoffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz
koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/tests/startup/main.cpp')
-rw-r--r--kexi/tests/startup/main.cpp119
1 files changed, 119 insertions, 0 deletions
diff --git a/kexi/tests/startup/main.cpp b/kexi/tests/startup/main.cpp
new file mode 100644
index 00000000..dd2e86ce
--- /dev/null
+++ b/kexi/tests/startup/main.cpp
@@ -0,0 +1,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[])
+{
+ KApplication app(argc, argv, "startup");
+
+// Widget w;
+// app.setMainWidget(&w);
+
+/* KexiTableView tv;
+ app.setMainWidget(&tv);
+
+ KexiTableViewData data;
+ KexiTableViewColumn col;
+ col.type = QVariant::Int; col.caption = "Id"; data.addColumn( col );
+ col.type = QVariant::String; col.caption = "Name"; data.addColumn( col );
+ col.type = QVariant::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==QDialog::Accepted ? "Accepted" : "Rejected") << endl;
+
+ if (e==QDialog::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==QDialog::Accepted ? "Accepted" : "Rejected") << endl;
+ if (e==QDialog::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;
+ QString 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;
+ }
+ }
+ }
+}