diff options
author | callum <none@none> | 2009-10-29 16:49:29 -0700 |
---|---|---|
committer | callum <none@none> | 2009-10-29 16:49:29 -0700 |
commit | b4bd34bd73b2be74afd08785c88b66b2fadd5bfc (patch) | |
tree | 83208a00f6013e5eb7d525a0f1bc8bbe630a69a0 /indra/newview/llfloatertools.h | |
parent | a99493e8d0157a3ff27bc2d1778464bf127a2993 (diff) |
Implementation for DEV-40710 - adds name of media stream to floater tools dialog.
Currently, this means <title> tag for Web page or movie meta-data name for QuickTime move.
Diffstat (limited to 'indra/newview/llfloatertools.h')
-rw-r--r-- | indra/newview/llfloatertools.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llfloatertools.h b/indra/newview/llfloatertools.h index 59acef6071..a3e0cac034 100644 --- a/indra/newview/llfloatertools.h +++ b/indra/newview/llfloatertools.h @@ -51,6 +51,7 @@ class LLRadioGroup; class LLSlider; class LLTabContainer; class LLTextBox; +class LLMediaCtrl; class LLTool; class LLParcelSelection; class LLObjectSelection; @@ -107,6 +108,8 @@ public: void onClickBtnAddMedia(); void onClickBtnEditMedia(); void clearMediaSettings(); + void updateMediaTitle(); + void navigateToTitleMedia( const std::string url ); bool selectedMediaEditable(); private: @@ -182,6 +185,9 @@ public: LLParcelSelectionHandle mParcelSelection; LLObjectSelectionHandle mObjectSelection; + LLMediaCtrl *mTitleMedia; + bool mNeedMediaTitle; + private: BOOL mDirty; |