diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-04-22 23:45:44 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-04-27 00:39:47 +0300 |
commit | a220acb45496dfbfb154fa9e16943102eda922fc (patch) | |
tree | 2a00328f379d5b470f9a370914f4e1b6b6db2e33 /indra/newview/llinventorybridge.h | |
parent | f886a438ed11468a90ecca9ba8046a6719f0402c (diff) |
viewer#1300 Inventory favorites basic framework
Diffstat (limited to 'indra/newview/llinventorybridge.h')
-rw-r--r-- | indra/newview/llinventorybridge.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llinventorybridge.h b/indra/newview/llinventorybridge.h index 6f06f3b36d..bbc601b34d 100644 --- a/indra/newview/llinventorybridge.h +++ b/indra/newview/llinventorybridge.h @@ -86,6 +86,7 @@ public: //-------------------------------------------------------------------- virtual const LLUUID& getUUID() const { return mUUID; } virtual const LLUUID& getThumbnailUUID() const { return LLUUID::null; } + virtual bool getIsFavorite() const { return false; } virtual void clearDisplayName() { mDisplayName.clear(); } virtual void restoreItem() {} virtual void restoreToWorld() {} @@ -256,6 +257,7 @@ public: LLViewerInventoryItem* getItem() const; virtual const LLUUID& getThumbnailUUID() const; + virtual bool getIsFavorite() const; protected: BOOL confirmRemoveItem(const LLSD& notification, const LLSD& response); @@ -302,6 +304,7 @@ public: virtual std::string getLabelSuffix() const; virtual LLFontGL::StyleFlags getLabelStyle() const; virtual const LLUUID& getThumbnailUUID() const; + virtual bool getIsFavorite() const; void setShowDescendantsCount(bool show_count) {mShowDescendantsCount = show_count;} |