File: rect_selectP.h

package info (click to toggle)
gimp 1.0.2-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 17,116 kB
  • ctags: 16,070
  • sloc: ansic: 226,067; lisp: 8,497; sh: 4,965; makefile: 4,543
file content (19 lines) | stat: -rw-r--r-- 595 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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__  */