diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llui/llfloater.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/linden/indra/llui/llfloater.h b/linden/indra/llui/llfloater.h index cd45762..8b610e3 100644 --- a/linden/indra/llui/llfloater.h +++ b/linden/indra/llui/llfloater.h | |||
@@ -212,6 +212,10 @@ public: | |||
212 | static BOOL getEditModeEnabled(); | 212 | static BOOL getEditModeEnabled(); |
213 | static LLMultiFloater* getFloaterHost() {return sHostp; } | 213 | static LLMultiFloater* getFloaterHost() {return sHostp; } |
214 | 214 | ||
215 | static void show(LLFloater* floaterp); | ||
216 | static void hide(LLFloater* floaterp); | ||
217 | static BOOL visible(LLFloater* floaterp); | ||
218 | |||
215 | static LLFloater* getFloaterByHandle(LLViewHandle handle); | 219 | static LLFloater* getFloaterByHandle(LLViewHandle handle); |
216 | 220 | ||
217 | protected: | 221 | protected: |
@@ -279,7 +283,6 @@ protected: | |||
279 | std::vector<LLView*> mMinimizedHiddenChildren; | 283 | std::vector<LLView*> mMinimizedHiddenChildren; |
280 | }; | 284 | }; |
281 | 285 | ||
282 | |||
283 | ///////////////////////////////////////////////////////////// | 286 | ///////////////////////////////////////////////////////////// |
284 | // LLFloaterView | 287 | // LLFloaterView |
285 | // Parent of all floating panels | 288 | // Parent of all floating panels |
@@ -354,8 +357,8 @@ public: | |||
354 | LLMultiFloater(); | 357 | LLMultiFloater(); |
355 | LLMultiFloater(LLTabContainerCommon::TabPosition tab_pos); | 358 | LLMultiFloater(LLTabContainerCommon::TabPosition tab_pos); |
356 | LLMultiFloater(const LLString& name); | 359 | LLMultiFloater(const LLString& name); |
357 | LLMultiFloater(const LLString& name, const LLRect& rect, LLTabContainer::TabPosition tab_pos = LLTabContainer::TOP, BOOL auto_resize = FALSE); | 360 | LLMultiFloater(const LLString& name, const LLRect& rect, LLTabContainer::TabPosition tab_pos = LLTabContainer::TOP, BOOL auto_resize = TRUE); |
358 | LLMultiFloater(const LLString& name, const LLString& rect_control, LLTabContainer::TabPosition tab_pos = LLTabContainer::TOP, BOOL auto_resize = FALSE); | 361 | LLMultiFloater(const LLString& name, const LLString& rect_control, LLTabContainer::TabPosition tab_pos = LLTabContainer::TOP, BOOL auto_resize = TRUE); |
359 | virtual ~LLMultiFloater(); | 362 | virtual ~LLMultiFloater(); |
360 | 363 | ||
361 | virtual BOOL postBuild(); | 364 | virtual BOOL postBuild(); |
@@ -416,3 +419,4 @@ extern LLFloaterView* gFloaterView; | |||
416 | 419 | ||
417 | #endif // LL_FLOATER_H | 420 | #endif // LL_FLOATER_H |
418 | 421 | ||
422 | |||