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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llwidgetreg.cpp
  3.  *
  4.  * $LicenseInfo:firstyear=2009&license=viewergpl$
  5.  * 
  6.  * Copyright (c) 2009-2010, Linden Research, Inc.
  7.  * 
  8.  * Second Life Viewer Source Code
  9.  * The source code in this file ("Source Code") is provided by Linden Lab
  10.  * to you under the terms of the GNU General Public License, version 2.0
  11.  * ("GPL"), unless you have obtained a separate licensing agreement
  12.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  13.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  14.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  15.  * 
  16.  * There are special exceptions to the terms and conditions of the GPL as
  17.  * it is applied to this Source Code. View the full text of the exception
  18.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  19.  * online at
  20.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  21.  * 
  22.  * By copying, modifying or distributing this software, you acknowledge
  23.  * that you have read and understood your obligations described above,
  24.  * and agree to abide by those obligations.
  25.  * 
  26.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  27.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  28.  * COMPLETENESS OR PERFORMANCE.
  29.  * $/LicenseInfo$
  30.  */
  31. #include "linden_common.h"
  32. #include "llwidgetreg.h"
  33. #include "llbutton.h"
  34. #include "llcheckboxctrl.h"
  35. #include "llcombobox.h"
  36. #include "llcontainerview.h"
  37. #include "lliconctrl.h"
  38. #include "llmenubutton.h"
  39. #include "llmenugl.h"
  40. #include "llmultislider.h"
  41. #include "llmultisliderctrl.h"
  42. #include "llprogressbar.h"
  43. #include "llradiogroup.h"
  44. #include "llsearcheditor.h"
  45. #include "llscrollcontainer.h"
  46. #include "llscrollingpanellist.h"
  47. #include "llscrolllistctrl.h"
  48. #include "llslider.h"
  49. #include "llsliderctrl.h"
  50. #include "llspinctrl.h"
  51. #include "llstatview.h"
  52. #include "lltabcontainer.h"
  53. #include "lltextbox.h"
  54. #include "lltexteditor.h"
  55. #include "llflyoutbutton.h"
  56. #include "llfiltereditor.h"
  57. #include "lllayoutstack.h"
  58. void LLWidgetReg::initClass(bool register_widgets)
  59. {
  60. // Only need to register if the Windows linker has optimized away the
  61. // references to the object files.
  62. if (register_widgets)
  63. {
  64. LLDefaultChildRegistry::Register<LLButton> button("button");
  65. LLDefaultChildRegistry::Register<LLMenuButton> menu_button("menu_button");
  66. LLDefaultChildRegistry::Register<LLCheckBoxCtrl> check_box("check_box");
  67. LLDefaultChildRegistry::Register<LLComboBox> combo_box("combo_box");
  68. LLDefaultChildRegistry::Register<LLFilterEditor> filter_editor("filter_editor");
  69. LLDefaultChildRegistry::Register<LLFlyoutButton> flyout_button("flyout_button");
  70. LLDefaultChildRegistry::Register<LLContainerView> container_view("container_view");
  71. LLDefaultChildRegistry::Register<LLIconCtrl> icon("icon");
  72. LLDefaultChildRegistry::Register<LLLineEditor> line_editor("line_editor");
  73. LLDefaultChildRegistry::Register<LLMenuItemSeparatorGL> menu_item_separator("menu_item_separator");
  74. LLDefaultChildRegistry::Register<LLMenuItemCallGL> menu_item_call_gl("menu_item_call");
  75. LLDefaultChildRegistry::Register<LLMenuItemCheckGL> menu_item_check_gl("menu_item_check");
  76. LLDefaultChildRegistry::Register<LLMenuGL> menu("menu");
  77. LLDefaultChildRegistry::Register<LLMenuBarGL> menu_bar("menu_bar");
  78. LLDefaultChildRegistry::Register<LLContextMenu> context_menu("context_menu");
  79. LLDefaultChildRegistry::Register<LLMultiSlider> multi_slider_bar("multi_slider_bar");
  80. LLDefaultChildRegistry::Register<LLMultiSliderCtrl> multi_slider("multi_slider");
  81. LLDefaultChildRegistry::Register<LLPanel> panel("panel", &LLPanel::fromXML);
  82. LLDefaultChildRegistry::Register<LLLayoutStack> layout_stack("layout_stack", &LLLayoutStack::fromXML);
  83. LLDefaultChildRegistry::Register<LLProgressBar> progress_bar("progress_bar");
  84. LLDefaultChildRegistry::Register<LLRadioGroup> radio_group("radio_group");
  85. LLDefaultChildRegistry::Register<LLSearchEditor> search_editor("search_editor");
  86. LLDefaultChildRegistry::Register<LLScrollContainer> scroll_container("scroll_container");
  87. LLDefaultChildRegistry::Register<LLScrollingPanelList> scrolling_panel_list("scrolling_panel_list");
  88. LLDefaultChildRegistry::Register<LLScrollListCtrl> scroll_list("scroll_list");
  89. LLDefaultChildRegistry::Register<LLSlider> slider_bar("slider_bar");
  90. LLDefaultChildRegistry::Register<LLSliderCtrl> slider("slider");
  91. LLDefaultChildRegistry::Register<LLSpinCtrl> spinner("spinner");
  92. LLDefaultChildRegistry::Register<LLStatBar> stat_bar("stat_bar");
  93. //LLDefaultChildRegistry::Register<LLPlaceHolderPanel> placeholder("placeholder");
  94. LLDefaultChildRegistry::Register<LLTabContainer> tab_container("tab_container");
  95. LLDefaultChildRegistry::Register<LLTextBox> text("text");
  96. LLDefaultChildRegistry::Register<LLTextEditor> simple_text_editor("simple_text_editor");
  97. LLDefaultChildRegistry::Register<LLUICtrl> ui_ctrl("ui_ctrl");
  98. LLDefaultChildRegistry::Register<LLStatView> stat_view("stat_view");
  99. //LLDefaultChildRegistry::Register<LLUICtrlLocate> locate("locate");
  100. //LLDefaultChildRegistry::Register<LLUICtrlLocate> pad("pad");
  101. LLDefaultChildRegistry::Register<LLViewBorder> view_border("view_border");
  102. }
  103. // *HACK: Usually this is registered as a viewer text editor
  104. LLDefaultChildRegistry::Register<LLTextEditor> text_editor("text_editor");
  105. }