]> www.wagner.pp.ru Git - oss/fgis.git/blob - dll/fgisEppEdit.h
First checked in version
[oss/fgis.git] / dll / fgisEppEdit.h
1 #ifndef FGIS_EDIT_H
2 #define FGIS_EDIT_H
3 extern char *mapErrorExplanation[];
4
5 int Fgis_RasterEditable(Tcl_Interp *interp,EPP *epp,char *rastername,int value);
6 int Fgis_DrawCell(Tcl_Interp *interp,EPP* epp,double x,double y, int value);
7
8 int Fgis_DrawCircle(Tcl_Interp *interp,EPP* epp,double x,double y,double r,
9      int value);
10 int Fgis_DrawCircleInt(Tcl_Interp *interp, EPP *epp, double x, double y,
11     int r, int value);
12 int Fgis_DrawBox(Tcl_Interp *interp, EPP *epp, double x1, double y1,
13   double x2, double y2, int value);
14 int Fgis_DrawFrame(Tcl_Interp *interp, EPP *epp, double x1, double y1,
15   double x2, double y2, int width, int value);
16 int Fgis_DrawLine(Tcl_Interp *interp, EPP *epp, int pointc, double *pointv,
17   int width,  int value);
18 int Fgis_DrawPolygon(Tcl_Interp *interp, EPP *epp, int pointc, double *pointv,
19   int value);
20 int Fgis_Fill4(Tcl_Interp *interp, EPP *epp, double x, double y, int value);
21 int Fgis_Fill4Until(Tcl_Interp *interp, EPP *epp, double x, double y, 
22  int value, int stopValue);
23 int Fgis_Fill8(Tcl_Interp *interp, EPP *epp, double x, double y, int value);
24 int Fgis_Fill8Until(Tcl_Interp *interp, EPP *epp, double x, double y,
25  int value, int stopValue);
26 #endif