summaryrefslogtreecommitdiff
path: root/indra/newview/llfavoritesbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llfavoritesbar.h')
-rw-r--r--indra/newview/llfavoritesbar.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/indra/newview/llfavoritesbar.h b/indra/newview/llfavoritesbar.h
index 7da33e2f6e..824b396add 100644
--- a/indra/newview/llfavoritesbar.h
+++ b/indra/newview/llfavoritesbar.h
@@ -40,7 +40,12 @@
class LLFavoritesBarCtrl : public LLUICtrl, public LLInventoryObserver
{
public:
- struct Params : public LLUICtrl::Params{};
+ struct Params : public LLInitParam::Block<Params, LLUICtrl::Params>
+ {
+ Optional<std::string> chevron_button_tool_tip;
+ Params();
+ };
+
protected:
LLFavoritesBarCtrl(const Params&);
friend class LLUICtrlFactory;
@@ -69,6 +74,9 @@ protected:
void onButtonRightClick(LLUUID id,LLView* button,S32 x,S32 y,MASK mask);
void doToSelected(const LLSD& userdata);
+ BOOL isClipboardPasteable() const;
+ void pastFromClipboard() const;
+
void showDropDownMenu();
@@ -84,6 +92,8 @@ protected:
LLUUID mSelectedItemID;
LLRect mChevronRect;
+
+ std::string mChevronButtonToolTip;
};