InspectableFieldStyleInfo.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. namespace BansheeEditor
  4. {
  5. /// <summary>
  6. /// Contains boolean information about a field style.
  7. /// </summary>
  8. public enum InstectableFieldStyleFlags
  9. {
  10. None = 0,
  11. UseSlider = 1,
  12. }
  13. /// <summary>
  14. /// Contains all the information about a field style.
  15. /// </summary>
  16. public class InspectableFieldStyleInfo
  17. {
  18. /// <summary>
  19. /// Information about the field range.
  20. /// </summary>
  21. public InspectableFieldRangeStyle RangeStyle;
  22. /// <summary>
  23. /// Information about the field stepping.
  24. /// </summary>
  25. public InspectableFieldStepStyle StepStyle;
  26. /// <summary>
  27. /// Boolean information about the field.
  28. /// </summary>
  29. public InstectableFieldStyleFlags StyleFlags;
  30. /// <summary>
  31. /// Creates an empty set of information about a field style.
  32. /// </summary>
  33. public InspectableFieldStyleInfo()
  34. {
  35. }
  36. }
  37. }