summaryrefslogtreecommitdiff
path: root/indra/newview/llfloatermap.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llfloatermap.h')
-rw-r--r--indra/newview/llfloatermap.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/indra/newview/llfloatermap.h b/indra/newview/llfloatermap.h
new file mode 100644
index 0000000000..00a483d17c
--- /dev/null
+++ b/indra/newview/llfloatermap.h
@@ -0,0 +1,50 @@
+/**
+ * @file llfloatermap.h
+ * @brief The "mini-map" or radar in the upper right part of the screen.
+ *
+ * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+#ifndef LL_LLFLOATERMAP_H
+#define LL_LLFLOATERMAP_H
+
+#include "llfloater.h"
+
+class LLNetMap;
+class LLSliderCtrl;
+class LLStatGraph;
+class LLTextBox;
+class LLUICtrl;
+class LLViewerImage;
+
+//
+// Classes
+//
+class LLFloaterMap
+: public LLFloater
+{
+public:
+ LLFloaterMap(const std::string& name);
+ virtual ~LLFloaterMap();
+
+ static void toggle(void*);
+
+ /*virtual*/ void setVisible(BOOL visible);
+ /*virtual*/ void draw();
+ /*virtual*/ void onClose(bool app_quitting);
+ /*virtual*/ BOOL canClose();
+
+protected:
+ LLNetMap* mMap;
+};
+
+
+//
+// Globals
+//
+
+extern LLFloaterMap *gFloaterMap;
+
+
+#endif // LL_LLFLOATERMAP_H