QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgsmessageoutput.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsmessageoutput.h - interface for showing messages
3 ----------------------
4 begin : April 2006
5 copyright : (C) 2006 by Martin Dobias
6 email : wonder.sk at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#include "qgsmessageoutput.h"
17#include "qgslogger.h"
18#include "qgsmessagelog.h"
19
20#include <QRegularExpression>
21
22static QgsMessageOutput *messageOutputConsole_()
23{
24 return new QgsMessageOutputConsole;
25}
26
27// default output creator - console
28MESSAGE_OUTPUT_CREATOR QgsMessageOutput::mMessageOutputCreator = messageOutputConsole_;
29
30
32{
33 mMessageOutputCreator = f;
34}
35
37{
38 return mMessageOutputCreator();
39}
40
41void QgsMessageOutput::showMessage( const QString &title, const QString &message, MessageType msgType )
42{
44 output->setTitle( title );
45 output->setMessage( message, msgType );
46 output->showMessage();
47}
48
50// QgsMessageOutputConsole
51
52void QgsMessageOutputConsole::setMessage( const QString &message, MessageType msgType )
53{
54 mMessage = message;
55 mMsgType = msgType;
56}
57
58void QgsMessageOutputConsole::appendMessage( const QString &message )
59{
60 mMessage += message;
61}
62
64{
65 if ( mMsgType == MessageHtml )
66 {
67 mMessage.replace( QLatin1String( "<br>" ), QLatin1String( "\n" ) );
68 mMessage.replace( QLatin1String( "&nbsp;" ), QLatin1String( " " ) );
69 const thread_local QRegularExpression tagRX( QStringLiteral( "</?[^>]+>" ) );
70 mMessage.replace( tagRX, QString() );
71 }
72 QgsMessageLog::logMessage( mMessage, mTitle.isNull() ? QObject::tr( "Console" ) : mTitle );
73 emit destroyed();
74 delete this;
75}
76
77void QgsMessageOutputConsole::setTitle( const QString &title )
78{
79 mTitle = title;
80}
81
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true)
Adds a message to the log instance (and creates it if necessary).
Default implementation of message output interface.
void setMessage(const QString &message, MessageType msgType) override
Sets message, it won't be displayed until.
void setTitle(const QString &title) override
Sets title for the messages.
void destroyed()
signals that object will be destroyed and shouldn't be used anymore
void appendMessage(const QString &message) override
message to be appended to the current text
void showMessage(bool blocking=true) override
sends the message to the standard output
Interface for showing messages from QGIS in GUI independent way.
MessageType
message can be in plain text or in html format
virtual void showMessage(bool blocking=true)=0
display the message to the user and deletes itself
static QgsMessageOutput * createMessageOutput()
function that returns new class derived from QgsMessageOutput (don't forget to delete it then if show...
static void setMessageOutputCreator(MESSAGE_OUTPUT_CREATOR f)
sets function that will be used to create message output
virtual void setMessage(const QString &message, MessageType msgType)=0
Sets message, it won't be displayed until.
virtual void setTitle(const QString &title)=0
Sets title for the messages.
QgsMessageOutput *(* MESSAGE_OUTPUT_CREATOR)()