----------------------------------------------------------------------
Modified Files:
ChangeLog app/Makefile.am app/brush_select.c
app/gimpbrushlist.c app/gimpbrushlist.h app/gimpsetF.h
added sorting on the brush_list, fixed some encapulation issues.
app/paint_funcs.c
minor speed tweak to border_region
Added Files:
app/gimpbrushlistF.h app/gimpbrushlistP.h app/gimplist.c
app/gimplist.h app/gimplistF.h app/gimplistP.h
Split gimpbrushlist.h into 3 files. New class "GimpList"
----------------------------------------------------------------------
24 lines
446 B
C
24 lines
446 B
C
#ifndef __GIMPBRUSHLISTP_H__
|
|
#define __GIMPBRUSHLISTP_H__
|
|
|
|
#include "gimplistP.h"
|
|
#include "gimpbrushlist.h"
|
|
|
|
struct _GimpBrushList
|
|
{
|
|
GimpList gimplist;
|
|
int num_brushes;
|
|
};
|
|
|
|
struct _GimpBrushListClass
|
|
{
|
|
GimpListClass parent_class;
|
|
};
|
|
|
|
typedef struct _GimpBrushListClass GimpBrushListClass;
|
|
|
|
|
|
#define BRUSH_LIST_CLASS(klass) \
|
|
GTK_CHECK_CLASS_CAST (klass, gimp_brush_list_get_type(), GimpBrushListClass)
|
|
|
|
#endif /* __GIMPBRUSHLISTP_H__ */
|