Annotation of OpenXM_contrib2/asir2000/plot/ifplot.h, Revision 1.14
1.2 noro 1: /*
2: * Copyright (c) 1994-2000 FUJITSU LABORATORIES LIMITED
3: * All rights reserved.
4: *
5: * FUJITSU LABORATORIES LIMITED ("FLL") hereby grants you a limited,
6: * non-exclusive and royalty-free license to use, copy, modify and
7: * redistribute, solely for non-commercial and non-profit purposes, the
8: * computer program, "Risa/Asir" ("SOFTWARE"), subject to the terms and
9: * conditions of this Agreement. For the avoidance of doubt, you acquire
10: * only a limited right to use the SOFTWARE hereunder, and FLL or any
11: * third party developer retains all rights, including but not limited to
12: * copyrights, in and to the SOFTWARE.
13: *
14: * (1) FLL does not grant you a license in any way for commercial
15: * purposes. You may use the SOFTWARE only for non-commercial and
16: * non-profit purposes only, such as academic, research and internal
17: * business use.
18: * (2) The SOFTWARE is protected by the Copyright Law of Japan and
19: * international copyright treaties. If you make copies of the SOFTWARE,
20: * with or without modification, as permitted hereunder, you shall affix
21: * to all such copies of the SOFTWARE the above copyright notice.
22: * (3) An explicit reference to this SOFTWARE and its copyright owner
23: * shall be made on your publication or presentation in any form of the
24: * results obtained by use of the SOFTWARE.
25: * (4) In the event that you modify the SOFTWARE, you shall notify FLL by
1.3 noro 26: * e-mail at risa-admin@sec.flab.fujitsu.co.jp of the detailed specification
1.2 noro 27: * for such modification or the source code of the modified part of the
28: * SOFTWARE.
29: *
30: * THE SOFTWARE IS PROVIDED AS IS WITHOUT ANY WARRANTY OF ANY KIND. FLL
31: * MAKES ABSOLUTELY NO WARRANTIES, EXPRESSED, IMPLIED OR STATUTORY, AND
32: * EXPRESSLY DISCLAIMS ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS
33: * FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT OF THIRD PARTIES'
34: * RIGHTS. NO FLL DEALER, AGENT, EMPLOYEES IS AUTHORIZED TO MAKE ANY
35: * MODIFICATIONS, EXTENSIONS, OR ADDITIONS TO THIS WARRANTY.
36: * UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, TORT, CONTRACT,
37: * OR OTHERWISE, SHALL FLL BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY
38: * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL
39: * DAMAGES OF ANY CHARACTER, INCLUDING, WITHOUT LIMITATION, DAMAGES
40: * ARISING OUT OF OR RELATING TO THE SOFTWARE OR THIS AGREEMENT, DAMAGES
41: * FOR LOSS OF GOODWILL, WORK STOPPAGE, OR LOSS OF DATA, OR FOR ANY
42: * DAMAGES, EVEN IF FLL SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF
43: * SUCH DAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY. EVEN IF A PART
44: * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY
45: * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
46: * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
47: *
1.14 ! saito 48: * $OpenXM: OpenXM_contrib2/asir2000/plot/ifplot.h,v 1.13 2005/05/18 03:27:00 noro Exp $
1.2 noro 49: */
1.7 noro 50: #if defined(VISUAL)
1.4 noro 51: /* for Visual C++ */
52: #include <windows.h>
1.1 noro 53: #else
54: #include <sys/types.h>
55: #include <X11/Xlib.h>
56: #include <X11/Xutil.h>
57: #include <X11/Xatom.h>
58: #include <X11/Intrinsic.h>
59: #include <X11/StringDefs.h>
60: #include <X11/Shell.h>
61: #include <X11/Xaw/Form.h>
62: #include <X11/Xaw/Command.h>
63: #include <X11/Xaw/Label.h>
64: #include <X11/Xaw/Simple.h>
65: #include <X11/Xaw/Dialog.h>
66: #include <X11/Xaw/Box.h>
67: #ifndef OLDX11
68: #include <X11/Xaw/Toggle.h>
69: #include <X11/Xaw/Scrollbar.h>
70: #else
71: #include <X11/Xaw/Scroll.h>
72: #define toggleWidgetClass commandWidgetClass
73: #define XtPointer pointer
74: #define XawDialogAddButton XtDialogAddButton
75: #define XawScrollbarSetThumb XtScrollBarSetThumb
76: #endif
77: #endif
78:
79: #define C_IFPLOT C_PRIV
80: #define C_BMPLOT C_PRIV+1
81: #define C_CLEAR C_PRIV+2
82: #define C_PMFLUSH C_PRIV+3
83: #define C_CONPLOT C_PRIV+4
84: #define C_PLOTOVER C_PRIV+5
85: #define C_PLOT C_PRIV+6
86: #define C_APLOT C_PRIV+7
87: #define C_DRAWCIRCLE C_PRIV+8
88:
1.5 noro 89: #define MAXCANVAS 64
1.1 noro 90: #define MAXGC 16
1.11 noro 91: #define DEFAULTPOLARSTEP 400
1.1 noro 92: #define DEFAULTWIDTH 400
93: #define DEFAULTHEIGHT 400
94:
95: #define MODE_IFPLOT 0
96: #define MODE_CONPLOT 1
97: #define MODE_PLOT 2
1.4 noro 98: #define MODE_INTERACTIVE 3
1.11 noro 99: #define MODE_POLARPLOT 4
1.14 ! saito 100: #if defined(INTERVAL)
! 101: #define MODE_INEQNP 5
! 102: #endif
1.1 noro 103:
104: #define DIR_X 0
105: #define DIR_Y 1
106: #define DIR_Z 2
107:
1.7 noro 108: #if defined(VISUAL)
1.4 noro 109: /* for Visual C++ */
110: #define XC(a) ((a).x)
111: #define YC(a) ((a).y)
112: #define DISPLAY int
1.8 noro 113: #define WINDOW void *
1.4 noro 114: #define CURSOR int
115: #define DRAWABLE HDC
116:
117: /* XXX : use GC argument as the color */
118: #define DRAWPOINT(d,p,g,x,y) SetPixel(p,x,y,0)
119:
120: #define DRAWLINE(d,p,g,x,y,u,v) MoveToEx(p,x,y,&oldpos); LineTo(p,u,v)
1.5 noro 121: #define DRAWSTRING(d,p,g,x,y,s,l) TextOut(p,x,y,s,l)
122: /* #define TEXTWIDTH(f,s,l) */
1.1 noro 123: #else
1.4 noro 124: /* for UNIX */
1.1 noro 125: #define POINT XPoint
126: #define XC(a) ((a).x)
127: #define YC(a) ((a).y)
128: #define DRAWPOINT(d,p,g,x,y) (count_and_flush(),XDrawPoint(d,p,g,x,y))
129: #define DRAWLINE(d,p,g,x,y,u,v) XDrawLine(d,p,g,x,y,u,v)
130: #define DRAWSTRING(d,p,g,x,y,s,l) XDrawString(d,p,g,x,y,s,l)
131: #define TEXTWIDTH(f,s,l) XTextWidth(f,s,l)
132: #define DISPLAY Display
133: #define WINDOW Window
134: #define CURSOR Cursor
135: #define DRAWABLE Drawable
136: #endif
137:
138: struct pa {
139: int length;
140: POINT *pos;
141: };
142:
1.4 noro 143: typedef struct RealVect {
144: int len;
145: int body[1];
146: } RealVect;
147:
148: #define MKRVECT2(v,x,y)\
149: ((v)=(RealVect *)MALLOC_ATOMIC(sizeof(RealVect)+sizeof(int)),\
150: (v)->len=2,(v)->body[0]=(x),(v)->body[1]=(y))
1.5 noro 151: #define MKRVECT3(v,x,y,z)\
152: ((v)=(RealVect *)MALLOC_ATOMIC(sizeof(RealVect)+2*sizeof(int)),\
153: (v)->len=3,(v)->body[0]=(x),(v)->body[1]=(y),(v)->body[2]=(z))
154: #define MKRVECT4(v,x,y,z,u)\
1.4 noro 155: ((v)=(RealVect *)MALLOC_ATOMIC(sizeof(RealVect)+3*sizeof(int)),\
1.5 noro 156: (v)->len=4,(v)->body[0]=(x),(v)->body[1]=(y),(v)->body[2]=(z),(v)->body[3]=(u))
1.12 noro 157: #define MKRVECT5(v,x,y,z,u,w)\
158: ((v)=(RealVect *)MALLOC_ATOMIC(sizeof(RealVect)+4*sizeof(int)),\
159: (v)->len=4,(v)->body[0]=(x),(v)->body[1]=(y),(v)->body[2]=(z),(v)->body[3]=(u),(v)->body[4]=(w))
1.5 noro 160:
161: #define RV_POINT 1
162: #define RV_LINE 2
163: #define RV_ARC 3
1.4 noro 164:
1.1 noro 165: struct canvas {
166: int index;
1.7 noro 167: #if defined(VISUAL)
1.4 noro 168: /* for Visual C++ */
169: void *window; /* pointer to CMainFrame */
170: HWND hwnd; /* handle to the canvas window */
171: HDC pix; /* shadow DC on memory */
172: char *prefix;
173: int percentage;
174: struct canvas *real_can;
1.1 noro 175: #else
176: Widget shell,xcoord,ycoord,xdone,ydone,level,wideb,preciseb,noaxisb;
177: Window window;
178: Pixmap pix;
179: #endif
180: char *wname;
181: char mode;
182: char wide;
183: char precise;
184: char noaxis;
185: V vx,vy;
186: P formula;
187: int width,height;
188: double xmin,xmax;
189: double ymin,ymax;
190: double zmin,zmax;
191: int nzstep;
192: Q qxmin,qxmax;
193: Q qymin,qymax;
194: struct pa *pa;
1.4 noro 195: /* to register the history in the interactive mode */
196: NODE history;
1.13 noro 197: int color;
1.1 noro 198: };
199:
200: extern struct canvas *canvas[];
1.10 noro 201: extern struct canvas *closed_canvas[];
1.1 noro 202: extern struct canvas *current_can;
1.14 ! saito 203: #if defined(INTERVAL)
! 204: extern Pixel BackPixel;
! 205: extern int Itvplot;
! 206: #endif
1.1 noro 207:
208: extern VL CO;
209: extern int stream;
210:
211: extern DISPLAY *display;
212: extern CURSOR normalcur,runningcur,errorcur;
213:
1.4 noro 214: #if defined(VISUAL)
215: extern POINT start_point,end_point;
216: extern SIZE cansize;
217: #else
1.1 noro 218: extern Window rootwin;
1.6 noro 219: extern GC drawGC,dashGC,hlGC,scaleGC,clearGC,xorGC,colorGC,cdrawGC;
1.1 noro 220: extern XFontStruct *sffs;
1.8 noro 221: #endif
1.9 takayama 222:
223: struct xcolorForPS {
1.14 ! saito 224: unsigned long pixel;
! 225: double r,g,b;
! 226: int print;
1.9 takayama 227: };
1.8 noro 228:
229: /* prototypes */
1.14 ! saito 230: void calc(double **,struct canvas *,int);
! 231: double usubstrp(P,double);
! 232: void qcalc(char **,struct canvas *);
! 233: void sturmseq(VL,P,VECT *);
! 234: void seproot(VECT,int,int,int *);
! 235: int numch(VECT,Q,Q);
! 236: void usubstqp(P,Q,Q *);
! 237: void plotcalc(struct canvas *);
! 238: int open_canvas(NODE);
! 239: int plot(NODE);
! 240: int memory_plot(NODE,LIST *);
! 241: int plotover(NODE);
! 242: int drawcircle(NODE);
! 243: int draw_obj(NODE);
! 244: int clear_canvas(NODE);
! 245: int arrayplot(NODE);
! 246: #if defined(INTERVAL)
! 247: int itvifplot(NODE);
! 248: int itvplot1(NODE);
! 249: int itvplot2(NODE);
! 250: int itvplot3(NODE);
! 251: int itvplot4(NODE);
! 252: int objcp(NODE);
! 253: int ineqn(NODE);
! 254: int ineqnover(NODE);
! 255: int ineqnand(NODE);
! 256: int ineqnor(NODE);
! 257: int ineqnxor(NODE);
! 258: void ineqnmain(struct canvas *, int, int);
! 259: void obj_op(struct canvas *, struct canvas *, int);
! 260: void area_print(DISPLAY *, int **, struct canvas *, int);
! 261: void itvcalc(int **, struct canvas *, int, int);
! 262: void reccalc(P,V,V,int,int,int,int,double*,double*,int, int **, int);
! 263: void itvplotmain(struct canvas *, int);
! 264: void itvcalc1(int **, struct canvas *, int);
! 265: void itvcalc2(int **, struct canvas *, int);
! 266: void itvcalc3(int **, struct canvas *, int, int);
! 267: void itvcalc4(int **, struct canvas *, int, int);
! 268: void reccalc3(P,V,V,int,int,int,int,double*,double*, int, int **, int);
! 269: void reccalc4(P,V,V,int,int,int,int,double*,double*, int, int **, int);
! 270: void itvplotmain1(struct canvas *);
! 271: void itvplotmain2(struct canvas *);
! 272: void itvplotmain3(struct canvas *, int);
! 273: void itvplotmain4(struct canvas *, int);
! 274: #endif
! 275: void ifplot_resize(struct canvas *,POINT,POINT);
! 276: void plot_resize(struct canvas *,POINT,POINT);
! 277: void ifplotmain(struct canvas *);
! 278: void qifplotmain(struct canvas *);
! 279: void if_print(DISPLAY *,double **,struct canvas *);
! 280: void memory_if_print(double **,struct canvas *,BYTEARRAY *);
! 281: void con_print(DISPLAY *,double **,struct canvas *);
! 282: void memory_con_print(double **,struct canvas *,BYTEARRAY *);
! 283: void qif_print(DISPLAY *,char **,struct canvas *);
! 284: void plot_print(DISPLAY *,struct canvas *);
! 285: void draw_point(DISPLAY *,struct canvas *,int,int,int);
! 286: void draw_line(DISPLAY *,struct canvas *,int,int,int,int,int);
! 287: void pline(DISPLAY *,struct canvas *,DRAWABLE);
! 288: double adjust_scale(double,double);
! 289: void initmarker(struct canvas *,char *);
! 290: void marker(struct canvas *,int,int);
! 291: void define_cursor(WINDOW,CURSOR);
1.8 noro 292: void count_and_flush();
293: void flush();
294:
295: #if defined(VISUAL)
296: int search_canvas();
297: int search_active_canvas();
298: void create_canvas(struct canvas *can);
299: void destroy_canvas(struct canvas *can);
300: void clear_pixmap(struct canvas *can);
301: void alloc_pixmap(struct canvas *can);
302: void copy_to_canvas(struct canvas *can);
303: void copy_subimage(struct canvas *subcan,struct canvas *can,POINT pos);
304: void draw_wideframe(struct canvas *can,DRAWABLE d);
305: void create_brushes();
306: void draw_frame0(DRAWABLE d,POINT spos,POINT epos);
307:
308: void reset_current_computation();
309: void set_selection();
310: void reset_selection();
311: void set_busy();
312: void reset_busy();
1.1 noro 313: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>