From 2e9284951c7364dc766a406099ce3a779773abb1 Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Sun, 9 Nov 2014 14:53:08 +0100 Subject: Improve log formatting * Updated log level detection for current Minecraft versions * Better formatting: using a monospaced font and raw text instead of HTML (fixes #111) --- gui/pages/LogPage.h | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'gui/pages/LogPage.h') diff --git a/gui/pages/LogPage.h b/gui/pages/LogPage.h index 3c86724e..468dcf79 100644 --- a/gui/pages/LogPage.h +++ b/gui/pages/LogPage.h @@ -28,6 +28,7 @@ namespace Ui { class LogPage; } +class QTextCharFormat; class LogPage : public QWidget, public BasePage { @@ -55,15 +56,6 @@ public: } virtual bool shouldDisplay() const; -private: - /** - * @brief write a colored paragraph - * @param data the string - * @param color the css color name - * this will only insert a single paragraph. - * \n are ignored. a real \n is always appended. - */ - void writeColor(QString text, const char *color, const char *background); private slots: /** * @brief write a string @@ -90,4 +82,6 @@ private: bool m_scroll_active = true; int m_saved_offset = 0; bool m_write_active = true; + + QTextCharFormat * defaultFormat; }; -- cgit