EditorStyles.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BansheeEditor
  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. }