summaryrefslogtreecommitdiff
path: root/indra/newview/llfloateremojipicker.h
diff options
context:
space:
mode:
authorAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2023-07-06 09:33:22 +0200
committerAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2023-07-06 09:33:22 +0200
commitdeb394e2075e031bfe1472fdc3bc638360683c85 (patch)
tree785498b0f18534470d72aebeb73eb4151f2c194b /indra/newview/llfloateremojipicker.h
parent18039655ed91e87db1aca9f4d782e65725e30f12 (diff)
SL-19951 Delete unused UI elements (old design)
Diffstat (limited to 'indra/newview/llfloateremojipicker.h')
-rw-r--r--indra/newview/llfloateremojipicker.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/indra/newview/llfloateremojipicker.h b/indra/newview/llfloateremojipicker.h
index 68c694d89a..b36e09fd5b 100644
--- a/indra/newview/llfloateremojipicker.h
+++ b/indra/newview/llfloateremojipicker.h
@@ -55,8 +55,6 @@ public:
virtual void closeFloater(bool app_quitting = false) override;
private:
- void fillEmojis();
- void fillEmojiList();
void fillEmojiGrid();
bool matchesCategory(const LLEmojiDescriptor* descr);
@@ -70,9 +68,6 @@ private:
void onEmojiMouseEnter(LLUICtrl* ctrl);
void onEmojiMouseLeave(LLUICtrl* ctrl);
void onEmojiMouseClick(LLUICtrl* ctrl, MASK mask);
- void onEmojiSelect();
- void onEmojiEmpty();
- void onEmojiPick();
void selectGridIcon(LLUICtrl* ctrl);
void unselectGridIcon(LLUICtrl* ctrl);
@@ -81,7 +76,6 @@ private:
class LLComboBox* mCategory { nullptr };
class LLLineEditor* mSearch { nullptr };
- class LLScrollListCtrl* mEmojiList { nullptr };
class LLScrollContainer* mEmojiScroll { nullptr };
class LLScrollingPanelList* mEmojiGrid { nullptr };
class LLButton* mPreviewEmoji { nullptr };
@@ -91,12 +85,11 @@ private:
close_callback_t mFloaterCloseCallback;
S32 mRecentGridWidth { 0 };
+ S32 mRecentMaxIcons { 0 };
LLUICtrl* mHoveredIcon { nullptr };
static std::string mSelectedCategory;
static std::string mSearchPattern;
- static int mSelectedEmojiIndex;
- static bool mUseGrid;
};
#endif