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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file LLAccordionCtrl.h
  3.  * @brief Accordion Panel implementation
  4.  *
  5.  * $LicenseInfo:firstyear=2004&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2004-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_ACCORDIONCTRL_H
  33. #define LL_ACCORDIONCTRL_H
  34. #include "llpanel.h"
  35. #include "llscrollbar.h"
  36. #include <vector>
  37. #include <algorithm>
  38. #include <string>
  39. class LLAccordionCtrlTab;
  40. class LLAccordionCtrl: public LLPanel
  41. {
  42. private:
  43. std::vector<LLAccordionCtrlTab*> mAccordionTabs;
  44. void ctrlSetLeftTopAndSize(LLView* panel, S32 left, S32 top, S32 width, S32 height);
  45. void ctrlShiftVertical(LLView* panel,S32 delta);
  46. void onCollapseCtrlCloseOpen(S16 panel_num); 
  47. void shiftAccordionTabs(S16 panel_num, S32 delta);
  48. public:
  49. struct Params 
  50. : public LLInitParam::Block<Params, LLPanel::Params>
  51. {
  52. Optional<bool> single_expansion,
  53. fit_parent; /* Accordion will fit its parent size, controls that are placed into 
  54. accordion tabs are responsible for scrolling their content.
  55. *NOTE fit_parent works best when combined with single_expansion.
  56. Accordion view should implement getRequiredRect() and provide valid height*/
  57. Params()
  58. : single_expansion("single_expansion",false)
  59. , fit_parent("fit_parent", false)
  60. {};
  61. };
  62. LLAccordionCtrl(const Params& params);
  63.     LLAccordionCtrl();
  64.     virtual ~LLAccordionCtrl();
  65. virtual BOOL postBuild();
  66. virtual BOOL handleRightMouseDown ( S32 x, S32 y, MASK mask); 
  67. virtual BOOL handleScrollWheel ( S32 x, S32 y, S32 clicks );
  68. virtual BOOL handleKeyHere (KEY key, MASK mask);
  69. virtual BOOL handleDragAndDrop (S32 x, S32 y, MASK mask, BOOL drop,
  70.  EDragAndDropType cargo_type,
  71.  void* cargo_data,
  72.  EAcceptance* accept,
  73.  std::string& tooltip_msg);
  74. //
  75. // Call reshape after changing splitter's size
  76. virtual void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE);
  77. void addCollapsibleCtrl(LLView* view);
  78. void arrange();
  79. void draw();
  80. void onScrollPosChangeCallback(S32, LLScrollbar*);
  81. void onOpen (const LLSD& key);
  82. S32 notifyParent(const LLSD& info);
  83. void reset ();
  84. private:
  85. // Calc Splitter's height that is necessary to display all child content
  86. S32 calcRecuiredHeight();
  87. S32 getRecuiredHeight() const { return mInnerRect.getHeight(); }
  88. S32 calcExpandedTabHeight(S32 tab_index = 0, S32 available_height = 0);
  89. void updateLayout (S32 width, S32 height);
  90. void show_hide_scrollbar (S32 width, S32 height);
  91. void showScrollbar (S32 width, S32 height);
  92. void hideScrollbar (S32 width, S32 height);
  93. BOOL autoScroll (S32 x, S32 y);
  94. private:
  95. LLRect mInnerRect;
  96. LLScrollbar* mScrollbar;
  97. bool mSingleExpansion;
  98. bool mFitParent;
  99. bool mAutoScrolling;
  100. F32 mAutoScrollRate;
  101. };
  102. #endif // LL_LLSPLITTER_H