Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
2.0 KiB

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================
  6. #include "vgui/IVGui.h"
  7. #include "vgui_controls/Controls.h"
  8. #include "vgui_controls/AnimatingImagePanel.h"
  9. #include "vgui_controls/BitmapImagePanel.h"
  10. #include "vgui_controls/ExpandButton.h"
  11. #include "vgui_controls/TreeViewListControl.h"
  12. #include "vgui_controls/HTML.h"
  13. // NOTE: This has to be the last file included!
  14. #include "tier0/memdbgon.h"
  15. using namespace vgui;
  16. USING_BUILD_FACTORY( Button );
  17. USING_BUILD_FACTORY( EditablePanel );
  18. USING_BUILD_FACTORY( ImagePanel );
  19. USING_BUILD_FACTORY( Label );
  20. USING_BUILD_FACTORY( Panel );
  21. USING_BUILD_FACTORY( ToggleButton );
  22. USING_BUILD_FACTORY( AnimatingImagePanel );
  23. USING_BUILD_FACTORY( CBitmapImagePanel );
  24. USING_BUILD_FACTORY( CheckButton );
  25. USING_BUILD_FACTORY( ComboBox );
  26. USING_BUILD_FACTORY_ALIAS( CvarToggleCheckButton<ConVarRef>, CvarToggleCheckButton );
  27. USING_BUILD_FACTORY( Divider );
  28. USING_BUILD_FACTORY( ExpandButton );
  29. USING_BUILD_FACTORY( GraphPanel );
  30. //USING_BUILD_FACTORY_ALIAS( HTML, HTML_NoJavascript );
  31. //USING_BUILD_FACTORY_ALIAS( HTML, HTML_Javascript );
  32. USING_BUILD_FACTORY( ListPanel );
  33. USING_BUILD_FACTORY( ListViewPanel );
  34. USING_BUILD_FACTORY( Menu );
  35. USING_BUILD_FACTORY( MenuBar );
  36. USING_BUILD_FACTORY( MenuButton );
  37. USING_BUILD_FACTORY( MenuItem );
  38. USING_BUILD_FACTORY( MessageBox );
  39. USING_BUILD_FACTORY( ProgressBar );
  40. USING_BUILD_FACTORY( CircularProgressBar );
  41. USING_BUILD_FACTORY( RadioButton );
  42. USING_BUILD_FACTORY( RichText );
  43. USING_BUILD_FACTORY( ScalableImagePanel );
  44. USING_BUILD_FACTORY_ALIAS( ScrollBar, ScrollBar_Vertical );
  45. USING_BUILD_FACTORY_ALIAS( ScrollBar, ScrollBar_Horizontal );
  46. USING_BUILD_FACTORY( ScrollBar );
  47. USING_BUILD_FACTORY( Slider );
  48. USING_BUILD_FACTORY( TextEntry );
  49. USING_BUILD_FACTORY( TreeView );
  50. USING_BUILD_FACTORY( CTreeViewListControl );
  51. USING_BUILD_FACTORY( URLLabel );
  52. int g_nYou_Must_Add_Public_Vgui_Controls_Vgui_ControlsCpp_To_Your_Project = 0;