From f2af88dc39cc0b785be0ef294a4ba2fddbf4401a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Remko=20Tron=C3=A7on?= <git@el-tramo.be>
Date: Sat, 26 Feb 2011 15:45:43 +0100
Subject: Added missing files.


diff --git a/Swift/QtUI/UserSearch/QtUserSearchDetailsPage.cpp b/Swift/QtUI/UserSearch/QtUserSearchDetailsPage.cpp
new file mode 100644
index 0000000..779e547
--- /dev/null
+++ b/Swift/QtUI/UserSearch/QtUserSearchDetailsPage.cpp
@@ -0,0 +1,35 @@
+/*
+ * Copyright (c) 2011 Remko Tronçon
+ * Licensed under the GNU General Public License v3.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+
+#include "Swift/QtUI/UserSearch/QtUserSearchDetailsPage.h"
+
+#include <QVBoxLayout>
+
+#include <Swift/QtUI/QtContactEditWidget.h>
+
+namespace Swift {
+
+QtUserSearchDetailsPage::QtUserSearchDetailsPage(const std::set<std::string>& groups) {
+	QVBoxLayout* layout = new QVBoxLayout(this);
+	layout->addWidget(new QLabel(tr("Please choose a name for the contact, and select the groups you want to add the contact to.")));
+	editWidget = new QtContactEditWidget(groups, this);
+	layout->addWidget(editWidget);
+}
+
+std::set<std::string> QtUserSearchDetailsPage::getSelectedGroups() {
+	return editWidget->getSelectedGroups();
+}
+
+std::string QtUserSearchDetailsPage::getName() {
+	return editWidget->getName();
+}
+
+void QtUserSearchDetailsPage::clear() {
+	editWidget->clear();
+}
+
+
+}
diff --git a/Swift/QtUI/UserSearch/QtUserSearchDetailsPage.h b/Swift/QtUI/UserSearch/QtUserSearchDetailsPage.h
new file mode 100644
index 0000000..70afcba
--- /dev/null
+++ b/Swift/QtUI/UserSearch/QtUserSearchDetailsPage.h
@@ -0,0 +1,33 @@
+/*
+ * Copyright (c) 2011 Remko Tronçon
+ * Licensed under the GNU General Public License v3.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+
+#pragma once
+
+#include <QWizardPage>
+#include <set>
+
+#include <Swift/QtUI/UserSearch/ui_QtUserSearchFieldsPage.h>
+
+namespace Swift {
+	class QtContactEditWidget;
+
+	class QtUserSearchDetailsPage : public QWizardPage {
+			Q_OBJECT
+		public:
+			QtUserSearchDetailsPage(const std::set<std::string>& availableGroups);
+
+			std::set<std::string> getSelectedGroups();
+			std::string getName();
+
+			void clear();
+
+		signals:
+		  void onUserTriggersFinish();
+
+		private:
+		  QtContactEditWidget* editWidget;
+	};
+}
-- 
cgit v0.10.2-6-g49f6