diff options
author | Kevin Smith <git@kismith.co.uk> | 2012-05-31 17:27:48 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-05-31 17:30:34 (GMT) |
commit | 6aeb44a905b0c1955ea3afe4ea2025370544e699 (patch) | |
tree | f5d99af0cd87d628263643dc2aa98353d3d3b78d /Swift/QtUI/QtInviteToChatWindow.h | |
parent | 59f1bfcf315a77834ddbce20cc05892d211ab55c (diff) | |
download | swift-contrib-6aeb44a905b0c1955ea3afe4ea2025370544e699.zip swift-contrib-6aeb44a905b0c1955ea3afe4ea2025370544e699.tar.bz2 |
Very poor prototype of a MUC invite dialog
Diffstat (limited to 'Swift/QtUI/QtInviteToChatWindow.h')
-rw-r--r-- | Swift/QtUI/QtInviteToChatWindow.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/Swift/QtUI/QtInviteToChatWindow.h b/Swift/QtUI/QtInviteToChatWindow.h new file mode 100644 index 0000000..c009861 --- /dev/null +++ b/Swift/QtUI/QtInviteToChatWindow.h @@ -0,0 +1,41 @@ +/* + * Copyright (c) 2012 Kevin Smith + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include <Swift/Controllers/UIInterfaces/InviteToChatWindow.h> + +#include <QDialog> +#include <QStringList> + +class QLineEdit; +class QBoxLayout; + +namespace Swift { + class QtInviteToChatWindow : public QDialog, public InviteToChatWindow { + Q_OBJECT + public: + QtInviteToChatWindow(QWidget* parent = NULL); + virtual ~QtInviteToChatWindow(); + + virtual std::string getReason() const; + + virtual std::vector<JID> getJIDs() const; + private: + void addJIDLine(); + private slots: + void handleJIDTextChanged(); + void handleAccepting(); + void handleRejecting(); + private: + QStringList completions_; + QLineEdit* reason_; + QBoxLayout* jidsLayout_; + std::vector<QLineEdit*> jids_; + }; +} + + |