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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llscrolllistitem.h
  3.  * @brief Scroll lists are composed of rows (items), each of which 
  4.  * contains columns (cells).
  5.  *
  6.  * $LicenseInfo:firstyear=2007&license=viewergpl$
  7.  * 
  8.  * Copyright (c) 2007-2010, Linden Research, Inc.
  9.  * 
  10.  * Second Life Viewer Source Code
  11.  * The source code in this file ("Source Code") is provided by Linden Lab
  12.  * to you under the terms of the GNU General Public License, version 2.0
  13.  * ("GPL"), unless you have obtained a separate licensing agreement
  14.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  15.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  16.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  17.  * 
  18.  * There are special exceptions to the terms and conditions of the GPL as
  19.  * it is applied to this Source Code. View the full text of the exception
  20.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  21.  * online at
  22.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  23.  * 
  24.  * By copying, modifying or distributing this software, you acknowledge
  25.  * that you have read and understood your obligations described above,
  26.  * and agree to abide by those obligations.
  27.  * 
  28.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  29.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  30.  * COMPLETENESS OR PERFORMANCE.
  31.  * $/LicenseInfo$
  32.  */
  33. #ifndef LLSCROLLLISTITEM_H
  34. #define LLSCROLLLISTITEM_H
  35. #include "llpointer.h" // LLPointer<>
  36. #include "llsd.h"
  37. #include "v4color.h"
  38. #include "llinitparam.h"
  39. #include "llscrolllistcell.h"
  40. #include <vector>
  41. class LLCoordGL;
  42. class LLCheckBoxCtrl;
  43. class LLResizeBar;
  44. class LLScrollListCtrl;
  45. class LLScrollColumnHeader;
  46. class LLUIImage;
  47. //---------------------------------------------------------------------------
  48. // LLScrollListItem
  49. //---------------------------------------------------------------------------
  50. class LLScrollListItem
  51. {
  52. friend class LLScrollListCtrl;
  53. public:
  54. struct Params : public LLInitParam::Block<Params>
  55. {
  56. Optional<bool> enabled;
  57. Optional<void*> userdata;
  58. Optional<LLSD> value;
  59. Ignored name; // use for localization tools
  60. Ignored type; 
  61. Ignored length; 
  62. Multiple<LLScrollListCell::Params> columns;
  63. Params()
  64. : enabled("enabled", true),
  65. value("value"),
  66. name("name"),
  67. type("type"),
  68. length("length"),
  69. columns("columns")
  70. {
  71. addSynonym(columns, "column");
  72. addSynonym(value, "id");
  73. }
  74. };
  75. virtual ~LLScrollListItem();
  76. void setSelected( BOOL b ) { mSelected = b; }
  77. BOOL getSelected() const { return mSelected; }
  78. void setEnabled( BOOL b ) { mEnabled = b; }
  79. BOOL getEnabled() const  { return mEnabled; }
  80. void setHighlighted( BOOL b ) { mHighlighted = b; }
  81. BOOL getHighlighted() const { return mHighlighted; }
  82. void setUserdata( void* userdata ) { mUserdata = userdata; }
  83. void* getUserdata() const  { return mUserdata; }
  84. virtual LLUUID getUUID() const { return mItemValue.asUUID(); }
  85. LLSD getValue() const { return mItemValue; }
  86. void setRect(LLRect rect) { mRectangle = rect; }
  87. LLRect getRect() const { return mRectangle; }
  88. void addColumn( const LLScrollListCell::Params& p );
  89. void setNumColumns(S32 columns);
  90. void setColumn( S32 column, LLScrollListCell *cell );
  91. S32 getNumColumns() const;
  92. LLScrollListCell *getColumn(const S32 i) const;
  93. std::string getContentsCSV() const;
  94. virtual void draw(const LLRect& rect, const LLColor4& fg_color, const LLColor4& bg_color, const LLColor4& highlight_color, S32 column_padding);
  95. protected:
  96. LLScrollListItem( const Params& );
  97. private:
  98. BOOL mSelected;
  99. BOOL mHighlighted;
  100. BOOL mEnabled;
  101. void* mUserdata;
  102. LLSD mItemValue;
  103. std::vector<LLScrollListCell *> mColumns;
  104. LLRect  mRectangle;
  105. };
  106. #endif