summaryrefslogtreecommitdiffstats
path: root/gui/pages/LogPage.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2014-11-09 14:53:08 +0100
committerPetr Mrázek <peterix@gmail.com>2014-11-09 14:53:08 +0100
commit2e9284951c7364dc766a406099ce3a779773abb1 (patch)
tree67c5ac688edc42027e7815bd1d5614c3d1458a9f /gui/pages/LogPage.h
parentf9a7c1cf216a464c922ca47a60a6f44ebd7decc9 (diff)
downloadMultiMC-2e9284951c7364dc766a406099ce3a779773abb1.tar
MultiMC-2e9284951c7364dc766a406099ce3a779773abb1.tar.gz
MultiMC-2e9284951c7364dc766a406099ce3a779773abb1.tar.lz
MultiMC-2e9284951c7364dc766a406099ce3a779773abb1.tar.xz
MultiMC-2e9284951c7364dc766a406099ce3a779773abb1.zip
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)
Diffstat (limited to 'gui/pages/LogPage.h')
-rw-r--r--gui/pages/LogPage.h12
1 files changed, 3 insertions, 9 deletions
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;
};