QGIS API Documentation
2.0.1-Dufour
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
src
core
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 <QRegExp>
21
22
static
QgsMessageOutput
*
messageOutputConsole_
()
23
{
24
return
new
QgsMessageOutputConsole
;
25
}
26
27
// default output creator - console
28
MESSAGE_OUTPUT_CREATOR
QgsMessageOutput::mMessageOutputCreator
=
messageOutputConsole_
;
29
30
31
void
QgsMessageOutput::setMessageOutputCreator
(
MESSAGE_OUTPUT_CREATOR
f )
32
{
33
mMessageOutputCreator
= f;
34
}
35
36
QgsMessageOutput
*
QgsMessageOutput::createMessageOutput
()
37
{
38
return
mMessageOutputCreator
();
39
}
40
41
QgsMessageOutput::~QgsMessageOutput
()
42
{
43
}
44
46
// QgsMessageOutputConsole
47
48
QgsMessageOutputConsole::QgsMessageOutputConsole
()
49
: mMessage(
""
)
50
{
51
}
52
53
void
QgsMessageOutputConsole::setMessage
(
const
QString& message,
MessageType
msgType )
54
{
55
mMessage
= message;
56
mMsgType
= msgType;
57
}
58
59
void
QgsMessageOutputConsole::appendMessage
(
const
QString& message )
60
{
61
mMessage
+= message;
62
}
63
64
void
QgsMessageOutputConsole::showMessage
(
bool
)
65
{
66
if
(
mMsgType
==
MessageHtml
)
67
{
68
mMessage
.replace(
"<br>"
,
"\n"
);
69
mMessage
.replace(
" "
,
" "
);
70
mMessage
.replace( QRegExp(
"</?[^>]+>"
),
""
);
71
}
72
QgsMessageLog::logMessage
(
mMessage
,
mTitle
.isNull() ?
QObject::tr
(
"Console"
) :
mTitle
);
73
emit
destroyed
();
74
delete
this
;
75
}
76
77
void
QgsMessageOutputConsole::setTitle
(
const
QString& title )
78
{
79
mTitle
= title;
80
}
Generated on Tue Sep 24 2013 14:41:47 for QGIS API Documentation by
1.8.1.2