Interface class for a simple message logger. More...
Public Member Functions | |
virtual void | debug (const QString &line, const QColor &color=QColor())=0 |
Log a line of debug text. More... | |
virtual void | line (const QString &line, const QColor &color=QColor())=0 |
Log a line of text. More... | |
virtual void | text (const QString &text)=0 |
Log text. More... | |
Interface class for a simple message logger.
|
pure virtual |
Log text.
[in] | text | Text to log. |
Implemented in QtlMovieAction, QtlPlainTextLogger, QtlStdoutLogger, and QtlNullLogger.
|
pure virtual |
Log a line of text.
[in] | line | Line to log. No need to contain a trailing new-line character. |
[in] | color | When a valid color is passed, try to display the text in this color. |
Implemented in QtlMovieAction, QtlStdoutLogger, QtlPlainTextLogger, and QtlNullLogger.
|
pure virtual |
Log a line of debug text.
[in] | line | Line to log. No need to contain a trailing new-line character. |
[in] | color | When a valid color is passed, try to display the text in this color. |
Implemented in QtlMovieAction, QtlStdoutLogger, QtlPlainTextLogger, and QtlNullLogger.