summaryrefslogtreecommitdiff
path: root/src/gui/windows/emotewindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/windows/emotewindow.h')
-rw-r--r--src/gui/windows/emotewindow.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gui/windows/emotewindow.h b/src/gui/windows/emotewindow.h
index 8ba01f9be..66fb0c83c 100644
--- a/src/gui/windows/emotewindow.h
+++ b/src/gui/windows/emotewindow.h
@@ -57,8 +57,12 @@ class EmoteWindow final : public Window
std::string getSelectedFont() const;
+ int getSelectedTextIndex() const;
+
void clearFont();
+ void clearText();
+
void addListeners(ActionListener *const listener);
void widgetResized(const Event &event) override final;
@@ -74,6 +78,9 @@ class EmoteWindow final : public Window
NamesModel *mFontModel A_NONNULLPOINTER;
ListBox *mFontPage A_NONNULLPOINTER;
ScrollArea *mScrollFontPage A_NONNULLPOINTER;
+ NamesModel *mTextModel A_NONNULLPOINTER;
+ ListBox *mTextPage A_NONNULLPOINTER;
+ ScrollArea *mScrollTextPage A_NONNULLPOINTER;
ImageSet *mImageSet;
};