summaryrefslogtreecommitdiffstats
path: root/kexi/core/kexiguimsghandler.h
blob: 6105f31155ae5808c304f8677f7c22b861b30ef1 (plain)
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
/* This file is part of the KDE project
   Copyright (C) 2004 Jaroslaw Staniek <js@iidea.pl>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library 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
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#ifndef KEXIGUIMSGHANDLER_H
#define KEXIGUIMSGHANDLER_H

#include <core/kexi.h>
#include <kexidb/msghandler.h>

class KEXICORE_EXPORT KexiGUIMessageHandler : public KexiDB::MessageHandler
{
	public:
		KexiGUIMessageHandler(QWidget *parent = 0);
		virtual ~KexiGUIMessageHandler();
		virtual void showErrorMessage(const QString &title, const QString &details = QString::null);
		virtual void showErrorMessage(KexiDB::Object *obj, const QString& msg = QString::null);

		void showErrorMessage(const QString&,const QString&,KexiDB::Object *obj);
		void showErrorMessage(Kexi::ObjectStatus *status);
		void showErrorMessage(const QString &message, Kexi::ObjectStatus *status);

		/*! Displays a "Sorry" message with \a title text and optional \a details. */
		void showSorryMessage(const QString &title, const QString &details = QString::null);

		/*! Displays a message of a type \a type, with \a title text and optional \a details.
		 \a dontShowAgainName can be specified to add "Do not show again" option if \a type is Warning. */
		virtual void showMessage(MessageType type, const QString &title, const QString &details,
			const QString& dontShowAgainName = QString::null);

		/*! Displays a Warning message with \a title text and optional \a details 
		 with "Continue" button instead "OK".
		 \a dontShowAgainName can be specified to add "Do not show again" option. */
		virtual void showWarningContinueMessage(const QString &title, const QString &details = QString::null,
			const QString& dontShowAgainName = QString::null);

		/*! Interactively asks a question using KMessageBox.
		 See KexiDB::MessageHandler::askQuestion() for details. */
		virtual int askQuestion( const QString& message, 
			KMessageBox::DialogType dlgType, KMessageBox::ButtonCode defaultResult,
			const KGuiItem &buttonYes=KStdGuiItem::yes(), 
			const KGuiItem &buttonNo=KStdGuiItem::no(),
			const QString &dontShowAskAgainName = QString::null,
			int options = KMessageBox::Notify );
};

#endif