summaryrefslogtreecommitdiff
path: root/src/gui/emotewindow.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-08-07 20:25:56 +0300
committerAndrei Karas <akaras@inbox.ru>2013-08-07 20:25:56 +0300
commitbd7052d90ce2c493f8f93d2be46625bb8297ad79 (patch)
tree4898d03f613629dcf56ae2b5a2160501a90f4388 /src/gui/emotewindow.h
parentf34f096ee0f3c2e66eec7dc024dd18a74698840f (diff)
downloadplus-bd7052d90ce2c493f8f93d2be46625bb8297ad79.tar.gz
plus-bd7052d90ce2c493f8f93d2be46625bb8297ad79.tar.bz2
plus-bd7052d90ce2c493f8f93d2be46625bb8297ad79.tar.xz
plus-bd7052d90ce2c493f8f93d2be46625bb8297ad79.zip
Add font tab into chat emotes window.
Diffstat (limited to 'src/gui/emotewindow.h')
-rw-r--r--src/gui/emotewindow.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gui/emotewindow.h b/src/gui/emotewindow.h
index fd9969630..db83b8b39 100644
--- a/src/gui/emotewindow.h
+++ b/src/gui/emotewindow.h
@@ -28,6 +28,8 @@
class ColorModel;
class ColorPage;
class EmotePage;
+class ListBox;
+class NamesModel;
class ScrollArea;
class TabbedArea;
@@ -52,6 +54,10 @@ class EmoteWindow final : public Window
void clearColor();
+ std::string getSelectedFont() const;
+
+ void clearFont();
+
void addListeners(gcn::ActionListener *const listener);
void widgetResized(const gcn::Event &event) override;
@@ -62,6 +68,9 @@ class EmoteWindow final : public Window
ColorModel *mColorModel;
ColorPage *mColorPage;
ScrollArea *mScrollColorPage;
+ NamesModel *mFontModel;
+ ListBox *mFontPage;
+ ScrollArea *mScrollFontPage;
};
extern EmoteWindow *emoteWindow;