1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/** \file drawgeom.h
*
*/
/* XTrkCad - Model Railroad CAD
* Copyright (C) 2005 Dave Bullis
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef HAVE_DRAWGEOM_H
#define HAVE_DRAWGEOM_H
#include "ccurve.h"
#include "common.h"
#include "draw.h"
#include "track.h"
#include "wlib.h"
#define OP_LINE (0)
#define OP_DIMLINE (1)
#define OP_BENCH (2)
#define OP_TBLEDGE (3)
#define OP_CURVE1 (4)
#define OP_CURVE2 (5)
#define OP_CURVE3 (6)
#define OP_CURVE4 (7)
#define OP_CIRCLE1 (8)
#define OP_CIRCLE2 (9)
#define OP_CIRCLE3 (10)
#define OP_BOX (11)
#define OP_POLY (12)
#define OP_FILLCIRCLE1 (13)
#define OP_FILLCIRCLE2 (14)
#define OP_FILLCIRCLE3 (15)
#define OP_FILLBOX (16)
#define OP_FILLPOLY (17)
#define OP_BEZLIN (18)
#define OP_LAST (OP_BEZLIN)
typedef struct {
void (*message)( char *, ... );
void (*Redraw)( void );
drawCmd_t *D;
long Op;
wDrawColor Color;
long Width;
long benchOption;
int State;
curveData_t ArcData;
ANGLE_T ArcAngle;
int Started;
BOOL_T Changed;
} drawContext_t;
extern drawContext_t * drawContext;
extern wDrawColor lineColor;
extern long lineWidth;
void DrawGeomOp( void * );
STATUS_T DrawGeomMouse( wAction_t, coOrd, drawContext_t * );
STATUS_T DrawGeomModify( coOrd, ANGLE_T, wIndex_t, trkSeg_p, wAction_t, coOrd, wBool_t );
#endif //HAVE_DRAWGEOM_H
|