Gui: Notifications - Convenience functions to send intrusive/non-intrusive notifications
========================================================================================
Functions to transparently send errors, warnings, notifications and translatednotifications, either
as intrusive messages (modal pop-up QMessageBox style) or as non-intrusive messages (notificationarea),
depending on the preferences of the user.
It is intended to substitute calls to QMessageBox with these functions in WBs, including the Sketcher WB.
Example:
QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Wrong selection"),
QObject::tr("Cannot add a constraint between two external geometries."));
Can be rewritten as:
Gui::TranslatedNotification(obj,
QObject::tr("Wrong selection"),
QObject::tr("Cannot add a constraint between two external geometries."));
or
Gui::TranslatedNotification("Sketcher",
QObject::tr("Wrong selection"),
QObject::tr("Cannot add a constraint between two external geometries."));
where the first parameter (obj or "Sketcher") is the notifier string. If obj is an App::DocumentObject
(or a derived class of it), internally the function transparently calls getFullLabel() to get the notifier
string.
This commit is contained in:
committed by
abdullahtahiriyo
parent
21aee496ef
commit
48ef9c794b
@@ -1171,6 +1171,7 @@ SET(FreeCADGui_SRCS
|
||||
Macro.h
|
||||
MergeDocuments.h
|
||||
MetaTypes.h
|
||||
Notifications.h
|
||||
PreCompiled.cpp
|
||||
PreCompiled.h
|
||||
QtAll.h
|
||||
|
||||
219
src/Gui/Notifications.h
Normal file
219
src/Gui/Notifications.h
Normal file
@@ -0,0 +1,219 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Abdullah Tahiri <abdullah.tahiri.yo@gmail.com> *
|
||||
* *
|
||||
* This file is part of the FreeCAD CAx development system. *
|
||||
* *
|
||||
* 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., 59 Temple Place, *
|
||||
* Suite 330, Boston, MA 02111-1307, USA *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef GUI_NOTIFICATIONS_H
|
||||
#define GUI_NOTIFICATIONS_H
|
||||
|
||||
#include <QMessageBox>
|
||||
#include <QCoreApplication>
|
||||
|
||||
#include <Base/Console.h>
|
||||
#include <App/Application.h>
|
||||
#include <App/DocumentObject.h>
|
||||
#include <Gui/MainWindow.h>
|
||||
|
||||
namespace Gui {
|
||||
|
||||
/** Methods to seamlessly provide intrusive or non-intrusive notifications of error, warning,
|
||||
* messages, translated notifications, or untranslated notifications originating in a given
|
||||
* document object.
|
||||
*
|
||||
* They are intended for easy substitution of currently blocking modal dialogs in which the user
|
||||
* may only click 'ok'.
|
||||
*
|
||||
* It produces a blocking modal notification or a non-intrusive non-modal notification depending on
|
||||
* the preference parameter NotificationArea/NonIntrusiveNotificationsEnabled.
|
||||
*
|
||||
* The notifier field can be a string or an App::DocumentObject * object, then the notifier is taken from the
|
||||
* getFullLabel() method of the DocumentObject.
|
||||
*
|
||||
* Translations:
|
||||
*
|
||||
* An attempt is made by NotificationArea to translate the message using the "Notifications" context,
|
||||
* except for TranslatedNotification.
|
||||
*
|
||||
* For the former, this may be marked using QT_TRANSLATE_NOOP("Notifications","My message")
|
||||
*
|
||||
* For TranslatedNotification, many modules using blocking notifications have their translations stored
|
||||
* in other contexts, and the translations available at the callee function. This kind of notification
|
||||
* provides a very low entry point to move existing blocking notifications into non-intrusive respecting
|
||||
* the user choice (given by NotificationArea/NonIntrusiveNotificationsEnabled).
|
||||
*
|
||||
* Example 1:
|
||||
*
|
||||
* QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Wrong selection"),
|
||||
* QObject::tr("Cannot add a constraint between two external geometries."));
|
||||
*
|
||||
* Can be rewritten as:
|
||||
*
|
||||
* Gui::TranslatedNotification(obj,
|
||||
* QObject::tr("Wrong selection"),
|
||||
* QObject::tr("Cannot add a constraint between two external geometries."));
|
||||
*
|
||||
* Here obj is a DocumentObject and serves to set the Notifier field for the notification.
|
||||
* If the user preference is to see non-intrusive notifications, no pop-up will be shown and the
|
||||
* notification will be shown in the notifications area. If the user preference is to see intrusive
|
||||
* notifications, the pop-up will be shown (and it won't appear on the notification area as as a non-
|
||||
* intrusive notification).
|
||||
*/
|
||||
|
||||
///generic function to send any message provided by Base::LogStyle
|
||||
template <Base::LogStyle type, typename TNotifier, typename TCaption, typename TMessage>
|
||||
inline void Notify(TNotifier && notifier, TCaption && caption, TMessage && message);
|
||||
|
||||
/** Convenience function to notify warnings
|
||||
* The NotificationArea will attempt to find a translation in the "Notifications" context.
|
||||
* This may be marked using QT_TRANSLATE_NOOP("Notifications","My message")
|
||||
*/
|
||||
template <typename TNotifier, typename TCaption, typename TMessage>
|
||||
inline void NotifyWarning(TNotifier && notifier, TCaption && caption, TMessage && message);
|
||||
|
||||
/** Convenience function to notify errors
|
||||
* The NotificationArea will attempt to find a translation in the "Notifications" context.
|
||||
* This may be marked using QT_TRANSLATE_NOOP("Notifications","My message")
|
||||
*/
|
||||
template <typename TNotifier, typename TCaption, typename TMessage>
|
||||
inline void NotifyError(TNotifier && notifier, TCaption && caption, TMessage && message);
|
||||
|
||||
/** Convenience function to notify messages
|
||||
* The NotificationArea will attempt to find a translation in the "Notifications" context.
|
||||
* This may be marked using QT_TRANSLATE_NOOP("Notifications","My message")
|
||||
*/
|
||||
template <typename TNotifier, typename TCaption, typename TMessage>
|
||||
inline void NotifyMessage(TNotifier && notifier, TCaption && caption, TMessage && message);
|
||||
|
||||
/** Convenience function to send already translated user notifications.
|
||||
* No attempt will be made by the NotificationArea to translate them.
|
||||
*/
|
||||
template <typename TNotifier, typename TCaption, typename TMessage>
|
||||
inline void TranslatedNotification(TNotifier && notifier, TCaption && caption, TMessage && message);
|
||||
|
||||
/** Convenience function to send untranslated user notifications.
|
||||
* The NotificationArea will attempt to find a translation in the "Notifications" context.
|
||||
* This may be marked using QT_TRANSLATE_NOOP("Notifications","My message")
|
||||
*/
|
||||
template <typename TNotifier, typename TCaption, typename TMessage>
|
||||
inline void Notification(TNotifier && notifier, TCaption && caption, TMessage && message);
|
||||
} //namespace Gui
|
||||
|
||||
|
||||
template <Base::LogStyle type, typename TNotifier, typename TCaption, typename TMessage>
|
||||
inline void Gui::Notify(TNotifier && notifier, TCaption && caption, TMessage && message)
|
||||
{
|
||||
Base::Reference<ParameterGrp> hGrp = App::GetApplication().GetUserParameter().
|
||||
GetGroup("BaseApp")->GetGroup("Preferences")->
|
||||
GetGroup("NotificationArea");
|
||||
|
||||
bool nonIntrusive = hGrp->GetBool("NonIntrusiveNotificationsEnabled", true);
|
||||
|
||||
if(!nonIntrusive) {
|
||||
if constexpr( type == Base::LogStyle::Warning) {
|
||||
QMessageBox::warning(Gui::getMainWindow(),
|
||||
QCoreApplication::translate("Notifications", caption),
|
||||
QCoreApplication::translate("Notifications", message));
|
||||
}
|
||||
else
|
||||
if constexpr( type == Base::LogStyle::Error) {
|
||||
QMessageBox::critical(Gui::getMainWindow(),
|
||||
QCoreApplication::translate("Notifications", caption),
|
||||
QCoreApplication::translate("Notifications", message));
|
||||
}
|
||||
else
|
||||
if constexpr( type == Base::LogStyle::TranslatedNotification) {
|
||||
QMessageBox::information(Gui::getMainWindow(),
|
||||
caption,
|
||||
message);
|
||||
}
|
||||
else {
|
||||
QMessageBox::information(Gui::getMainWindow(),
|
||||
QCoreApplication::translate("Notifications", caption),
|
||||
QCoreApplication::translate("Notifications", message));
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
||||
if constexpr( type == Base::LogStyle::TranslatedNotification) {
|
||||
// trailing newline is necessary as this may be shown too in a console requiring them (depending on the configuration).
|
||||
auto msg = message.append(QStringLiteral("\n")); // QString
|
||||
|
||||
if constexpr( std::is_base_of_v<App::DocumentObject, std::remove_pointer_t<typename std::decay<TNotifier>::type>> ) {
|
||||
Base::Console().Send<type>(notifier->getFullLabel(), msg.toUtf8());
|
||||
}
|
||||
else {
|
||||
Base::Console().Send<type>(notifier, msg.toUtf8());
|
||||
}
|
||||
}
|
||||
else {
|
||||
// trailing newline is necessary as this may be shown too in a console requiring them (depending on the configuration).
|
||||
auto msg = std::string(message).append("\n");
|
||||
|
||||
if constexpr( std::is_base_of_v<App::DocumentObject, std::remove_pointer_t<typename std::decay<TNotifier>::type>> ) {
|
||||
Base::Console().Send<type>(notifier->getFullLabel(), msg.c_str());
|
||||
}
|
||||
else {
|
||||
Base::Console().Send<type>(notifier, msg.c_str());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
template <typename TNotifier, typename TCaption, typename TMessage>
|
||||
inline void Gui::NotifyWarning(TNotifier && notifier, TCaption && caption, TMessage && message)
|
||||
{
|
||||
Notify<Base::LogStyle::Warning>(std::forward<TNotifier>(notifier),
|
||||
std::forward<TCaption>(caption),
|
||||
std::forward<TMessage>(message));
|
||||
}
|
||||
|
||||
template <typename TNotifier, typename TCaption, typename TMessage>
|
||||
inline void Gui::NotifyError(TNotifier && notifier, TCaption && caption, TMessage && message)
|
||||
{
|
||||
Notify<Base::LogStyle::Error>( std::forward<TNotifier>(notifier),
|
||||
std::forward<TCaption>(caption),
|
||||
std::forward<TMessage>(message));
|
||||
}
|
||||
|
||||
template <typename TNotifier, typename TCaption, typename TMessage>
|
||||
inline void Gui::NotifyMessage(TNotifier && notifier, TCaption && caption, TMessage && message)
|
||||
{
|
||||
Notify<Base::LogStyle::Message>(std::forward<TNotifier>(notifier),
|
||||
std::forward<TCaption>(caption),
|
||||
std::forward<TMessage>(message));
|
||||
}
|
||||
|
||||
template <typename TNotifier, typename TCaption, typename TMessage>
|
||||
inline void Gui::TranslatedNotification(TNotifier && notifier, TCaption && caption, TMessage && message)
|
||||
{
|
||||
Notify<Base::LogStyle::TranslatedNotification>(std::forward<TNotifier>(notifier),
|
||||
std::forward<TCaption>(caption),
|
||||
std::forward<TMessage>(message));
|
||||
}
|
||||
|
||||
template <typename TNotifier, typename TCaption, typename TMessage>
|
||||
inline void Gui::Notification(TNotifier && notifier, TCaption && caption, TMessage && message)
|
||||
{
|
||||
Notify<Base::LogStyle::Notification>(std::forward<TNotifier>(notifier),
|
||||
std::forward<TCaption>(caption),
|
||||
std::forward<TMessage>(message));
|
||||
}
|
||||
|
||||
#endif // GUI_NOTIFICATIONS_H
|
||||
Reference in New Issue
Block a user