EditorStyles.cs 1.8 KB

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