PageRenderTime 65ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/indra/newview/llviewercontrollistener.h

https://bitbucket.org/lindenlab/viewer-beta/
C++ Header | 50 lines | 17 code | 6 blank | 27 comment | 0 complexity | 25e02b5d9b17a4c6fa0820eef9b0b053 MD5 | raw file
Possible License(s): LGPL-2.1
  1. /**
  2. * @file llviewercontrollistener.h
  3. * @author Brad Kittenbrink
  4. * @date 2009-07-09
  5. * @brief Event API for subset of LLViewerControl methods
  6. *
  7. * $LicenseInfo:firstyear=2009&license=viewerlgpl$
  8. * Second Life Viewer Source Code
  9. * Copyright (C) 2010, Linden Research, Inc.
  10. *
  11. * This library is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU Lesser General Public
  13. * License as published by the Free Software Foundation;
  14. * version 2.1 of the License only.
  15. *
  16. * This library is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * Lesser General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Lesser General Public
  22. * License along with this library; if not, write to the Free Software
  23. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  24. *
  25. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  26. * $/LicenseInfo$
  27. */
  28. #ifndef LL_LLVIEWERCONTROLLISTENER_H
  29. #define LL_LLVIEWERCONTROLLISTENER_H
  30. #include "lleventapi.h"
  31. class LLControlGroup;
  32. class LLSD;
  33. class LLViewerControlListener : public LLEventAPI
  34. {
  35. public:
  36. LLViewerControlListener();
  37. private:
  38. static void set(LLSD const & event_data);
  39. static void toggle(LLSD const & event_data);
  40. static void get(LLSD const & event_data);
  41. static void groups(LLSD const & event_data);
  42. static void vars(LLSD const & event_data);
  43. };
  44. #endif // LL_LLVIEWERCONTROLLISTENER_H