mirror of https://github.com/GNOME/gimp.git
moved the new enum Garry introduced recently from the header to the .c
2000-11-06 Sven Neumann <sven@gimp.org> * app/convolve.[ch]: moved the new enum Garry introduced recently from the header to the .c file so it does not get exported to the PDB by enumgen.pl. and some updates to the italian translation as sent by Daniele Medri.
This commit is contained in:
parent
9b632677a2
commit
746c37eb7e
|
@ -1,3 +1,9 @@
|
|||
2000-11-06 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/convolve.[ch]: moved the new enum Garry introduced recently
|
||||
from the header to the .c file so it does not get exported to the
|
||||
PDB by enumgen.pl.
|
||||
|
||||
2000-11-05 Jay Cox <jaycox@gimp.org>
|
||||
|
||||
* app/paint_funcs.c: Add some comments. Delete some commented code.
|
||||
|
|
|
@ -44,6 +44,18 @@
|
|||
#define DEFAULT_CONVOLVE_RATE 50.0
|
||||
#define DEFAULT_CONVOLVE_TYPE BLUR_CONVOLVE
|
||||
|
||||
|
||||
/* Different clip relationships between a blur-blob and edges:
|
||||
see convolve_motion */
|
||||
|
||||
typedef enum
|
||||
{
|
||||
CONVOLVE_NCLIP, /* Left or top edge */
|
||||
CONVOLVE_NOT_CLIPPED, /* No edges */
|
||||
CONVOLVE_PCLIP /* Right or bottom edge */
|
||||
} ConvolveClipType;
|
||||
|
||||
|
||||
/* the convolve structures */
|
||||
|
||||
typedef struct _ConvolveOptions ConvolveOptions;
|
||||
|
|
|
@ -29,15 +29,6 @@ typedef enum
|
|||
} ConvolveType;
|
||||
|
||||
|
||||
/* Different clip relationships between a blur-blob and edges: see convolve_motion */
|
||||
|
||||
typedef enum
|
||||
{
|
||||
CONVOLVE_NCLIP, /* Left or top edge */
|
||||
CONVOLVE_NOT_CLIPPED, /* No edges */
|
||||
CONVOLVE_PCLIP /* Right or bottom edge */
|
||||
} ConvolveClipType;
|
||||
|
||||
void * convolve_paint_func (PaintCore *, GimpDrawable *, int);
|
||||
gboolean convolve_non_gui (GimpDrawable *, double, ConvolveType, int, double *);
|
||||
gboolean convolve_non_gui_default (GimpDrawable *, int, double *);
|
||||
|
|
|
@ -44,6 +44,18 @@
|
|||
#define DEFAULT_CONVOLVE_RATE 50.0
|
||||
#define DEFAULT_CONVOLVE_TYPE BLUR_CONVOLVE
|
||||
|
||||
|
||||
/* Different clip relationships between a blur-blob and edges:
|
||||
see convolve_motion */
|
||||
|
||||
typedef enum
|
||||
{
|
||||
CONVOLVE_NCLIP, /* Left or top edge */
|
||||
CONVOLVE_NOT_CLIPPED, /* No edges */
|
||||
CONVOLVE_PCLIP /* Right or bottom edge */
|
||||
} ConvolveClipType;
|
||||
|
||||
|
||||
/* the convolve structures */
|
||||
|
||||
typedef struct _ConvolveOptions ConvolveOptions;
|
||||
|
|
|
@ -29,15 +29,6 @@ typedef enum
|
|||
} ConvolveType;
|
||||
|
||||
|
||||
/* Different clip relationships between a blur-blob and edges: see convolve_motion */
|
||||
|
||||
typedef enum
|
||||
{
|
||||
CONVOLVE_NCLIP, /* Left or top edge */
|
||||
CONVOLVE_NOT_CLIPPED, /* No edges */
|
||||
CONVOLVE_PCLIP /* Right or bottom edge */
|
||||
} ConvolveClipType;
|
||||
|
||||
void * convolve_paint_func (PaintCore *, GimpDrawable *, int);
|
||||
gboolean convolve_non_gui (GimpDrawable *, double, ConvolveType, int, double *);
|
||||
gboolean convolve_non_gui_default (GimpDrawable *, int, double *);
|
||||
|
|
|
@ -44,6 +44,18 @@
|
|||
#define DEFAULT_CONVOLVE_RATE 50.0
|
||||
#define DEFAULT_CONVOLVE_TYPE BLUR_CONVOLVE
|
||||
|
||||
|
||||
/* Different clip relationships between a blur-blob and edges:
|
||||
see convolve_motion */
|
||||
|
||||
typedef enum
|
||||
{
|
||||
CONVOLVE_NCLIP, /* Left or top edge */
|
||||
CONVOLVE_NOT_CLIPPED, /* No edges */
|
||||
CONVOLVE_PCLIP /* Right or bottom edge */
|
||||
} ConvolveClipType;
|
||||
|
||||
|
||||
/* the convolve structures */
|
||||
|
||||
typedef struct _ConvolveOptions ConvolveOptions;
|
||||
|
|
|
@ -29,15 +29,6 @@ typedef enum
|
|||
} ConvolveType;
|
||||
|
||||
|
||||
/* Different clip relationships between a blur-blob and edges: see convolve_motion */
|
||||
|
||||
typedef enum
|
||||
{
|
||||
CONVOLVE_NCLIP, /* Left or top edge */
|
||||
CONVOLVE_NOT_CLIPPED, /* No edges */
|
||||
CONVOLVE_PCLIP /* Right or bottom edge */
|
||||
} ConvolveClipType;
|
||||
|
||||
void * convolve_paint_func (PaintCore *, GimpDrawable *, int);
|
||||
gboolean convolve_non_gui (GimpDrawable *, double, ConvolveType, int, double *);
|
||||
gboolean convolve_non_gui_default (GimpDrawable *, int, double *);
|
||||
|
|
|
@ -44,6 +44,18 @@
|
|||
#define DEFAULT_CONVOLVE_RATE 50.0
|
||||
#define DEFAULT_CONVOLVE_TYPE BLUR_CONVOLVE
|
||||
|
||||
|
||||
/* Different clip relationships between a blur-blob and edges:
|
||||
see convolve_motion */
|
||||
|
||||
typedef enum
|
||||
{
|
||||
CONVOLVE_NCLIP, /* Left or top edge */
|
||||
CONVOLVE_NOT_CLIPPED, /* No edges */
|
||||
CONVOLVE_PCLIP /* Right or bottom edge */
|
||||
} ConvolveClipType;
|
||||
|
||||
|
||||
/* the convolve structures */
|
||||
|
||||
typedef struct _ConvolveOptions ConvolveOptions;
|
||||
|
|
|
@ -29,15 +29,6 @@ typedef enum
|
|||
} ConvolveType;
|
||||
|
||||
|
||||
/* Different clip relationships between a blur-blob and edges: see convolve_motion */
|
||||
|
||||
typedef enum
|
||||
{
|
||||
CONVOLVE_NCLIP, /* Left or top edge */
|
||||
CONVOLVE_NOT_CLIPPED, /* No edges */
|
||||
CONVOLVE_PCLIP /* Right or bottom edge */
|
||||
} ConvolveClipType;
|
||||
|
||||
void * convolve_paint_func (PaintCore *, GimpDrawable *, int);
|
||||
gboolean convolve_non_gui (GimpDrawable *, double, ConvolveType, int, double *);
|
||||
gboolean convolve_non_gui_default (GimpDrawable *, int, double *);
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2000-11-06 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* it.po: updates to the italian translation from
|
||||
Daniele Medri <daniele.medri@libero.it>
|
||||
|
||||
2000-11-04 Zbigniew Chyla <cyba@gnome.pl>
|
||||
|
||||
* pl.po: Updated Polish translation
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,3 +1,8 @@
|
|||
2000-11-06 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* it.po: updates to the italian translation from
|
||||
Daniele Medri <daniele.medri@libero.it>
|
||||
|
||||
2000-11-05 Shirasaki Yasuhiro <yasuhiro@gnome.gr.jp>
|
||||
|
||||
* ja.po: Updated Japanese translation.
|
||||
|
|
Loading…
Reference in New Issue