summaryrefslogtreecommitdiffstats
path: root/parts/appwizard/appwizardpart.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parts/appwizard/appwizardpart.cpp')
-rw-r--r--parts/appwizard/appwizardpart.cpp98
1 files changed, 98 insertions, 0 deletions
diff --git a/parts/appwizard/appwizardpart.cpp b/parts/appwizard/appwizardpart.cpp
new file mode 100644
index 00000000..8a19f548
--- /dev/null
+++ b/parts/appwizard/appwizardpart.cpp
@@ -0,0 +1,98 @@
+/***************************************************************************
+ * Copyright (C) 2001 by Bernd Gehrmann *
+ * bernd@kdevelop.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; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+#include <qdir.h>
+#include <qwidget.h>
+#include <qtimer.h>
+
+#include "appwizardpart.h"
+
+#include <kdebug.h>
+#include <klocale.h>
+#include <kmessagebox.h>
+#include <kprocess.h>
+#include <kdevcore.h>
+#include <kgenericfactory.h>
+#include <kstandarddirs.h>
+#include <kaction.h>
+#include <qmessagebox.h>
+
+#include "importdlg.h"
+#include "appwizarddlg.h"
+#include "appwizardfactory.h"
+#include <kdevmakefrontend.h>
+#include <kdevpartcontroller.h>
+#include <kdevlanguagesupport.h>
+#include <kdevcore.h>
+#include <codemodel.h>
+
+AppWizardPart::AppWizardPart(QObject *parent, const char *name, const QStringList &)
+ : KDevPlugin(AppWizardFactory::info(), parent, name ? name : "AppWizardPart")
+{
+ setInstance(AppWizardFactory::instance());
+ setXMLFile("kdevappwizard.rc");
+
+ KAction *action;
+
+ action = new KAction( i18n("&New Project..."), "window_new", 0,
+ this, SLOT(slotNewProject()),
+ actionCollection(), "project_new" );
+ action->setToolTip( i18n("Generate a new project from a template") );
+ action->setWhatsThis( i18n("<b>New project</b><p>"
+ "This starts KDevelop's application wizard. "
+ "It helps you to generate a skeleton for your "
+ "application from a set of templates.") );
+
+ action = new KAction( i18n("&Import Existing Project..."),"wizard", 0,
+ this, SLOT(slotImportProject()),
+ actionCollection(), "project_import" );
+ action->setToolTip( i18n("Import existing project") );
+ action->setWhatsThis( i18n("<b>Import existing project</b><p>Creates a project file for a given directory.") );
+}
+
+
+AppWizardPart::~AppWizardPart()
+{
+}
+
+
+void AppWizardPart::slotNewProject()
+{
+ kdDebug(9010) << "new project" << endl;
+ AppWizardDialog dlg(this, 0, "app wizard");
+ dlg.templates_listview->setFocus();
+ dlg.exec();
+}
+
+
+void AppWizardPart::slotImportProject()
+{
+ ImportDialog dlg(this, 0, "import dialog");
+ dlg.exec();
+}
+
+void AppWizardPart::openFilesAfterGeneration(const KURL::List urlsToOpen)
+{
+ m_urlsToOpen = urlsToOpen;
+ connect( core(), SIGNAL( projectOpened() ), this, SLOT( openFilesAfterGeneration() ) );
+}
+
+void AppWizardPart::openFilesAfterGeneration()
+{
+ for (KURL::List::const_iterator it = m_urlsToOpen.begin(); it != m_urlsToOpen.end(); ++it)
+ partController()->editDocument(*it);
+ m_urlsToOpen.clear();
+ disconnect( core(), SIGNAL( projectOpened() ), this, SLOT( openFilesAfterGeneration() ) );
+}
+
+#include "appwizardpart.moc"
+
+// kate: indent-width 4; replace-tabs off; tab-width 4; space-indent off;