diff options
Diffstat (limited to 'indra/newview/llfloaterevent.h')
-rw-r--r-- | indra/newview/llfloaterevent.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/indra/newview/llfloaterevent.h b/indra/newview/llfloaterevent.h new file mode 100644 index 0000000000..436b2a9f75 --- /dev/null +++ b/indra/newview/llfloaterevent.h @@ -0,0 +1,39 @@ +/** + * @file llfloaterevent.h + * @brief LLFloaterEvent class implementation + * + * Copyright (c) 2002-$CurrentYear$, Linden Research, Inc. + * $License$ + */ + +/** +* Event information as shown in a floating window from a secondlife:// url. +* Just a wrapper for LLPanelEvent. +*/ + +#ifndef LL_LLFLOATEREVENT_H +#define LL_LLFLOATEREVENT_H + +#include "llfloater.h" + +class LLPanelEvent; + +class LLFloaterEventInfo : public LLFloater +{ +public: + LLFloaterEventInfo(const std::string& name, const U32 event_id ); + /*virtual*/ ~LLFloaterEventInfo(); + + void displayEventInfo(const U32 event_id); + + static LLFloaterEventInfo* show(const U32 event_id); + + static void* createEventDetail(void* userdata); + +private: + U32 mEventID; // for which event is this window? + LLPanelEvent* mPanelEventp; + +}; + +#endif // LL_LLFLOATEREVENT_H |