File: messagebox.cpp

package info (click to toggle)
ktikz 0.13.1%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,136 kB
  • sloc: cpp: 10,491; xml: 701; sh: 131; makefile: 19
file content (89 lines) | stat: -rw-r--r-- 3,581 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/***************************************************************************
 *   Copyright (C) 2011 by Glad Deschrijver                                *
 *     <glad.deschrijver@gmail.com>                                        *
 *                                                                         *
 *   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 2 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/>.  *
 ***************************************************************************/

#include "messagebox.h"

#ifdef KTIKZ_USE_KDE
#include <KMessageBox>

int MessageBox::questionYesNo(QWidget *parent, const QString &text, const QString &caption, const QString &yesButtonText, const QString &noButtonText)
{
	int result;
	if (!yesButtonText.isEmpty())
	{
		if (!noButtonText.isEmpty())
			result = KMessageBox::questionYesNo(parent, text, caption, KGuiItem(yesButtonText, QLatin1String("dialog-ok")), KGuiItem(noButtonText, QLatin1String("process-stop")));
		else
			result = KMessageBox::questionYesNo(parent, text, caption, KGuiItem(yesButtonText, QLatin1String("dialog-ok")));
	}
	else
		result = KMessageBox::questionYesNo(parent, text, caption);

	return (result == KMessageBox::Yes) ? Yes : No;
}

void MessageBox::sorry(QWidget *parent, const QString &text, const QString &caption)
{
	KMessageBox::sorry(parent, text, caption);
}

void MessageBox::error(QWidget *parent, const QString &text, const QString &caption)
{
	KMessageBox::error(parent, text, caption);
}
#else
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
#include <QtWidgets/QMessageBox>
#include <QtWidgets/QPushButton>
#else
#include <QtGui/QMessageBox>
#include <QtGui/QPushButton>
#endif

int MessageBox::questionYesNo(QWidget *parent, const QString &text, const QString &caption, const QString &yesButtonText, const QString &noButtonText)
{
	QMessageBox::StandardButton result;
	if (!yesButtonText.isEmpty())
	{
		QMessageBox msgBox(QMessageBox::Question, caption, text, QMessageBox::NoButton, parent);
		QPushButton *yesButton = msgBox.addButton(yesButtonText, QMessageBox::YesRole);
		if (!noButtonText.isEmpty())
			msgBox.addButton(noButtonText, QMessageBox::NoRole);
		else
			msgBox.addButton(QMessageBox::No);
		msgBox.setDefaultButton(yesButton);

		msgBox.exec();
		return (msgBox.clickedButton() == yesButton) ? Yes : No;
	}
	else
		result = QMessageBox::question(parent, caption, text, QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes);

	return (result == QMessageBox::Yes) ? Yes : No;
}

void MessageBox::sorry(QWidget *parent, const QString &text, const QString &caption)
{
	QMessageBox::warning(parent, caption, text);
}

void MessageBox::error(QWidget *parent, const QString &text, const QString &caption)
{
	QMessageBox::critical(parent, caption, text);
}
#endif