QElectroTech 0.100.0-dev
Loading...
Searching...
No Matches
qetmessagebox.h
Go to the documentation of this file.
1/*
2 Copyright 2006-2024 The QElectroTech Team
3 This file is part of QElectroTech.
4
5 QElectroTech is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 2 of the License, or
8 (at your option) any later version.
9
10 QElectroTech is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
17*/
18#ifndef QET_MESSAGE_BOX_H
19#define QET_MESSAGE_BOX_H
20#include <QMessageBox>
21namespace QET {
29 namespace QetMessageBox {
30 QMessageBox::StandardButton critical (
31 QWidget *,
32 const QString &,
33 const QString &,
34 QMessageBox::StandardButtons = QMessageBox::Ok,
35 QMessageBox::StandardButton = QMessageBox::NoButton);
36 QMessageBox::StandardButton information(
37 QWidget *,
38 const QString &,
39 const QString &,
40 QMessageBox::StandardButtons = QMessageBox::Ok,
41 QMessageBox::StandardButton = QMessageBox::NoButton);
42 QMessageBox::StandardButton question (
43 QWidget *,
44 const QString &,
45 const QString &,
46 QMessageBox::StandardButtons = QMessageBox::Ok,
47 QMessageBox::StandardButton = QMessageBox::NoButton);
48 QMessageBox::StandardButton warning (
49 QWidget *,
50 const QString &,
51 const QString &,
52 QMessageBox::StandardButtons = QMessageBox::Ok,
53 QMessageBox::StandardButton = QMessageBox::NoButton);
54 };
55};
56#endif
QMessageBox::StandardButton warning(QWidget *, const QString &, const QString &, QMessageBox::StandardButtons=QMessageBox::Ok, QMessageBox::StandardButton=QMessageBox::NoButton)
Definition qetmessagebox.cpp:119
QMessageBox::StandardButton information(QWidget *, const QString &, const QString &, QMessageBox::StandardButtons=QMessageBox::Ok, QMessageBox::StandardButton=QMessageBox::NoButton)
Definition qetmessagebox.cpp:55
QMessageBox::StandardButton question(QWidget *, const QString &, const QString &, QMessageBox::StandardButtons=QMessageBox::Ok, QMessageBox::StandardButton=QMessageBox::NoButton)
Definition qetmessagebox.cpp:87
QMessageBox::StandardButton critical(QWidget *, const QString &, const QString &, QMessageBox::StandardButtons=QMessageBox::Ok, QMessageBox::StandardButton=QMessageBox::NoButton)
Definition qetmessagebox.cpp:23
Definition qet.h:30