diff options
author | Mateusz Piekos <mateuszpiekos@gmail.com> | 2012-03-31 16:34:53 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-04-09 09:15:05 (GMT) |
commit | 1e61cace31a3395f5470a03c3bcf2b7f32d79d03 (patch) | |
tree | 972f42651900908a2a33bf34cf142fe573d5a3d4 /Swift/QtUI/QtChatWindow.h | |
parent | 736aae33a0af7bff42f73a323edb76775b2c39a9 (diff) | |
download | swift-contrib-1e61cace31a3395f5470a03c3bcf2b7f32d79d03.zip swift-contrib-1e61cace31a3395f5470a03c3bcf2b7f32d79d03.tar.bz2 |
Made MUC context options role-aware
License: This patch is BSD-licensed, see Documentation/Licenses/BSD-simplified.txt for details.
Diffstat (limited to 'Swift/QtUI/QtChatWindow.h')
-rw-r--r-- | Swift/QtUI/QtChatWindow.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Swift/QtUI/QtChatWindow.h b/Swift/QtUI/QtChatWindow.h index 9203068..189a12a 100644 --- a/Swift/QtUI/QtChatWindow.h +++ b/Swift/QtUI/QtChatWindow.h @@ -79,6 +79,7 @@ namespace Swift { void showRoomConfigurationForm(Form::ref); void addMUCInvitation(const JID& jid, const std::string& reason, const std::string& password, bool direct = true); void setAffiliations(MUCOccupant::Affiliation, const std::vector<JID>&); + void setAvailableRoomActions(const std::vector<RoomAction> &actions); public slots: void handleChangeSplitterState(QByteArray state); @@ -163,5 +164,6 @@ namespace Swift { QPointer<QtAffiliationEditor> affiliationEditor_; int idCounter_; SettingsProvider* settings_; + std::vector<ChatWindow::RoomAction> availableRoomActions_; }; } |