summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-12-17 13:21:14 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-01-30 15:10:02 (GMT)
commitb897bac235a95f9c4654b31d101779bd0cc8f72f (patch)
tree8d00b3ab58ec200adf670e01671eed91876b485d /Swift/QtUI/QtProfileWindow.h
parent869c52b244c2d03313e9eda83fac05bf0fc3a619 (diff)
downloadswift-b897bac235a95f9c4654b31d101779bd0cc8f72f.zip
swift-b897bac235a95f9c4654b31d101779bd0cc8f72f.tar.bz2
Added profile edit dialog.
Resolves: #141, #587.
Diffstat (limited to 'Swift/QtUI/QtProfileWindow.h')
-rw-r--r--Swift/QtUI/QtProfileWindow.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/Swift/QtUI/QtProfileWindow.h b/Swift/QtUI/QtProfileWindow.h
new file mode 100644
index 0000000..1ad73e8
--- /dev/null
+++ b/Swift/QtUI/QtProfileWindow.h
@@ -0,0 +1,48 @@
+/*
+ * 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 <QWidget>
+
+#include <Swift/Controllers/UIInterfaces/ProfileWindow.h>
+
+class QLabel;
+class QLineEdit;
+class QHBoxLayout;
+class QPushButton;
+
+namespace Swift {
+ class QtAvatarWidget;
+
+ class QtProfileWindow : public QWidget, public ProfileWindow {
+ Q_OBJECT
+ public:
+ QtProfileWindow();
+
+ void setVCard(Swift::VCard::ref);
+ void setEnabled(bool);
+ void setProcessing(bool);
+ virtual void setError(const String&);
+ void show();
+ void hide();
+
+ void hideEvent (QHideEvent* event);
+
+ private slots:
+ void handleSave();
+
+ private:
+ VCard::ref vcard;
+ QtAvatarWidget* avatar;
+ QLabel* nicknameLabel;
+ QLineEdit* nickname;
+ QLabel* throbberLabel;
+ QLabel* errorLabel;
+ QHBoxLayout* horizontalLayout;
+ QPushButton* saveButton;
+ };
+}