You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.8 KiB
63 lines
2.8 KiB
/* 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
|