/* * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #include namespace Swift { QtAddBookmarkWindow::QtAddBookmarkWindow(UIEventStream* eventStream) : eventStream_(eventStream) { setWindowTitle(tr("Add Bookmark Details")); } QtAddBookmarkWindow::QtAddBookmarkWindow(UIEventStream* eventStream, const MUCBookmark& bookmark) : eventStream_(eventStream) { createFormFromBookmark(bookmark); setWindowTitle(tr("Add Bookmark Details")); } bool QtAddBookmarkWindow::commit() { boost::optional bookmark = createBookmarkFromForm(); if (bookmark) { eventStream_->send(std::make_shared(*bookmark)); return true; } else { return false; } } }