llradiogroup.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:4k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llradiogroup.h
  3.  * @brief LLRadioGroup base class
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #ifndef LL_LLRADIOGROUP_H
  33. #define LL_LLRADIOGROUP_H
  34. #include "lluictrl.h"
  35. #include "llcheckboxctrl.h"
  36. #include "llctrlselectioninterface.h"
  37. /*
  38.  * An invisible view containing multiple mutually exclusive toggling 
  39.  * buttons (usually radio buttons).  Automatically handles the mutex
  40.  * condition by highlighting only one button at a time.
  41.  */
  42. class LLRadioGroup
  43. : public LLUICtrl, public LLCtrlSelectionInterface
  44. {
  45. public:
  46. struct ItemParams : public LLInitParam::Block<ItemParams, LLCheckBoxCtrl::Params>
  47. {
  48. Optional<LLSD> value;
  49. ItemParams();
  50. };
  51. struct Params : public LLInitParam::Block<Params, LLUICtrl::Params>
  52. {
  53. Optional<bool> has_border;
  54. Multiple<ItemParams, AtLeast<1> > items;
  55. Params();
  56. };
  57. protected:
  58. LLRadioGroup(const Params&);
  59. friend class LLUICtrlFactory;
  60. public:
  61. /*virtual*/ void initFromParams(const Params&);
  62. virtual ~LLRadioGroup();
  63. virtual BOOL postBuild();
  64. virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask);
  65. virtual BOOL handleKeyHere(KEY key, MASK mask);
  66. void setIndexEnabled(S32 index, BOOL enabled);
  67. // return the index value of the selected item
  68. S32 getSelectedIndex() const { return mSelectedIndex; }
  69. // set the index value programatically
  70. BOOL setSelectedIndex(S32 index, BOOL from_event = FALSE);
  71. // Accept and retrieve strings of the radio group control names
  72. virtual void setValue(const LLSD& value );
  73. virtual LLSD getValue() const;
  74. // Update the control as needed.  Userdata must be a pointer to the button.
  75. void onClickButton(LLUICtrl* clicked_radio);
  76. //========================================================================
  77. LLCtrlSelectionInterface* getSelectionInterface() { return (LLCtrlSelectionInterface*)this; };
  78. // LLCtrlSelectionInterface functions
  79. /*virtual*/ S32 getItemCount() const   { return mRadioButtons.size(); }
  80. /*virtual*/ BOOL getCanSelect() const { return TRUE; }
  81. /*virtual*/ BOOL selectFirstItem() { return setSelectedIndex(0); }
  82. /*virtual*/ BOOL selectNthItem( S32 index ) { return setSelectedIndex(index); }
  83. /*virtual*/ BOOL selectItemRange( S32 first, S32 last ) { return setSelectedIndex(first); }
  84. /*virtual*/ S32 getFirstSelectedIndex() const { return getSelectedIndex(); }
  85. /*virtual*/ BOOL setCurrentByID( const LLUUID& id );
  86. /*virtual*/ LLUUID getCurrentID() const; // LLUUID::null if no items in menu
  87. /*virtual*/ BOOL setSelectedByValue(const LLSD& value, BOOL selected);
  88. /*virtual*/ LLSD getSelectedValue();
  89. /*virtual*/ BOOL isSelected(const LLSD& value) const;
  90. /*virtual*/ BOOL operateOnSelection(EOperation op);
  91. /*virtual*/ BOOL operateOnAll(EOperation op);
  92. private:
  93. const LLFontGL* mFont;
  94. S32 mSelectedIndex;
  95. typedef std::vector<class LLRadioCtrl*> button_list_t;
  96. button_list_t mRadioButtons;
  97. BOOL mHasBorder;
  98. };
  99. #endif