app: move all GimpDynamicsOutput members to private

This commit is contained in:
Michael Natterer
2011-03-03 11:48:35 +01:00
parent 672286515c
commit c31d675ac1
2 changed files with 158 additions and 132 deletions

View File

@ -34,25 +34,7 @@ typedef struct _GimpDynamicsOutputClass GimpDynamicsOutputClass;
struct _GimpDynamicsOutput
{
GimpObject parent_instance;
GimpDynamicsOutputType type;
gboolean use_pressure;
gboolean use_velocity;
gboolean use_direction;
gboolean use_tilt;
gboolean use_wheel;
gboolean use_random;
gboolean use_fade;
GimpCurve *pressure_curve;
GimpCurve *velocity_curve;
GimpCurve *direction_curve;
GimpCurve *tilt_curve;
GimpCurve *wheel_curve;
GimpCurve *random_curve;
GimpCurve *fade_curve;
GimpObject parent_instance;
};
struct _GimpDynamicsOutputClass