[gimp] app: Order dynamics in editor a bit more sensibly



commit f1a1114ed766732ce8efd83a2610cbdb11298661
Author: Alexia Death <alexiadeath gmail com>
Date:   Sun Mar 14 18:12:24 2010 +0200

    app: Order dynamics in editor a bit more sensibly

 app/core/core-enums.c   |   20 ++++++++++----------
 app/core/core-enums.h   |   10 +++++-----
 app/core/gimpdynamics.c |   12 ++++++------
 3 files changed, 21 insertions(+), 21 deletions(-)
---
diff --git a/app/core/core-enums.c b/app/core/core-enums.c
index 69440c4..ea5b63c 100644
--- a/app/core/core-enums.c
+++ b/app/core/core-enums.c
@@ -1309,28 +1309,28 @@ gimp_dynamics_output_type_get_type (void)
   static const GEnumValue values[] =
   {
     { GIMP_DYNAMICS_OUTPUT_OPACITY, "GIMP_DYNAMICS_OUTPUT_OPACITY", "opacity" },
-    { GIMP_DYNAMICS_OUTPUT_HARDNESS, "GIMP_DYNAMICS_OUTPUT_HARDNESS", "hardness" },
-    { GIMP_DYNAMICS_OUTPUT_RATE, "GIMP_DYNAMICS_OUTPUT_RATE", "rate" },
     { GIMP_DYNAMICS_OUTPUT_SIZE, "GIMP_DYNAMICS_OUTPUT_SIZE", "size" },
-    { GIMP_DYNAMICS_OUTPUT_ASPECT_RATIO, "GIMP_DYNAMICS_OUTPUT_ASPECT_RATIO", "aspect-ratio" },
-    { GIMP_DYNAMICS_OUTPUT_COLOR, "GIMP_DYNAMICS_OUTPUT_COLOR", "color" },
     { GIMP_DYNAMICS_OUTPUT_ANGLE, "GIMP_DYNAMICS_OUTPUT_ANGLE", "angle" },
-    { GIMP_DYNAMICS_OUTPUT_JITTER, "GIMP_DYNAMICS_OUTPUT_JITTER", "jitter" },
+    { GIMP_DYNAMICS_OUTPUT_COLOR, "GIMP_DYNAMICS_OUTPUT_COLOR", "color" },
+    { GIMP_DYNAMICS_OUTPUT_HARDNESS, "GIMP_DYNAMICS_OUTPUT_HARDNESS", "hardness" },
+    { GIMP_DYNAMICS_OUTPUT_ASPECT_RATIO, "GIMP_DYNAMICS_OUTPUT_ASPECT_RATIO", "aspect-ratio" },
     { GIMP_DYNAMICS_OUTPUT_SPACING, "GIMP_DYNAMICS_OUTPUT_SPACING", "spacing" },
+    { GIMP_DYNAMICS_OUTPUT_RATE, "GIMP_DYNAMICS_OUTPUT_RATE", "rate" },
+    { GIMP_DYNAMICS_OUTPUT_JITTER, "GIMP_DYNAMICS_OUTPUT_JITTER", "jitter" },
     { 0, NULL, NULL }
   };
 
   static const GimpEnumDesc descs[] =
   {
     { GIMP_DYNAMICS_OUTPUT_OPACITY, NC_("dynamics-output-type", "Opacity"), NULL },
-    { GIMP_DYNAMICS_OUTPUT_HARDNESS, NC_("dynamics-output-type", "Hardness"), NULL },
-    { GIMP_DYNAMICS_OUTPUT_RATE, NC_("dynamics-output-type", "Rate"), NULL },
     { GIMP_DYNAMICS_OUTPUT_SIZE, NC_("dynamics-output-type", "Size"), NULL },
-    { GIMP_DYNAMICS_OUTPUT_ASPECT_RATIO, NC_("dynamics-output-type", "Aspect ratio"), NULL },
-    { GIMP_DYNAMICS_OUTPUT_COLOR, NC_("dynamics-output-type", "Color"), NULL },
     { GIMP_DYNAMICS_OUTPUT_ANGLE, NC_("dynamics-output-type", "Angle"), NULL },
-    { GIMP_DYNAMICS_OUTPUT_JITTER, NC_("dynamics-output-type", "Jitter"), NULL },
+    { GIMP_DYNAMICS_OUTPUT_COLOR, NC_("dynamics-output-type", "Color"), NULL },
+    { GIMP_DYNAMICS_OUTPUT_HARDNESS, NC_("dynamics-output-type", "Hardness"), NULL },
+    { GIMP_DYNAMICS_OUTPUT_ASPECT_RATIO, NC_("dynamics-output-type", "Aspect ratio"), NULL },
     { GIMP_DYNAMICS_OUTPUT_SPACING, NC_("dynamics-output-type", "Spacing"), NULL },
+    { GIMP_DYNAMICS_OUTPUT_RATE, NC_("dynamics-output-type", "Rate"), NULL },
+    { GIMP_DYNAMICS_OUTPUT_JITTER, NC_("dynamics-output-type", "Jitter"), NULL },
     { 0, NULL, NULL }
   };
 
