diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2021-06-17 20:37:06 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2021-06-17 20:37:06 +0300 |
commit | bc609f964b13141301aca9d29b9ceb5f9a541bf9 (patch) | |
tree | 4586ed5e7e9fff02754906105367f8d988ddbec8 /indra/newview/llfloaterperformance.h | |
parent | 0914f5c48f777705bdc57188e7372707f7977e5a (diff) |
SL-15297 WIP Implement performance floater - updated UI
Diffstat (limited to 'indra/newview/llfloaterperformance.h')
-rw-r--r-- | indra/newview/llfloaterperformance.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/indra/newview/llfloaterperformance.h b/indra/newview/llfloaterperformance.h index 0cba07f21e..1facfe9225 100644 --- a/indra/newview/llfloaterperformance.h +++ b/indra/newview/llfloaterperformance.h @@ -37,6 +37,7 @@ public: virtual ~LLFloaterPerformance(); /*virtual*/ BOOL postBuild(); + /*virtual*/ void draw(); void showSelectedPanel(LLPanel* selected_panel); void showMainPanel(); @@ -46,6 +47,7 @@ public: private: void initBackBtn(LLPanel* panel); void populateHUDList(); + void populateObjectList(); void populateNearbyList(); void onClickAdvanced(); @@ -55,15 +57,20 @@ private: void updateMaxComplexity(); void updateComplexityText(); + void updateNearbyComplexityDesc(); + LLPanel* mMainPanel; LLPanel* mTroubleshootingPanel; LLPanel* mNearbyPanel; - LLPanel* mScriptsPanel; + LLPanel* mComplexityPanel; LLPanel* mHUDsPanel; - LLPanel* mPreferencesPanel; + LLPanel* mSettingsPanel; LLNameListCtrl* mHUDList; + LLNameListCtrl* mObjectList; LLNameListCtrl* mNearbyList; + LLTimer* mUpdateTimer; + boost::signals2::connection mComplexityChangedSignal; }; |