gimp/app/rect_selectP.h

24 lines
766 B
C
Raw Normal View History

1997-11-25 06:05:25 +08:00
#ifndef __RECT_SELECTP_H__
#define __RECT_SELECTP_H__
#include "draw_core.h"
typedef struct _rect_select RectSelect, EllipseSelect;
struct _rect_select
{
DrawCore * core; /* Core select object */
int x, y; /* upper left hand coordinate */
int w, h; /* width and height */
int center; /* is the selection being created from the center out? */
int op; /* selection operation (ADD, SUB, etc) */
int fixed_size;
int fixed_width;
int fixed_height;
guint context_id; /* for the statusbar */
1997-11-25 06:05:25 +08:00
};
#endif /* __RECT_SELECTP_H__ */