diff options
author | Todd Stinson <stinson@lindenlab.com> | 2011-12-19 16:36:00 -0800 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2011-12-19 16:36:00 -0800 |
commit | 9897c4de69c57ddeae6b94a857e532c0552865cf (patch) | |
tree | 33161afdc325f9da1bb87abe6bc2e3022349ee74 /indra/newview/llfloaterpathfindingconsole.h | |
parent | 101a674c73ad3007f9a40fc4593df1d0eaa4fd99 (diff) |
Stubbing out functionality for catching the character width slider changes.
Diffstat (limited to 'indra/newview/llfloaterpathfindingconsole.h')
-rw-r--r-- | indra/newview/llfloaterpathfindingconsole.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llfloaterpathfindingconsole.h b/indra/newview/llfloaterpathfindingconsole.h index f5af94fa5a..e21d69c1eb 100644 --- a/indra/newview/llfloaterpathfindingconsole.h +++ b/indra/newview/llfloaterpathfindingconsole.h @@ -34,6 +34,7 @@ class LLSD;
class LLCheckBoxCtrl;
class LLRadioGroup;
+class LLSliderCtrl;
class LLFloaterPathfindingConsole
: public LLFloater
@@ -72,10 +73,12 @@ private: void onShowWaterPlaneToggle();
void onRegionOverlayDisplaySwitch();
void onPathSelectionSwitch();
+ void onCharacterWidthSet();
void onViewEditLinksetClicked();
ERegionOverlayDisplay getRegionOverlayDisplay() const;
- EPathSelectionState getPathSelectionState() const;
+ EPathSelectionState getPathSelectionState() const;
+ F32 getCharacterWidth() const;
LLCheckBoxCtrl *mShowNavmeshCheckBox;
LLCheckBoxCtrl *mShowExcludeVolumesCheckBox;
@@ -83,6 +86,7 @@ private: LLCheckBoxCtrl *mShowWaterPlaneCheckBox;
LLRadioGroup *mRegionOverlayDisplayRadioGroup;
LLRadioGroup *mPathSelectionRadioGroup;
+ LLSliderCtrl *mCharacterWidthSlider;
LLNavMeshDownloadObserver mNavmeshDownloadObserver;
};
|