version 1.2, 2000/08/21 08:31:51 |
version 1.9, 2015/08/14 13:51:56 |
|
|
* shall be made on your publication or presentation in any form of the |
* shall be made on your publication or presentation in any form of the |
* results obtained by use of the SOFTWARE. |
* results obtained by use of the SOFTWARE. |
* (4) In the event that you modify the SOFTWARE, you shall notify FLL by |
* (4) In the event that you modify the SOFTWARE, you shall notify FLL by |
* e-mail at risa-admin@flab.fujitsu.co.jp of the detailed specification |
* e-mail at risa-admin@sec.flab.fujitsu.co.jp of the detailed specification |
* for such modification or the source code of the modified part of the |
* for such modification or the source code of the modified part of the |
* SOFTWARE. |
* SOFTWARE. |
* |
* |
|
|
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* |
* |
* $OpenXM: OpenXM_contrib2/asir2000/plot/plotg.c,v 1.1.1.1 1999/12/03 07:39:13 noro Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/plot/plotg.c,v 1.8 2015/08/06 10:01:53 fujimoto Exp $ |
*/ |
*/ |
|
|
|
/* XXX : declared in ox_plot_xevent.c on darwin */ |
|
#if !defined(__DARWIN__) |
#include "ca.h" |
#include "ca.h" |
#include "parse.h" |
#include "parse.h" |
#include "ox.h" |
#include "ox.h" |
|
|
DISPLAY *display; |
DISPLAY *display; |
CURSOR normalcur,runningcur,errorcur; |
CURSOR normalcur,runningcur,errorcur; |
|
|
|
#if defined(VISUAL) || defined(__MINGW32__) |
|
POINT start_point, end_point; |
|
SIZE cansize; |
|
#else |
Window rootwin; |
Window rootwin; |
GC drawGC,dashGC,hlGC,scaleGC,clearGC,xorGC,colorGC; |
GC drawGC,dashGC,hlGC,scaleGC,clearGC,xorGC,colorGC,cdrawGC; |
XFontStruct *sffs; |
XFontStruct *sffs; |
|
#endif |
|
|
struct canvas *canvas[MAXCANVAS]; |
struct canvas *canvas[MAXCANVAS]; |
|
struct canvas *closed_canvas[MAXCANVAS]; |
struct canvas *current_can; |
struct canvas *current_can; |
|
#endif |