summaryrefslogtreecommitdiffstats
path: root/kexi/core/kexiguimsghandler.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
commit8362bf63dea22bbf6736609b0f49c152f975eb63 (patch)
tree0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kexi/core/kexiguimsghandler.cpp
downloadkoffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz
koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/core/kexiguimsghandler.cpp')
-rw-r--r--kexi/core/kexiguimsghandler.cpp176
1 files changed, 176 insertions, 0 deletions
diff --git a/kexi/core/kexiguimsghandler.cpp b/kexi/core/kexiguimsghandler.cpp
new file mode 100644
index 00000000..af5f3a6e
--- /dev/null
+++ b/kexi/core/kexiguimsghandler.cpp
@@ -0,0 +1,176 @@
+/* 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.
+*/
+
+#include "kexiguimsghandler.h"
+
+#include "kexi.h"
+#include <kexidb/utils.h>
+#include <kexiutils/utils.h>
+
+#include <kmessagebox.h>
+#include <kdialogbase.h>
+
+KexiGUIMessageHandler::KexiGUIMessageHandler(QWidget *parent)
+: KexiDB::MessageHandler(parent)
+{
+}
+
+KexiGUIMessageHandler::~KexiGUIMessageHandler()
+{
+}
+
+/*virtual*/
+void
+KexiGUIMessageHandler::showErrorMessage(KexiDB::Object *obj,
+ const QString& msg)
+{
+ QString _msg(msg);
+ if (!obj) {
+ showErrorMessage(_msg);
+ return;
+ }
+ QString details;
+ KexiDB::getHTMLErrorMesage(obj, _msg, details);
+ showErrorMessage(_msg, details);
+}
+
+/*virtual*/
+void
+KexiGUIMessageHandler::showErrorMessage(const QString &title, const QString &details)
+{
+ showMessage(Error, title, details);
+}
+
+void
+KexiGUIMessageHandler::showSorryMessage(const QString &title, const QString &details)
+{
+ showMessage(Sorry, title, details);
+}
+
+void KexiGUIMessageHandler::showErrorMessage(const QString &msg, const QString &details,
+ KexiDB::Object *obj)
+{
+ QString _msg(msg);
+ if (!obj) {
+ showErrorMessage(_msg, details);
+ return;
+ }
+ QString _details(details);
+ KexiDB::getHTMLErrorMesage(obj, _msg, _details);
+ showErrorMessage(_msg, _details);
+}
+
+void
+KexiGUIMessageHandler::showErrorMessage(Kexi::ObjectStatus *status)
+{
+ showErrorMessage("", status);
+}
+
+void
+KexiGUIMessageHandler::showErrorMessage(const QString &message, Kexi::ObjectStatus *status)
+{
+ if (status && status->error()) {
+ QString msg(message);
+ if (msg.isEmpty() || msg==status->message) {
+ msg = status->message;
+ status->message = status->description;
+ status->description = "";
+ }
+ QString desc;
+ if (!status->message.isEmpty()) {
+ if (status->description.isEmpty()) {
+ desc = status->message;
+ } else {
+ msg += (QString("<br><br>") + status->message);
+ desc = status->description;
+ }
+ }
+ showErrorMessage(msg, desc, status->dbObject());
+ }
+ else {
+ showErrorMessage(message);
+ }
+ status->clearStatus();
+}
+
+void
+KexiGUIMessageHandler::showMessage(MessageType type,
+ const QString &title, const QString &details, const QString& dontShowAgainName)
+{
+ if (!m_enableMessages)
+ return;
+
+ //'wait' cursor is a nonsense now
+ KexiUtils::removeWaitCursor();
+
+ QString msg(title);
+ if (title.isEmpty())
+ msg = i18n("Unknown error");
+ msg = "<qt><p>"+msg+"</p>";
+ if (!details.isEmpty()) {
+ switch (type) {
+ case Error:
+ KMessageBox::detailedError(m_messageHandlerParentWidget, msg, details);
+ break;
+ case Warning:
+ showWarningContinueMessage(title, details, dontShowAgainName);
+ break;
+ default: //Sorry
+ KMessageBox::detailedSorry(m_messageHandlerParentWidget, msg, details);
+ }
+ }
+ else {
+ KMessageBox::messageBox(m_messageHandlerParentWidget,
+ type==Error ? KMessageBox::Error : KMessageBox::Sorry, msg);
+ }
+}
+
+void KexiGUIMessageHandler::showWarningContinueMessage(const QString &title, const QString &details,
+ const QString& dontShowAgainName)
+{
+ if (!KMessageBox::shouldBeShownContinue(dontShowAgainName))
+ return;
+ KDialogBase *dialog = new KDialogBase(
+ i18n("Warning"), KDialogBase::Yes, KDialogBase::Yes, KDialogBase::No,
+ m_messageHandlerParentWidget, "warningContinue", true, true, KStdGuiItem::cont() );
+ bool checkboxResult = false;
+ KMessageBox::createKMessageBox(dialog, QMessageBox::Warning,
+ title + (details.isEmpty() ? QString::null : (QString("\n")+details)), QStringList(),
+ dontShowAgainName.isEmpty() ? QString::null : i18n("Do not show this message again"),
+ &checkboxResult, 0);
+ if (checkboxResult)
+ KMessageBox::saveDontShowAgainContinue(dontShowAgainName);
+}
+
+int KexiGUIMessageHandler::askQuestion( const QString& message,
+ KMessageBox::DialogType dlgType, KMessageBox::ButtonCode defaultResult,
+ const KGuiItem &buttonYes,
+ const KGuiItem &buttonNo,
+ const QString &dontShowAskAgainName,
+ int options )
+{
+ Q_UNUSED(defaultResult);
+ if (KMessageBox::WarningContinueCancel == dlgType)
+ return KMessageBox::warningContinueCancel(m_messageHandlerParentWidget,
+ message, QString::null, buttonYes, dontShowAskAgainName, options);
+ else
+ return KMessageBox::messageBox(m_messageHandlerParentWidget,
+ dlgType, message, QString::null, buttonYes, buttonNo, dontShowAskAgainName, options);
+}
+