summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterpathfindingconsole.h
diff options
context:
space:
mode:
authorTodd Stinson <stinson@lindenlab.com>2011-12-16 17:30:12 -0800
committerTodd Stinson <stinson@lindenlab.com>2011-12-16 17:30:12 -0800
commit64acf29c53639cbd3784f5bcc617b02985cbe412 (patch)
treebe289059b8ce2a34fefb6d0436df67e7fdf483ab /indra/newview/llfloaterpathfindingconsole.h
parent6b2df5d57a4d973dea8cac99feb47330ccaa2397 (diff)
Hooking the navmesh and exclusion volumes render states up to the pathfinding console floater.
Diffstat (limited to 'indra/newview/llfloaterpathfindingconsole.h')
-rw-r--r--indra/newview/llfloaterpathfindingconsole.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/indra/newview/llfloaterpathfindingconsole.h b/indra/newview/llfloaterpathfindingconsole.h
index 4c61044b1d..b6107ea64b 100644
--- a/indra/newview/llfloaterpathfindingconsole.h
+++ b/indra/newview/llfloaterpathfindingconsole.h
@@ -31,6 +31,7 @@
#include "llfloater.h"
class LLSD;
+class LLCheckBoxCtrl;
class LLFloaterPathfindingConsole
: public LLFloater
@@ -45,10 +46,19 @@ protected:
private:
// Does its own instance management, so clients not allowed
// to allocate or destroy.
- LLFloaterPathfindingConsole(const LLSD& seed);
+ LLFloaterPathfindingConsole(const LLSD& pSeed);
virtual ~LLFloaterPathfindingConsole();
-
+
+ void onShowNavmeshToggle();
+ void onShowExcludeVolumesToggle();
+ void onShowPathToggle();
+ void onShowWaterPlaneToggle();
void onViewEditLinksetClicked();
+
+ LLCheckBoxCtrl *mShowNavmeshCheckBox;
+ LLCheckBoxCtrl *mShowExcludeVolumesCheckBox;
+ LLCheckBoxCtrl *mShowPathCheckBox;
+ LLCheckBoxCtrl *mShowWaterPlaneCheckBox;
};
#endif // LL_LLFLOATERPATHFINDINGCONSOLE_H