EditorStyles.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. namespace bs.Editor
  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 int DefaultFontSize = 8;
  15. public const string Blank = "Blank";
  16. public const string Label = "Label";
  17. public const string LabelBold = "LabelBold";
  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 Expand = "Expand";
  29. public const string Separator = "Separator";
  30. public const string Header = "Header";
  31. public const string HeaderBackground = "HeaderBackground";
  32. }
  33. /// <summary>
  34. /// Editor GUI styles similar to <see cref="EditorStyles"/> but with a more specific use.
  35. /// </summary>
  36. internal static class EditorStylesInternal
  37. {
  38. public const string ColorSliderHorz = "ColorSliderHorz";
  39. public const string ColorSliderVert = "ColorSliderVert";
  40. public const string ColorSlider2DHandle = "ColorSlider2DHandle";
  41. public const string SelectionArea = "SelectionArea";
  42. public const string SelectableLabel = "SelectableLabel";
  43. public const string ScrollAreaBg = "ScrollAreaBg";
  44. public const string InspectorTitleBg = "InspectorTitleBg";
  45. public const string InspectorContentBg = "InspectorContentBg";
  46. public const string InspectorContentBgAlternate = "InspectorContentBgAlternate";
  47. public const string ContainerBg = "ContainerBg";
  48. }
  49. /** @} */
  50. }