summaryrefslogtreecommitdiff
path: root/src/gui/emotewindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/emotewindow.h')
-rw-r--r--src/gui/emotewindow.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/gui/emotewindow.h b/src/gui/emotewindow.h
index 69a646bd8..140ed4c36 100644
--- a/src/gui/emotewindow.h
+++ b/src/gui/emotewindow.h
@@ -25,6 +25,8 @@
#include <guichan/mouselistener.hpp>
+class ColorModel;
+class ColorPage;
class EmotePage;
class ScrollArea;
class TabbedArea;
@@ -46,12 +48,18 @@ class EmoteWindow final : public Window
void clearEmote();
+ std::string getSelectedColor() const;
+
+ void clearColor();
+
void addListeners(gcn::ActionListener *const listener);
private:
TabbedArea *mTabs;
EmotePage *mEmotePage;
- ScrollArea *mScrollEmotePage;
+ ColorModel *mColorModel;
+ ColorPage *mColorPage;
+ ScrollArea *mScrollColorPage;
};
extern EmoteWindow *emoteWindow;