Branch data Line data Source code
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 : 3 : static QgsMessageOutput *messageOutputConsole_() 23 : : { 24 : 3 : return new QgsMessageOutputConsole; 25 : 0 : } 26 : : 27 : : // default output creator - console 28 : : MESSAGE_OUTPUT_CREATOR QgsMessageOutput::mMessageOutputCreator = messageOutputConsole_; 29 : : 30 : : 31 : 0 : void QgsMessageOutput::setMessageOutputCreator( MESSAGE_OUTPUT_CREATOR f ) 32 : : { 33 : 0 : mMessageOutputCreator = f; 34 : 0 : } 35 : : 36 : 3 : QgsMessageOutput *QgsMessageOutput::createMessageOutput() 37 : : { 38 : 3 : return mMessageOutputCreator(); 39 : : } 40 : : 41 : 0 : void QgsMessageOutput::showMessage( const QString &title, const QString &message, MessageType msgType ) 42 : : { 43 : 0 : QgsMessageOutput *output = QgsMessageOutput::createMessageOutput(); 44 : 0 : output->setTitle( title ); 45 : 0 : output->setMessage( message, msgType ); 46 : 0 : output->showMessage(); 47 : 0 : } 48 : : 49 : : //////////////////////////////// 50 : : // QgsMessageOutputConsole 51 : : 52 : 3 : void QgsMessageOutputConsole::setMessage( const QString &message, MessageType msgType ) 53 : : { 54 : 3 : mMessage = message; 55 : 3 : mMsgType = msgType; 56 : 3 : } 57 : : 58 : 0 : void QgsMessageOutputConsole::appendMessage( const QString &message ) 59 : : { 60 : 0 : mMessage += message; 61 : 0 : } 62 : : 63 : 3 : void QgsMessageOutputConsole::showMessage( bool ) 64 : : { 65 : 3 : if ( mMsgType == MessageHtml ) 66 : : { 67 : 0 : mMessage.replace( QLatin1String( "<br>" ), QLatin1String( "\n" ) ); 68 : 0 : mMessage.replace( QLatin1String( " " ), QLatin1String( " " ) ); 69 : 0 : mMessage.replace( QRegExp( "</?[^>]+>" ), QString() ); 70 : 0 : } 71 : 3 : QgsMessageLog::logMessage( mMessage, mTitle.isNull() ? QObject::tr( "Console" ) : mTitle ); 72 : 3 : emit destroyed(); 73 : 3 : delete this; 74 : 3 : } 75 : : 76 : 3 : void QgsMessageOutputConsole::setTitle( const QString &title ) 77 : : { 78 : 3 : mTitle = title; 79 : 3 : } 80 : :