app: add empty stub gimp_brush_transform_boundary()

as a separate commit because it reindents the entire header.
This commit is contained in:
Michael Natterer 2011-04-04 19:21:25 +02:00
parent 7d39d800fc
commit 9e1db5dc92
2 changed files with 83 additions and 59 deletions

View File

@ -531,6 +531,18 @@ gimp_brush_transform_pixmap (GimpBrush *brush,
angle, hardness);
}
GimpBezierDesc *
gimp_brush_transform_boundary (GimpBrush *brush,
gdouble scale,
gdouble aspect_ratio,
gdouble angle,
gdouble hardness)
{
g_return_val_if_fail (GIMP_IS_BRUSH (brush), NULL);
return NULL;
}
gdouble
gimp_brush_clamp_scale (GimpBrush *brush,
gdouble scale)

View File

@ -72,6 +72,11 @@ struct _GimpBrushClass
gdouble aspect_ratio,
gdouble angle,
gdouble hardness);
GimpBezierDesc * (* transform_boundary) (GimpBrush *brush,
gdouble scale,
gdouble aspect_ratio,
gdouble angle,
gdouble hardness);
/* signals */
void (* spacing_changed) (GimpBrush *brush);
@ -91,7 +96,9 @@ gboolean gimp_brush_want_null_motion (GimpBrush *brush,
const GimpCoords *last_coords,
const GimpCoords *current_coords);
/* Gets width and height of a transformed mask of the brush, for provided parameters. */
/* Gets width and height of a transformed mask of the brush, for
* provided parameters.
*/
void gimp_brush_transform_size (GimpBrush *brush,
gdouble scale,
gdouble aspect_ratio,
@ -108,6 +115,11 @@ TempBuf * gimp_brush_transform_pixmap (GimpBrush *brush,
gdouble aspect_ratio,
gdouble angle,
gdouble hardness);
GimpBezierDesc * gimp_brush_transform_boundary (GimpBrush *brush,
gdouble scale,
gdouble aspect_ratio,
gdouble angle,
gdouble hardness);
gdouble gimp_brush_clamp_scale (GimpBrush *brush,
gdouble scale);