diff options
author | Richard Linden <none@none> | 2010-08-12 12:20:38 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-08-12 12:20:38 -0700 |
commit | bd897431e14aff091d5f45425816ddec4b2538c7 (patch) | |
tree | 392254bc651d16138143371c87341759e6595011 /indra/newview/llfirstuse.h | |
parent | 41fe9750c82605ccfbaf8f9b0f08b9068de702d3 (diff) |
remaining hints defined
Diffstat (limited to 'indra/newview/llfirstuse.h')
-rw-r--r-- | indra/newview/llfirstuse.h | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/indra/newview/llfirstuse.h b/indra/newview/llfirstuse.h index ca7290fe17..abf7d9836e 100644 --- a/indra/newview/llfirstuse.h +++ b/indra/newview/llfirstuse.h @@ -76,6 +76,9 @@ object or from inventory. 14. First time you create/edit a sculpted prim. */ +class LLNotification; + + class LLFirstUse { public: @@ -88,14 +91,19 @@ public: static void resetFirstUse(); static void useOverrideKeys(); - static void otherAvatarChat(); - static void sit(); - static void inventoryOffer(); - + static void otherAvatarChat(bool enable = true); + static void sit(bool enable = true); + static void notUsingDestinationGuide(bool enable = true); + static void notUsingSidePanel(bool enable = true); + static void notMoving(bool enable = true); + static void inventoryOffer(bool enable = true); + static void receiveLindens(bool enable = true); static void useSandbox(); protected: + static void firstUseNotification(const std::string& control_var, bool enable, const std::string& notification_name, LLSD args = LLSD(), LLSD payload = LLSD()); static std::set<std::string> sConfigVariables; + static std::map<std::string, boost::shared_ptr<LLNotification> > sNotifications; }; #endif |