QGIS API Documentation
3.20.0-Odense (decaadbb31)
|
Default implementation of message output interface. More...
#include <qgsmessageoutput.h>
Signals | |
void | destroyed () |
signals that object will be destroyed and shouldn't be used anymore More... | |
Public Member Functions | |
QgsMessageOutputConsole ()=default | |
Constructor for QgsMessageOutputConsole. More... | |
void | appendMessage (const QString &message) override |
message to be appended to the current text More... | |
void | setMessage (const QString &message, MessageType msgType) override |
Sets message, it won't be displayed until. More... | |
void | setTitle (const QString &title) override |
Sets title for the messages. More... | |
void | showMessage (bool blocking=true) override |
sends the message to the standard output More... | |
Public Member Functions inherited from QgsMessageOutput | |
virtual | ~QgsMessageOutput ()=default |
Additional Inherited Members | |
Public Types inherited from QgsMessageOutput | |
enum | MessageType { MessageText , MessageHtml } |
message can be in plain text or in html format More... | |
Static Public Member Functions inherited from QgsMessageOutput | |
static QgsMessageOutput * | createMessageOutput () |
function that returns new class derived from QgsMessageOutput (don't forget to delete it then if showMessage(bool) is not used showMessage(bool) deletes the instance) More... | |
static void | setMessageOutputCreator (MESSAGE_OUTPUT_CREATOR f) |
sets function that will be used to create message output More... | |
static void | showMessage (const QString &title, const QString &message, MessageType msgType) |
Display the blocking message to the user. More... | |
Default implementation of message output interface.
This class outputs messages to the standard output. Therefore it might be the right choice for apps without GUI.
Definition at line 98 of file qgsmessageoutput.h.
|
default |
Constructor for QgsMessageOutputConsole.
|
overridevirtual |
message to be appended to the current text
Implements QgsMessageOutput.
Definition at line 58 of file qgsmessageoutput.cpp.
|
signal |
signals that object will be destroyed and shouldn't be used anymore
|
overridevirtual |
Sets message, it won't be displayed until.
Implements QgsMessageOutput.
Definition at line 52 of file qgsmessageoutput.cpp.
|
overridevirtual |
Sets title for the messages.
Implements QgsMessageOutput.
Definition at line 76 of file qgsmessageoutput.cpp.
|
overridevirtual |
sends the message to the standard output
Implements QgsMessageOutput.
Definition at line 63 of file qgsmessageoutput.cpp.