summaryrefslogtreecommitdiff
path: root/indra/newview/llinventorygallery.h
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-06-02 22:48:57 +0300
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-06-02 22:48:57 +0300
commit8a33d65e984431d47f260b2cacbfc20ed4f8124c (patch)
tree7e9ea9fe8d0e85521df78a807cbc85c3daf370aa /indra/newview/llinventorygallery.h
parent07fc011e209ab24069d06df961a000dc7d6de3cf (diff)
SL-19815 Suppors Page Up, Page Down, Home, End and Delete
Diffstat (limited to 'indra/newview/llinventorygallery.h')
-rw-r--r--indra/newview/llinventorygallery.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/indra/newview/llinventorygallery.h b/indra/newview/llinventorygallery.h
index 7e4ed9725b..de0cba6e63 100644
--- a/indra/newview/llinventorygallery.h
+++ b/indra/newview/llinventorygallery.h
@@ -73,12 +73,13 @@ public:
LLInventoryGallery(const LLInventoryGallery::Params& params = getDefaultParams());
~LLInventoryGallery();
- BOOL postBuild();
+ BOOL postBuild() override;
void initGallery();
- void draw();
+ void draw() override;
BOOL handleDragAndDrop(S32 x, S32 y, MASK mask, BOOL drop, EDragAndDropType cargo_type,
- void* cargo_data, EAcceptance* accept, std::string& tooltip_msg);
- BOOL handleRightMouseDown(S32 x, S32 y, MASK mask);
+ void* cargo_data, EAcceptance* accept, std::string& tooltip_msg) override;
+ BOOL handleRightMouseDown(S32 x, S32 y, MASK mask) override;
+ BOOL handleKeyHere(KEY key, MASK mask) override;
void setFilterSubString(const std::string& string);
std::string getFilterSubString() { return mFilterSubString; }