diff --git a/app/core/core-enums.h b/app/core/core-enums.h
index b5ff217..5b96977 100644
--- a/app/core/core-enums.h
+++ b/app/core/core-enums.h
@@ -591,14 +591,14 @@ GType gimp_dynamics_output_type_get_type (void) G_GNUC_CONST;
 typedef enum  /*< pdb-skip >*/
 {
   GIMP_DYNAMICS_OUTPUT_OPACITY,      /*< desc="Opacity"      >*/
-  GIMP_DYNAMICS_OUTPUT_HARDNESS,     /*< desc="Hardness"     >*/
-  GIMP_DYNAMICS_OUTPUT_RATE,         /*< desc="Rate"         >*/
   GIMP_DYNAMICS_OUTPUT_SIZE,         /*< desc="Size"         >*/
-  GIMP_DYNAMICS_OUTPUT_ASPECT_RATIO, /*< desc="Aspect ratio" >*/
-  GIMP_DYNAMICS_OUTPUT_COLOR,        /*< desc="Color"        >*/
   GIMP_DYNAMICS_OUTPUT_ANGLE,        /*< desc="Angle"        >*/
-  GIMP_DYNAMICS_OUTPUT_JITTER,       /*< desc="Jitter"       >*/
+  GIMP_DYNAMICS_OUTPUT_COLOR,        /*< desc="Color"        >*/
+  GIMP_DYNAMICS_OUTPUT_HARDNESS,     /*< desc="Hardness"     >*/
+  GIMP_DYNAMICS_OUTPUT_ASPECT_RATIO, /*< desc="Aspect ratio" >*/
   GIMP_DYNAMICS_OUTPUT_SPACING,      /*< desc="Spacing"      >*/
+  GIMP_DYNAMICS_OUTPUT_RATE,         /*< desc="Rate"         >*/
+  GIMP_DYNAMICS_OUTPUT_JITTER,       /*< desc="Jitter"       >*/
 } GimpDynamicsOutputType;
 
 
diff --git a/app/core/gimpdynamics.c b/app/core/gimpdynamics.c
index 9d1fb46..87903be 100644
--- a/app/core/gimpdynamics.c
+++ b/app/core/gimpdynamics.c
@@ -42,14 +42,14 @@ enum
   PROP_NAME,
 
   PROP_OPACITY_OUTPUT,
-  PROP_HARDNESS_OUTPUT,
-  PROP_RATE_OUTPUT,
   PROP_SIZE_OUTPUT,
-  PROP_ASPECT_RATIO_OUTPUT,
-  PROP_COLOR_OUTPUT,
   PROP_ANGLE_OUTPUT,
-  PROP_JITTER_OUTPUT,
-  PROP_SPACING_OUTPUT
+  PROP_COLOR_OUTPUT,
+  PROP_HARDNESS_OUTPUT,
+  PROP_ASPECT_RATIO_OUTPUT,
+  PROP_SPACING_OUTPUT,
+  PROP_RATE_OUTPUT,
+  PROP_JITTER_OUTPUT
 };
 
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]