DocumentTransformMode.cs 900 B

1234567891011121314151617181920212223
  1. using System.ComponentModel;
  2. namespace PixiEditor.Models.DocumentModels;
  3. internal enum DocumentTransformMode
  4. {
  5. // Comments show localization in DocumentTransformViewModel.cs, comments are needed for localization key check pipeline
  6. // TRANSFORM_ACTION_DISPLAY_SCALE_NOROTATE_NOSHEAR_NOPERSPECTIVE
  7. [Description("SCALE_NOROTATE_NOSHEAR_NOPERSPECTIVE")]
  8. Scale_NoRotate_NoShear_NoPerspective,
  9. // TRANSFORM_ACTION_DISPLAY_SCALE_ROTATE_NOSHEAR_NOPERSPECTIVE
  10. [Description("SCALE_ROTATE_NOSHEAR_NOPERSPECTIVE")]
  11. Scale_Rotate_NoShear_NoPerspective,
  12. // TRANSFORM_ACTION_DISPLAY_SCALE_ROTATE_SHEAR_NOPERSPECTIVE
  13. [Description("SCALE_ROTATE_SHEAR_NOPERSPECTIVE")]
  14. Scale_Rotate_Shear_NoPerspective,
  15. // TRANSFORM_ACTION_DISPLAY_SCALE_ROTATE_SHEAR_PERSPECTIVE
  16. [Description("SCALE_ROTATE_SHEAR_PERSPECTIVE")]
  17. Scale_Rotate_Shear_Perspective
  18. }