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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llviewquery.cpp
  3.  * @brief Implementation of view query 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. #include "linden_common.h"
  33. #include "llview.h"
  34. #include "lluictrl.h"
  35. #include "llviewquery.h"
  36. void LLQuerySorter::operator() (LLView * parent, viewList_t &children) const {}
  37. filterResult_t LLLeavesFilter::operator() (const LLView* const view, const viewList_t & children) const 
  38. {
  39. return filterResult_t(children.empty(), TRUE);
  40. }
  41. filterResult_t LLRootsFilter::operator() (const LLView* const view, const viewList_t & children) const 
  42. {
  43. return filterResult_t(TRUE, FALSE);
  44. }
  45. filterResult_t LLVisibleFilter::operator() (const LLView* const view, const viewList_t & children) const 
  46. {
  47. return filterResult_t(view->getVisible(), view->getVisible());
  48. }
  49. filterResult_t LLEnabledFilter::operator() (const LLView* const view, const viewList_t & children) const 
  50. {
  51. return filterResult_t(view->getEnabled(), view->getEnabled());
  52. }
  53. filterResult_t LLTabStopFilter::operator() (const LLView* const view, const viewList_t & children) const 
  54. {
  55. return filterResult_t(view->isCtrl() && static_cast<const LLUICtrl*>(view)->hasTabStop(),
  56. view->canFocusChildren());
  57. }
  58. filterResult_t LLCtrlFilter::operator() (const LLView* const view, const viewList_t & children) const 
  59. {
  60. return filterResult_t(view->isCtrl(),TRUE);
  61. }
  62. //
  63. // LLViewQuery
  64. //
  65. viewList_t LLViewQuery::run(LLView* view) const
  66. {
  67. viewList_t result;
  68. // prefilter gets immediate children of view
  69. filterResult_t pre = runFilters(view, *view->getChildList(), mPreFilters);
  70. if(!pre.first && !pre.second)
  71. {
  72. // not including ourselves or the children
  73. // nothing more to do
  74. return result;
  75. }
  76. viewList_t filtered_children;
  77. filterResult_t post(TRUE, TRUE);
  78. if(pre.second)
  79. {
  80. // run filters on children
  81. filterChildren(view, filtered_children);
  82. // only run post filters if this element passed pre filters
  83. // so if you failed to pass the pre filter, you can't filter out children in post
  84. if (pre.first)
  85. {
  86. post = runFilters(view, filtered_children, mPostFilters);
  87. }
  88. }
  89. if(pre.first && post.first) 
  90. {
  91. result.push_back(view);
  92. }
  93. if(pre.second && post.second)
  94. {
  95. result.insert(result.end(), filtered_children.begin(), filtered_children.end());
  96. }
  97. return result;
  98. }
  99. void LLViewQuery::filterChildren(LLView * view, viewList_t & filtered_children) const
  100. {
  101. LLView::child_list_t views(*(view->getChildList()));
  102. if (mSorterp)
  103. {
  104. (*mSorterp)(view, views); // sort the children per the sorter
  105. }
  106. for(LLView::child_list_iter_t iter = views.begin();
  107. iter != views.end();
  108. iter++)
  109. {
  110. viewList_t indiv_children = this->run(*iter);
  111. filtered_children.insert(filtered_children.end(), indiv_children.begin(), indiv_children.end());
  112. }
  113. }
  114. filterResult_t LLViewQuery::runFilters(LLView * view, const viewList_t children, const filterList_t filters) const
  115. {
  116. filterResult_t result = filterResult_t(TRUE, TRUE);
  117. for(filterList_const_iter_t iter = filters.begin();
  118. iter != filters.end();
  119. iter++)
  120. {
  121. filterResult_t filtered = (**iter)(view, children);
  122. result.first = result.first && filtered.first;
  123. result.second = result.second && filtered.second;
  124. }
  125. return result;
  126. }
  127. class SortByTabOrder : public LLQuerySorter, public LLSingleton<SortByTabOrder>
  128. {
  129. /*virtual*/ void operator() (LLView * parent, LLView::child_list_t &children) const 
  130. {
  131. children.sort(LLCompareByTabOrder(parent->getCtrlOrder()));
  132. }
  133. };
  134. LLCtrlQuery::LLCtrlQuery() : 
  135. LLViewQuery()
  136. {
  137. setSorter(SortByTabOrder::getInstance());
  138. }