summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerchat.h
diff options
context:
space:
mode:
authorVadim ProductEngine <vsavchuk@productengine.com>2011-04-14 00:52:40 +0300
committerVadim ProductEngine <vsavchuk@productengine.com>2011-04-14 00:52:40 +0300
commit7577ec25a066c5bb9b39978e32b8da084b1916d7 (patch)
treeb828f71173063c224982f40710a1c4375354aa4f /indra/newview/llviewerchat.h
parent88a7262340f2fc5085f4ac6600790518d01292d6 (diff)
STORM-1095 FIX Chat preferences > font size should increase size of input text in the chat box.
Submitting on behalf of Jonathan Yap.
Diffstat (limited to 'indra/newview/llviewerchat.h')
-rw-r--r--indra/newview/llviewerchat.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llviewerchat.h b/indra/newview/llviewerchat.h
index 0f15d29f04..c05caf0a95 100644
--- a/indra/newview/llviewerchat.h
+++ b/indra/newview/llviewerchat.h
@@ -35,6 +35,8 @@
class LLViewerChat
{
public:
+ typedef boost::signals2::signal<void (LLFontGL*)> font_change_signal_t;
+
static void getChatColor(const LLChat& chat, LLColor4& r_color);
static void getChatColor(const LLChat& chat, std::string& r_color_name, F32& r_color_alpha);
static LLFontGL* getChatFont();
@@ -42,8 +44,12 @@ public:
static void formatChatMsg(const LLChat& chat, std::string& formated_msg);
static std::string getSenderSLURL(const LLChat& chat, const LLSD& args);
+ static boost::signals2::connection setFontChangedCallback(const font_change_signal_t::slot_type& cb);
+ static void signalChatFontChanged();
+
private:
static std::string getObjectImSLURL(const LLChat& chat, const LLSD& args);
+ static font_change_signal_t sChatFontChangedSignal;
};