diff options
Diffstat (limited to 'Swift/QtUI/QtAddBookmarkWindow.h')
-rw-r--r-- | Swift/QtUI/QtAddBookmarkWindow.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Swift/QtUI/QtAddBookmarkWindow.h b/Swift/QtUI/QtAddBookmarkWindow.h new file mode 100644 index 0000000..8e33180 --- /dev/null +++ b/Swift/QtUI/QtAddBookmarkWindow.h @@ -0,0 +1,23 @@ +/* + * Copyright (c) 2010 Kevin Smith + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include "QtBookmarkDetailWindow.h" + +#include "Swift/Controllers/UIEvents/UIEventStream.h" +#include "Swift/Controllers/UIEvents/AddMUCBookmarkUIEvent.h" + +namespace Swift { + class QtAddBookmarkWindow : public QtBookmarkDetailWindow { + Q_OBJECT + public: + QtAddBookmarkWindow(UIEventStream* eventStream); + void commit(); + private: + UIEventStream* eventStream_; + }; +} |