summaryrefslogtreecommitdiff
path: root/src/mobile/util/messagedialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mobile/util/messagedialog.h')
-rw-r--r--src/mobile/util/messagedialog.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/mobile/util/messagedialog.h b/src/mobile/util/messagedialog.h
new file mode 100644
index 0000000..d56b9ea
--- /dev/null
+++ b/src/mobile/util/messagedialog.h
@@ -0,0 +1,36 @@
+/*********
+*
+* In the name of the Father, and of the Son, and of the Holy Spirit.
+*
+* This file is part of BibleTime's source code, http://www.bibletime.info/.
+*
+* Copyright 1999-2014 by the BibleTime developers.
+* The BibleTime source code is licensed under the GNU General Public License version 2.0.
+*
+**********/
+
+#ifndef UTIL_DIALOG_UTIL_H
+#define UTIL_DIALOG_UTIL_H
+
+#include <QString>
+#include <QMessageBox>
+
+class QWidget;
+
+namespace message {
+
+int showWarning(QWidget * parent,
+ const QString & title,
+ const QString & text,
+ QMessageBox::StandardButtons buttons = QMessageBox::Ok,
+ QMessageBox::StandardButton defaultButton = QMessageBox::NoButton);
+
+int showQuestion(QWidget * parent,
+ const QString & title,
+ const QString & text,
+ QMessageBox::StandardButtons buttons = QMessageBox::Ok,
+ QMessageBox::StandardButton defaultButton = QMessageBox::NoButton);
+
+} // namespace message
+
+#endif