(C++) QtQuestionDialog
January 25, 2018 · View on GitHub
(C++) QtQuestionDialog



QtQuestionDialog is a Qt dialog for QuestionDialog.
Technical facts
./CppQtQuestionDialog/CppQtQuestionDialog.pri
INCLUDEPATH += \ ../../Classes/CppQtQuestionDialog SOURCES += \ ../../Classes/CppQtQuestionDialog/qtquestiondialog.cpp HEADERS += \ ../../Classes/CppQtQuestionDialog/qtquestiondialog.h OTHER_FILES += \ ../../Classes/CppQtQuestionDialog/Licence.txt
./CppQtQuestionDialog/qtquestiondialog.h
//--------------------------------------------------------------------------- /* QtQuestionDialog, Qt dialog for QuestionDialog Copyright 2011-2015 Richel Bilderbeek This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program.If not, see <http://www.gnu.org/licenses/>. */ //--------------------------------------------------------------------------- //From http://www.richelbilderbeek.nl/CppQtQuestionDialog.htm //--------------------------------------------------------------------------- #ifndef QTQUESTIONDIALOG_H #define QTQUESTIONDIALOG_H #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Weffc++" #pragma GCC diagnostic ignored "-Wunused-local-typedefs" #include <boost/shared_ptr.hpp> #include <boost/signals2.hpp> #include "qthideandshowdialog.h" #pragma GCC diagnostic pop namespace ribi { struct Question; struct QuestionDialog; ///Qt dialog for QuestionDialog struct QtQuestionDialog : public QtHideAndShowDialog { explicit QtQuestionDialog(QWidget *parent = 0); virtual ~QtQuestionDialog() noexcept {} virtual boost::shared_ptr<const QuestionDialog> GetDialog() const = 0; virtual void SetDialog(const boost::shared_ptr<QuestionDialog>& dialog) = 0; static std::string GetVersion() noexcept; static std::vector<std::string> GetVersionHistory() noexcept; private: #ifndef NDEBUG static void Test() noexcept; #endif }; } //~namespace ribi #endif // CPPQTQUESTIONDIALOG_H
./CppQtQuestionDialog/qtquestiondialog.cpp
//--------------------------------------------------------------------------- /* QtQuestionDialog, Qt dialog for QuestionDialog Copyright 2011-2015 Richel Bilderbeek This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program.If not, see <http://www.gnu.org/licenses/>. */ //--------------------------------------------------------------------------- //From http://www.richelbilderbeek.nl/CppQtQuestionDialog.htm //--------------------------------------------------------------------------- #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Weffc++" #pragma GCC diagnostic ignored "-Wunused-local-typedefs" #include "qtquestiondialog.h" #include <cassert> #include <boost/bind.hpp> #include <boost/lambda/lambda.hpp> #include "questiondialog.h" #pragma GCC diagnostic pop ribi::QtQuestionDialog::QtQuestionDialog( QWidget *parent) : QtHideAndShowDialog(parent) { } std::string ribi::QtQuestionDialog::GetVersion() noexcept { return "1.3"; } std::vector<std::string> ribi::QtQuestionDialog::GetVersionHistory() noexcept { return { "2011-06-30: version 1.0: initial version", "2013-10-23: version 1.1: moved m_signal_submitted to QuestionDialog", "2013-10-24: version 1.2: moved general m_dialog to derived classes", "2014-06-04: version 1.3: added SetDialog member function" }; }