|
@@ -1,9 +1,14 @@
|
|
-namespace PixiEditor.Models.Enums;
|
|
|
|
|
|
+using System.ComponentModel;
|
|
|
|
+
|
|
|
|
+namespace PixiEditor.Models.Enums;
|
|
internal enum DocumentTransformMode
|
|
internal enum DocumentTransformMode
|
|
{
|
|
{
|
|
- // Localization dependent on names!
|
|
|
|
|
|
+ [Description("SCALE_NOROTATE_NOSHEAR_NOPERSPECTIVE")]
|
|
Scale_NoRotate_NoShear_NoPerspective,
|
|
Scale_NoRotate_NoShear_NoPerspective,
|
|
|
|
+ [Description("SCALE_ROTATE_NOSHEAR_NOPERSPECTIVE")]
|
|
Scale_Rotate_NoShear_NoPerspective,
|
|
Scale_Rotate_NoShear_NoPerspective,
|
|
|
|
+ [Description("SCALE_ROTATE_SHEAR_NOPERSPECTIVE")]
|
|
Scale_Rotate_Shear_NoPerspective,
|
|
Scale_Rotate_Shear_NoPerspective,
|
|
|
|
+ [Description("SCALE_ROTATE_SHEAR_PERSPECTIVE")]
|
|
Scale_Rotate_Shear_Perspective
|
|
Scale_Rotate_Shear_Perspective
|
|
}
|
|
}
|