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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llviewquery.h
  3.  * @brief Query algorithm for flattening and filtering the view hierarchy.
  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_LLVIEWQUERY_H
  33. #define LL_LLVIEWQUERY_H
  34. #include <list>
  35. #include "llsingleton.h"
  36. #include "llui.h"
  37. class LLView;
  38. typedef std::list<LLView *> viewList_t;
  39. typedef std::pair<BOOL, BOOL> filterResult_t;
  40. // Abstract base class for all query filters.
  41. class LLQueryFilter
  42. {
  43. public:
  44. virtual ~LLQueryFilter() {};
  45. virtual filterResult_t operator() (const LLView* const view, const viewList_t & children) const = 0;
  46. };
  47. class LLQuerySorter
  48. {
  49. public:
  50. virtual ~LLQuerySorter() {};
  51. virtual void operator() (LLView * parent, viewList_t &children) const;
  52. };
  53. class LLLeavesFilter : public LLQueryFilter, public LLSingleton<LLLeavesFilter>
  54. {
  55. /*virtual*/ filterResult_t operator() (const LLView* const view, const viewList_t & children) const;
  56. };
  57. class LLRootsFilter : public LLQueryFilter, public LLSingleton<LLRootsFilter>
  58. {
  59. /*virtual*/ filterResult_t operator() (const LLView* const view, const viewList_t & children) const;
  60. };
  61. class LLVisibleFilter : public LLQueryFilter, public LLSingleton<LLVisibleFilter>
  62. {
  63. /*virtual*/ filterResult_t operator() (const LLView* const view, const viewList_t & children) const;
  64. };
  65. class LLEnabledFilter : public LLQueryFilter, public LLSingleton<LLEnabledFilter>
  66. {
  67. /*virtual*/ filterResult_t operator() (const LLView* const view, const viewList_t & children) const;
  68. };
  69. class LLTabStopFilter : public LLQueryFilter, public LLSingleton<LLTabStopFilter>
  70. {
  71. /*virtual*/ filterResult_t operator() (const LLView* const view, const viewList_t & children) const;
  72. };
  73. class LLCtrlFilter : public LLQueryFilter, public LLSingleton<LLCtrlFilter>
  74. {
  75. /*virtual*/ filterResult_t operator() (const LLView* const view, const viewList_t & children) const;
  76. };
  77. template <class T>
  78. class LLWidgetTypeFilter : public LLQueryFilter
  79. {
  80. /*virtual*/ filterResult_t operator() (const LLView* const view, const viewList_t & children) const
  81. {
  82. return filterResult_t(dynamic_cast<const T*>(view) != NULL, TRUE);
  83. }
  84. };
  85. // Algorithm for flattening
  86. class LLViewQuery
  87. {
  88. public:
  89. typedef std::list<const LLQueryFilter*> filterList_t;
  90. typedef filterList_t::iterator filterList_iter_t;
  91. typedef filterList_t::const_iterator filterList_const_iter_t;
  92. LLViewQuery() : mPreFilters(), mPostFilters(), mSorterp() {}
  93. virtual ~LLViewQuery() {}
  94. void addPreFilter(const LLQueryFilter* prefilter) { mPreFilters.push_back(prefilter); }
  95. void addPostFilter(const LLQueryFilter* postfilter) { mPostFilters.push_back(postfilter); }
  96. const filterList_t & getPreFilters() const { return mPreFilters; }
  97. const filterList_t & getPostFilters() const { return mPostFilters; }
  98. void setSorter(const LLQuerySorter* sorter) { mSorterp = sorter; }
  99. const LLQuerySorter* getSorter() const { return mSorterp; }
  100. viewList_t run(LLView * view) const;
  101. // syntactic sugar
  102. viewList_t operator () (LLView * view) const { return run(view); }
  103. // override this method to provide iteration over other types of children
  104. virtual void filterChildren(LLView * view, viewList_t & filtered_children) const;
  105. private:
  106. filterResult_t runFilters(LLView * view, const viewList_t children, const filterList_t filters) const;
  107. filterList_t mPreFilters;
  108. filterList_t mPostFilters;
  109. const LLQuerySorter* mSorterp;
  110. };
  111. class LLCtrlQuery : public LLViewQuery
  112. {
  113. public:
  114. LLCtrlQuery();
  115. };
  116. #endif // LL_LLVIEWQUERY_H