draw6.h
0000/**************************************
0001 draw6.h IPC MakeView-chain
0002**************************************/
0003#include "draw7.h"
0004
0005int MakeView(int width, int height);
0006
0007int SetColor(int r,int g,int b);
0008
0009int MoveTo(int x,int y);
0010
0011int LineTo(int x,int y);
0012
0013int GifOutMin();
0014
0015int GifOut();
0016
0017int OpenPoly();
0018
0019int ClosePoly();
0020
0021int FontInfo(int font,int direc,int mode);
0022
0023int DrawString(char *c);
0024
0025int MakeGraph(int left,int top,int right,int bottom);
0026
0027int HorizTime();
0028
0029int HorizScale(char *c,double left,double right);
0030
0031int VertScale(char *c,double bottom,double top);
0032
0033int MoveToG(double x,double y);
0034
0035int LineToG(double x,double y);
0036
0037int PlotG(int mark,double x,double y);
0038
0039int DrawNum(int num);
0040
0041int DrawFNum(char *fmt,double x);
0042
0043int PngOut();
0044
0045int HorizLog();
0046
0047int VertLog();
0048
0049int MakePixmap(int type,int wid,int hei);
0050
0051int DestroyPixmap(int ref);
0052
0053int XferPixmap(int ref,PixMap *p);
0054
0055int PastePixmap(int ref,int xdst,int ydst,int mode);
0056
0057int JpgOut(int ref);
0058
0059void drawGrid();
0060
0061void GifPatent();
0062
0063void ChangeSize(int deno);
0064
0065int MakeView1(int type,int width, int height);
0066
0067int SetColor1(int r,int g,int b);
0068
0069void GifSave(int num);
0070
0071void GifSaveMin(int num);
0072
0073int SetColorId(int id);
0074
0075int PalettePeek(int id,int *r,int *g,int *b);
0076
0077int PalettePoke(int id,int r,int g,int b);
0078
0079int GifOutFile(char *s);
0080
0081int GifPaste(char *s,int left,int top);
0082
0083int CopyPixmap(int ref,int xsrc,int ysrc);
0084
0085int gifsize(int size);
0086
0087int SeedFill(int on);
0088
0089int GifOutMode(int mode);
0090