mirror of https://github.com/GNOME/gimp.git
20 lines
595 B
C
20 lines
595 B
C
#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) */
|
|
};
|
|
|
|
#endif /* __RECT_SELECTP_H__ */
|