EditorStyles.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BansheeEditor
  9. {
  10. /// <summary>
  11. /// Contains various editor specific GUI style names. You may use these to customize look and feel of various GUI
  12. /// elements.
  13. /// </summary>
  14. public static class EditorStyles
  15. {
  16. public const string Blank = "Blank";
  17. public const string Label = "Label";
  18. public const string LabelCentered = "LabelCentered";
  19. public const string TitleLabel = "TitleLabel";
  20. public const string MultiLineLabel = "MultiLineLabel";
  21. public const string MultiLineLabelCentered = "MultiLineLabelCentered";
  22. public const string Button = "Button";
  23. public const string ButtonLeft = "ButtonLeft";
  24. public const string ButtonRight = "ButtonRight";
  25. public const string Toggle = "Toggle";
  26. public const string InputBox = "InputBox";
  27. public const string Foldout = "Foldout";
  28. public const string ColorSliderHorz = "ColorSliderHorz";
  29. public const string ColorSliderVert = "ColorSliderVert";
  30. public const string ColorSlider2DHandle = "ColorSlider2DHandle";
  31. public const string SelectionArea = "SelectionArea";
  32. public const string SelectableLabel = "SelectableLabel";
  33. public const string ScrollAreaBg = "ScrollAreaBg";
  34. public const string InspectorTitleBg = "InspectorTitleBg";
  35. public const string InspectorContentBg = "InspectorContentBg";
  36. public const string InspectorContentBgAlternate = "InspectorContentBgAlternate";
  37. }
  38. }