Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-10-19 17:16:39 +0000
committerStijn Buys <ingar@osirion.org>2008-10-19 17:16:39 +0000
commit8ccfd7747bddf3fad75b0f358a64e66646b54032 (patch)
tree8d666d7172fced1e310701741b860ed13f400a78 /src/client/chat.h
parent1d580ed36893b24b618ff1e6f9023e497c62498c (diff)
ui_chat and ui_chatsmall
Diffstat (limited to 'src/client/chat.h')
-rw-r--r--src/client/chat.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/client/chat.h b/src/client/chat.h
index 1ea1765..ec8271e 100644
--- a/src/client/chat.h
+++ b/src/client/chat.h
@@ -26,6 +26,10 @@ public:
void toggle();
void event_text(const std::string & text);
+
+ inline bool small() const { return chat_small; }
+
+ void set_small(bool small = true);
protected:
virtual void event_draw();
@@ -35,6 +39,8 @@ protected:
private:
+ bool chat_small;
+
ui::Text chat_log;
ui::ScrollPane *chat_scrollpane;
ui::InputBox *chat_input;