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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392
|
/*------------------------------------------------------------------------
* Graphic library
* Copyright INRIA
* newGraph Library header
* Matthieu PHILIPPE, INRIA 2001-2002
* Djalel ABDEMOUCHE, INRIA 2002-2004
* Fabrice Leray, INRIA 2004-xxxx
* Comment:
* This file contains all structures definitions used for New Graphics mode.
--------------------------------------------------------------------------*/
#ifndef __SCI_OBJECT_STRUCTURE__
#define __SCI_OBJECT_STRUCTURE__
#ifdef WIN32
#include <windows.h>
#include <windowsx.h>
#ifndef __GNUC__XXX
#include <commctrl.h>
#endif
#include <winuser.h>
#include "../wsci/wgnuplib.h"
#endif
/*en fait il n'y a essentiellement besion que de Math.h dans stack-c.h
sauf pour les callback (il faudrait creer une fonction et l'appeler) */
#include "../stack-c.h"
#ifndef WIN32
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
#define PS_SOLID 0
#define HS_HORIZONTAL 0
#define PLANES 0
#define RASTERCAPS 0
#define RC_PALETTE 0
#define BITSPIXEL 0
#define FLOAT 0
#define TEXTMETRIC 0
#define GM_ADVANCED 0
#define MWT_IDENTITY 0
#define HORZRES 0
#define VERTRES 0
#define VERTSIZE 0
#define DEFAULT_CHARSET 0
#define HORZSIZE 0
#define MF_SEPARATOR 0
#define SW_MINIMIZE 0
#define SW_SHOWNORMAL 0
#define SB_VERT 0
#define SB_HORZ 0
#endif
#define NUMCOLORS_SCI 32
/* Renvoi le pointeur sur la structure */
#define pFIGURE_FEATURE(pointobj) ((sciFigure *)pointobj->pfeatures)/** */
#define pSTATUSB_FEATURE(pointobj) ((sciStatusBar *)pointobj->pfeatures)/** */
#define pSUBWIN_FEATURE(pointobj) ((sciSubWindow *)pointobj->pfeatures)/** */
#define pTEXT_FEATURE(pointobj) ((sciText *)pointobj->pfeatures)/** */
#define pTITLE_FEATURE(pointobj) ((sciTitle *)pointobj->pfeatures)/** */
#define pLEGEND_FEATURE(pointobj) ((sciLegend *)pointobj->pfeatures)/** */
#define pPOLYLINE_FEATURE(pointobj) ((sciPolyline *)pointobj->pfeatures)/** */
#define pARC_FEATURE(pointobj) ((sciArc *)pointobj->pfeatures)/** */
#define pRECTANGLE_FEATURE(pointobj) ((sciRectangle *)pointobj->pfeatures)/** */
#define pMERGE_FEATURE(pointobj) ((sciMerge *)pointobj->pfeatures)/* DJ.A 30/12 */
#define pSURFACE_FEATURE(pointobj) ((sciSurface *)pointobj->pfeatures)/** */
#define pLIGHT_FEATURE(pointobj) ((sciLightSource *)pointobj->pfeatures)/** */
/*#define pAXIS_FEATURE(pointobj) ((sciAxis *)pointobj->pfeatures)*/ /** */
#define pAXES_FEATURE(pointobj) ((sciAxes *)pointobj->pfeatures)/** */
#define pGRAYPLOT_FEATURE(pointobj) ((sciGrayplot *)pointobj->pfeatures)/** */
#define pFEC_FEATURE(pointobj) ((sciFec *)pointobj->pfeatures)/** */
#define pPANNER_FEATURE(pointobj) ((sciPanner *)pointobj->pfeatures)/** */
#define pSBH_FEATURE(pointobj) ((sciScrollBarHorz *)pointobj->pfeatures)/** */
#define pSBV_FEATURE(pointobj) ((sciScrollBarVert *)pointobj->pfeatures)/** */
#define pLABELMENU_FEATURE(pointobj) ((sciLabelMenu *)pointobj->pfeatures)/** */
#define pMENUCONTEXT_FEATURE(pointobj) ((sciMenuContext *)pointobj->pfeatures)/** */
#define pMENU_FEATURE(pointobj) ((sciMenu *)pointobj->pfeatures)/** */
#define pAGREG_FEATURE(pointobj) ((sciAgreg *)pointobj->pfeatures)/** */
#define pSEGS_FEATURE(pointobj) ((sciSegs *)pointobj->pfeatures)/** */
#define pLABEL_FEATURE(pointobj) ((sciLabel *)pointobj->pfeatures)/** */
#define pUIMENU_FEATURE(pointobj) ((sciUimenu *)pointobj->pfeatures)/** */
#ifndef WIN32
typedef unsigned short HMENU;
typedef void *HFONT;
typedef int BOOL;
typedef unsigned long DWORD;
#endif
typedef struct tagPOINT2D
{
double x;
double y;
}
POINT2D;
typedef struct tagPOINT3D
{/** */
double x;/** */
double y;/** */
double z;/** */
}/**used to specifie a 3D coordinates */
POINT3D;
/**@name sciEntityType
* Used to determine the type of the entity
* @memo SCI_FIGURE,
* @memo SCI_SUBWIN,
* @memo SCI_TEXT,
* @memo SCI_TITLE,
* @memo SCI_LEGEND,
* @memo SCI_ARC,
* @memo SCI_POLYLINE,
* @memo SCI_RECTANGLE,
* @memo SCI_SURFACE,
* @memo SCI_LIGHT,
* @memo SCI_AXIS,
* @memo SCI_AXES,
* @memo SCI_SEGS
* @memo SCI_GRAYPLOT,
* @memo SCI_FEC,
* @memo SCI_PANNER,
* @memo SCI_SBH,
* @memo SCI_SBV,
* @memo SCI_MENU,
* @memo SCI_MENUCONTEXT,
* @memo SCI_STATUSB,
*/
typedef enum
{/**Entity type FIGURE*/
SCI_FIGURE,
/**Entity type SUBWINDOW*/
SCI_SUBWIN,
/**Entity type TEXT*/
SCI_TEXT,
/**Entity type TITLE */
SCI_TITLE,
/**Entity type LEGEND */
SCI_LEGEND,
/**Entity type ARC */
SCI_ARC,
/**Entity type POLYLINE*/
SCI_POLYLINE,
/**Entity type RECTANGLE*/
SCI_RECTANGLE,
/**Entity type SURFACE*/
SCI_SURFACE,
/**Entity type MERGE*/ /* DJ.A 30/12 */
SCI_MERGE,
/**Entity type LIGHT*/
SCI_LIGHT,
/**Entity type AXIS*/
SCI_AXIS,
/**Entity type AXES*/
SCI_AXES,
/**Entity type SEGS*/
SCI_SEGS,
/**Entity type GRAYPLOT*/
SCI_GRAYPLOT,
/**Entity type FEC*/
SCI_FEC,
/**Entity type PANNER*/
SCI_PANNER,
/**Entity type HORIZONTALL SCROLL BAR */
SCI_SBH,
/**Entity type VERTICALL SCROLL BAR*/
SCI_SBV,
/**Entity type MENU*/
SCI_MENU,
/**Entity type CONTEXT MENU*/
SCI_MENUCONTEXT,
/**Entity type STATUS BAR*/
SCI_STATUSB,
/**Entity type Compound */
SCI_AGREG,
/**Entity type LABEL created by F.Leray 26.05.04 */
SCI_LABEL,
/**Entity type UIMENU created by A.C 28.09.05 **/
SCI_UIMENU
}
/**Struct of Entity type*/
sciEntityType;
typedef struct _Vertices
{
int value_xm;
int value_ym;
double value_x;
double value_y;
double value_z;
struct _Vertices * pNext;
}
Vertices;
/**@name sciPointObj
* Used to determine the feature and the type of the entity
*/
typedef struct
{/** */
sciEntityType entitytype;
/** points to the characteristic of the structure (figure, axes...) */
void *pfeatures;
}/** */
sciPointObj;
/**@name sciHandleTab
* Used to determine handles associated with the entity
*/
typedef struct tagHandleTab
{/** point to the structure that uses this handle */
sciPointObj *pointobj;
/** */
long index;
/** */
struct tagHandleTab *pprev;
/** */
struct tagHandleTab *pnext;
}/** */
sciHandleTab;
/* /\**@name sciClipTab */
/* * Used to determine store clipping associated to the entity */
/* *\/ */
/* typedef struct */
/* {/\** *\/ */
/* int index; */
/* /\** *\/ */
/* double clip[4]; */
/* }/\** *\/ */
/* sciClipTab; */
/**@name Sons
* Used to determine the hierarchy
sciPointObj *pointobj;
sciSons *pnext;
*/
typedef struct tagSons
{
/** */
struct tagSons *pprev;
/** is the pointer of next the son's structure */
sciPointObj *pointobj;
/** */
struct tagSons *pnext;
}
/** */
sciSons;
/**@name RelationShip
* Used to determine the hierarchy
*/
typedef struct
{/** is the scilab handle of THIS */
sciHandleTab *phandle;
/** points to the parent structures */
sciPointObj *pparent;
/** points to the sons structures */
sciSons *psons;
/** the last sciSons of the list (the first created!) */
sciSons *plastsons;
/** points to the current son */
sciPointObj *pcurrentson;
}/** */
sciRelationShip;
/**@name GraphicContext
* Used to know what are the contexte value attached with the Graphic area
* valeur de hachure (fillstyle)
* HS_BDIAGONAL 45-degree downward left-to-right hatch
* HS_CROSS Horizontal and vertical crosshatch
* HS_DIAGCROSS 45-degree crosshatch
* HS_FDIAGONAL 45-degree upward left-to-right hatch
* HS_HORIZONTAL Horizontal hatch
* HS_VERTICAL Vertical hatch
*
* LineStyle:
* PS_SOLID The pen is solid.
* PS_DASH The pen is dashed. This style is valid only when the pen width is one
* or less in device units.
* PS_DOT The pen is dotted. This style is valid only when the pen width is one
* or less in device units.
* PS_DASHDOT The pen has alternating dashes and dots. This style is valid only
* when the pen width is one or less in device units.
* PS_DASHDOTDOT The pen has alternating dashes and double dots. This style is
* valid only when the pen width is one or less in device units.
* PS_NULL The pen is invisible.
* PS_INSIDEFRAME The pen is solid. When this pen is used in any GDI drawing
* function that takes a bounding rectangle, the dimensions of the
* figure are shrunk so that it fits entirely in the bounding rectangle,
* taking into account the width of the pen. This applies only to geometric pens.
*/
typedef struct
{
/** currently not used in this version */
/** pointe sur un ID de la table des couleur Scilab */
int backgroundcolor;
/** pointe sur un ID de la table des couleur Scilab */
int foregroundcolor;
/** */
int fillcolor;
/** */
int fillstyle;
/** associeted to PEN or mark size */
int linewidth;
/** */
BOOL isline;
/** */
int linestyle;
/** */
BOOL ismark;
/** */
int markstyle;
/** */
int marksize;
/** */
int marksizeunit;
/** */
int markbackground;
/** */
int markforeground;
}/** */
sciGraphicContext;
/*----------------------
SCIFONT.H header file no more used
----------------------*/
/* Changing those lines, be carreful that
the new attribut is update in the sciset and sciget routines
*/
/** */
#define SCI_DONT_CARE 0
/** */
#define SCI_ATTR_BOLD 1
/** */
#define SCI_ATTR_ITALIC 2
/** */
#define SCI_ATTR_UNDERLINE 4
/** */
#define SCI_ATTR_STRIKEOUT 8
/**@name sciFont
* Used to know what are the contexte value attached with the Graphic area
*/
typedef struct
{
/** currently not used in this version */
/* il faudrait prendre la font windows */
/** pointe sur un ID de la table des couleur Scilab */
int backgroundcolor;
/** pointe sur un ID de la table des couleur Scilab */
int foregroundcolor;
/** pointe sur le nom de la fonte */
char *pfontname;
/** renvoi la longueur de fontname */
unsigned int fontnamelen;
/** */
int fonttype; /* scilab font index 0 to 9 */
/** Gets the width of the character in tenth of point */
int fontdeciwidth;
/** this is coded in tenth of a degree */
int textorientation;
}/** */
sciFont;
/**@name scigMode
* Used to determine all the mode that can be used. Only some entity can sets this itself
*/
typedef struct
{
/** Are new Plot added to the old plot on the graphics window */
BOOL addplot;
/** The min max ranges of the the graphics window is given by users */
BOOL autoscaling;
/** Is zooming allowed */
BOOL zooming;
/** Is the graphic automatically resized to fill the graphics window */
BOOL wresize;
/** Is old style */
BOOL oldstyle;
/** drawing xor mode */
int xormode;
}/** */
scigMode;
/**@name Range
* Structure used to specifie Range
*/
typedef struct
{/** */
double xmin;
/** */
double xmax;
/** */
double ymin;
/** */
double ymax;
/** */
double zmin;
/** */
double zmax;
}/** */
sciRange;
/**@name Figure
* Structure used to specify Figure (different to XGC)
* @see
*/
typedef struct
{/** will be integrated in the new structure */
struct BCG *pScilabXgc;
sciRelationShip relationship;
scigMode gmode;
sciGraphicContext graphiccontext; /* the only property used here is background */
sciPointObj * originalsubwin0011;
/** specifies the title for this window */
char name[80];
/** specifies le length of the string name */
int namelen;
/** specifies the number of this window */
int number;
/** specifies the dimension of this graphic */
int figuredimwidth;
int figuredimheight;
/* specifies the dimension of this figure */
int windowdimwidth;
int windowdimheight;
/* specifies the dimension of this window */
/** */
int inrootposx;
int inrootposy;
/** specifies the colr map */
double *pcolormap;
/** specifies if this window is iconified*/
int numcolors;
BOOL isiconified;
/** specifies if this window is selected */
BOOL isselected;
int rotstyle;
/** specifies if this object is visble */
BOOL visible;
BOOL auto_redraw;
/** specifies the number of the selected son */
int numsubwinselected;
/** specifies the current pixmap status */
int pixmap; /* DJ.A 30/12 */
int wshow ;
BOOL allredraw;
/* BOOL force_draw; /\* exclusively used with draw command to force the drawing of the object *\/ */
sciFont fontcontext; /* F.Leray 08.04.04 */
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
}/** */
sciFigure;
/**@name Text
* Structure used to specify Texte
*/
typedef struct
{
/** */
sciRelationShip relationship;
/** */
sciFont fontcontext;
sciGraphicContext graphiccontext; /* the only properties used by Text are foreground and background */
/** */
char *ptextstring;
/** position in scilab window (not pixel) */
double x;
/** position in scilab window (not pixel) */
double y;
/***/
double wh[2];
BOOL fill; /* to distinguish between xstring and xstringb */
BOOL isboxed ;
BOOL isline ; /* switch the contour of the box */
BOOL isfilled ; /* switch the transparency of the box */
/** */
double z; /**DJ.Abdemouche 2003**/
unsigned int textlen;
/** specifies the text scilab code for the callback associated with this entity */
char *callback;
/** the length of the callback code */
int callbacklen;
int callbackevent;
/** specifies if this object is visble */
BOOL visible;
int isclip;
double clip_region[4];
int clip_region_set;
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
}
sciText;
/**@name sciLegendPlace
* Enumeration used to specify the title place
*/
typedef enum
{
/** */
SCI_LEGEND_OUTSIDE = -1,
/** */
SCI_LEGEND_IN_INSIDE = 0,
/** */
SCI_LEGEND_IN_UPPER_LEFT = 1,
/** */
SCI_LEGEND_IN_UPPER_RIGHT = 2,
/** */
SCI_LEGEND_IN_LOWER_LEFT = 3,
/** */
SCI_LEGEND_IN_LOWER_RIGHT = 4,
/** */
SCI_LEGEND_IN_SPECIFIED = 5
} /** */
sciLegendPlace;
/**@name Legend
* Structure used to specify Legend
*/
typedef struct
{
sciGraphicContext graphiccontext; /* used to draw the line and marks of the curve F.Leray 21.01.05 */
/** */
int nblegends;
/** */
int *pstyle;
/** */
sciText text;
/** */
POINT2D pos;
/** specifies the frame's width */
int width;
/** specifies the frame's height */
int height;
/** */
BOOL isselected;
/** specifies if the legend is surrounded */
BOOL issurround;
/* void *associetedentity; get the associeted entity by asking parents.relation.sons */
/* the subwindow dimension is get by asking relation */
sciLegendPlace place;
/** */
sciSons *associatedentity;
/** */
sciPointObj **pptabofpointobj;
/** specifies if this object is visble */
BOOL visible;
int isclip;
double clip_region[4];
int clip_region_set;
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
}/** */
sciLegend;
/**@name sciTitlePlace
* Enumeration used to specify the title place
*/
typedef enum
{
/** */
SCI_TITLE_IN_TOP = 0,
/** */
SCI_TITLE_IN_BOTTOM = 1,
}/** */
sciTitlePlace;
/**@name Titre
* Structure used to specify Texte
*/
typedef struct
{
/** */
sciText text;
/** absolut position in subindow*/
POINT2D pos;
int ptype;
/** up, down */
sciTitlePlace titleplace;
/** */
BOOL isselected;
/** specifies if this object is visble */
BOOL visible;
int isclip;
}/** */
sciTitle;
/**@name Titre
* Structure used to specify Labels like Title or classic labels
*/
typedef struct
{
/* sciRelationShip relationship; */
/** */
sciText text;
/** absolut position in subindow*/
POINT2D pos;
int ptype;
/** up, down */
/*sciTitlePlace titleplace; */
/** */
BOOL isselected;
/** specifies if this object is visble */
BOOL visible;
int isclip;
double clip_region[4];
int clip_region_set;
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
BOOL isfilled; /* to know if a label has a colored frame as background */
BOOL auto_position; /* automatic or manual position selection for label */
BOOL auto_rotation; /* automatic or manual rotation selection for label (depends on the current view mode 2d or 3d mainly for y and z labels) */
/* not implemented for titles */
double position[2]; /* the (x,y) coord. of the label's position */
}
sciLabel;
typedef struct
{
sciRelationShip relationship;
/** */
sciText label; /* Callback in sciText struct. */
/** specifies if this object is visble */
BOOL visible;
BOOL handle_visible;
BOOL Enable;
int MenuPosition;
int CallbackType;
#if WIN32
HMENU hMenu;
int IDM_this;
#endif
}/** */
sciUimenu;
typedef struct
{
double xlim[4]; /* [xmin,xmax,ar,nint] */ /* F.Leray 21.09.04 : NOUVEAU sens pour xlim,ylim,zlim: NON! Comme avant valeurs en tight limits on/off */ /* F.Leray 07.10.04 */
double ylim[4]; /* [ymin,ymax,ar,nint] */ /* pour afficher les graduations automatiques on a calcul des xyzgrads provenant de TheTicks */
double zlim[4]; /* [zmin,zmax,ar,nint] */
/* tics data from algo */
double xgrads[20], ygrads[20], zgrads[20]; /* Here they are */
int nxgrads, nygrads, nzgrads; /* with their size <=> nber of tics */
/* tics data from user (=> u_...)*/
double *u_xgrads, *u_ygrads, *u_zgrads; /* Here they are */
int u_nxgrads, u_nygrads, u_nzgrads; /* with their size <=> nber of tics */
int ticscolor;
/* int fontsize;
int textcolor;*/
sciFont fontcontext;
int subint[3]; /* Dj.A 17/12/03 */
int rect;
char xdir; /** xdir = 'u' | 'd' : gives the xy-axes positions **/
char ydir; /** ydir = 'r' | 'l' : gives the xy-axes positions **/
/* flags for switching from auto to manual ticks */
BOOL auto_ticks[3]; /* if on, it means that the ticks are taken from computation (see theticks algo. by Francois D.) */
char **u_xlabels, **u_ylabels, **u_zlabels; /* label string corresponding to each specified u_xyzgrads */
double limits[7]; /* = 1 set tight limits = 0 set axes auto shape */
integer flag[3]; /* 3d options */
/* F.Leray 07.10.04 REMOVE AAINT*/
int nbsubtics[3]; /* Don't touch to subint because also deals with drawaxis: AXES structure has multiple uses... */ /* F.Leray 07.10.04 */
BOOL reverse[3]; /* if TRUE, it means that the corresponding axe is reversed */
BOOL axes_visible[3]; /* if TRUE, it means that the corresponding axes is drawn */
}
AXES;
/**@name SubWindow
* Structure used to specify SubWindow wich is a subplot
*/
typedef struct
{
AXES axes;
/** */
sciRelationShip relationship;
/** */
scigMode gmode;
/** */
sciGraphicContext graphiccontext;
/** */
/** specifies the title for this window */
char name[sizeof ("ScilabGraphic") + 4];
/** */
int namelen;
/** specifies the number for this window */
int number;
/** specifies if this subwindow is selected */
BOOL isselected;
/** specifies the position in the parent figure */
int infigureposx;
/** specifies the position in the parent figure */
int infigureposy;
/** specifies the width of the subplot */
int windimwidth;
/** specifies the width of the subplot */
int windimheight;
/** specifies the limite of the plot */
sciRange range;
/** specifies the factor of the x zoom */
int zoomx;
/** specifies the factor of the y zoom */
int zoomy;
double SRect[6]; /* [xmin xmax ymin ymax zmin zmax] : Strict rect. coming from update_specification_bounds function or from a set(a,"data_bounds",[...]) */
double FRect[6];
double WRect[4]; /* subwin */
double ARect[4]; /* margins*/
int zoomy_kp;
/* ZRect_kp is now useless : when unzooming we deal with SRect values */
double ZRect[6]; /* reversed for zoom only to avoid using FRect as zoom box AND computed box */ /* F.Leray 09.12.04 */
char logflags[3]; /* Z has a logflag now F.Leray 03.11.04 */
int grid[3];
/* BOOL isaxes; */
BOOL is3d;
BOOL tight_limits;
double theta_kp;
double alpha_kp;
double theta;
double alpha;
/** specifie the associated entity popup menu */
sciPointObj *pPopMenu;
/** specifies the text scilab code for the callback associated with this entity */
char *callback;
/** the length of the callback code */
int callbacklen;
int callbackevent;
/** specifies if this object is visble */
BOOL visible;
int isclip;
double clip_region[4];
int clip_region_set;
/**DJ.Abdemouche 2003**/
integer project[3];
BOOL isoview;
int hiddencolor;
int hiddenstate;
BOOL facetmerge;
int with_leg; /* Adding F.Leray 07.05.04 */ /* for strflag[0] support : not needed today */
BOOL cube_scaling; /* Matlab like view in 3D when one or two range is/are preferential */
BOOL FirstPlot; /* An internal state used to indicated that high level functions must not use SRect*/
/* F.Leray 25.04.05 Labels in sciSubWin*/
sciPointObj * mon_title;
sciPointObj * mon_x_label;
sciPointObj * mon_y_label;
sciPointObj * mon_z_label;
/* An internal state used as subtics flag (auto == FALSE, TRUE == manual) named flagNax */
BOOL flagNax;
int surfcounter; /* used to merge 3d objects */
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
int YGradMostOnLeft;
int YGradMostOnRight;
int XGradMostOnTop;
int XGradMostOnBottom;
BOOL firsttime_x;
BOOL firsttime_y;
Vertices * vertices_list; /* F.Leray 30.08.05 : stores the (x,y) coord. in term of user data coord. + pixel value on screen */
}/** */
sciSubWindow;
/**@name Arc
* Structure used to specify
* @author Matthieu PHILIPPE /MAJ D.ABDEMOUCHE
* @version 0.1
* @args
* @return
* @see
*/
typedef struct
{
/** */
sciRelationShip relationship;
/** */
sciGraphicContext graphiccontext;
/** */
double x;
/** */
double y;
/** */
double width;
/** */
double height;
/** begin at alpha1 */
double alphabegin;
/** end at alpha2 */
double alphaend;
int fill; /* another flag to specify wether we should have a box around the text */
/** */
BOOL isselected;
/** specifies the text scilab code for the callback associated with this entity */
char *callback;
/** the length of the callback code */
int callbacklen;
int callbackevent;
/** specifies if this object is visble */
BOOL visible;
int isclip;
double clip_region[4];
int clip_region_set;
double z; /**DJ.Abdemouche 2003**/
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
BOOL isfilled; /* to know if an arc is filled or not */
/* the isline property is inside the associated graphiccontext */
} /** */
sciArc;
/**@name listPoints
* Structure used to specify
*/
typedef struct taglistPoints
{
/** */
double x;
/** */
double y;
/** */
struct taglistPoints *pnextpoints;
} /** */
sciListPoints;
/**@name Polyline
* Structure used to specify
* @author Matthieu PHILIPPE /MAJ D.ABDEMOUCHE
* @version 0.1
* @args
* @return
* @see
*/
typedef struct
{
sciRelationShip relationship;
sciGraphicContext graphiccontext;
POINT2D *pvector; /* vecteur de points redondant, for future developpement*/
double *pvx; /* vecteur des points x doublon avec pvector je les garde pour compatiblite*/
double *pvy; /* vecteur des points y doublon avec pvector*/
double *pvz; /**DJ.Abdemouche 2003**/
int n1; /** number of points */
int n2; /** numbre of curves if Plot **/
int closed; /** is it a closed polyline */
int plot; /** defines the polyline_style (interpolated, staircase, bar_plot,...) : is it simple poly or a plot (Plot2d /Plot2d1/.../Plot2d4) */
BOOL isselected;
char *callback; /** specifies the text scilab code for the callback associated with this entity */
int callbacklen; /** the length of the callback code */
int callbackevent;
/** specifies if this object is visble */
BOOL visible;
int isclip;
double clip_region[4];
int clip_region_set;
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
BOOL isfilled; /* to know if a polyline is filled or not */
BOOL isinterpshaded;
int *scvector;
int dim_icv; /* dimension of the interpolated color vector (3 or 4) */
int bar_layout;
double * x_shift;
double * y_shift;
double * z_shift;
double bar_width;
double arsize_factor; /* to be able to enlarge arrow size without changing the line thickness */
}
sciPolyline; /** */
/**@name Rectangle
* Structure used to specify
*/
typedef struct
{
sciRelationShip relationship;
sciGraphicContext graphiccontext;
double x; /** original */
double y; /** original */
double width;
double height;
int fillflag;
int str;
integer strwidth;
integer strheight;
double horzcurvature; /** to do rectangle with round corner */ /*F.Leray not implemented till now... 19.03.04 to see...*/
double vertcurvature; /** to do rectangle with round corner */ /*F.Leray not implemented till now... 19.03.04 to see...*/
BOOL isselected;
char *callback; /** specifies the text scilab code for the callback associated with this entity */
int callbacklen; /** the length of the callback code */
int callbackevent;
/** specifies if this object is visble */
BOOL visible;
int isclip;
double clip_region[4];
int clip_region_set;
double z; /** rectangle */
BOOL flagstring; /* flag used to determine wether the rectangle is used to surround a string : used when axes is reversed */
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
BOOL isfilled; /* to know if a rectangle is filled or not */
}
sciRectangle; /** */
typedef enum
{
SCI_FAC3D,
SCI_CONTOUR,
SCI_PARAM3D,
SCI_PARAM3D1,
SCI_PLOT3D,
}
sciTypeOf3D;
/**@name Surface
* Structure used to specify
*/
typedef struct
{
sciRelationShip relationship;
sciGraphicContext graphiccontext;
double * pvecx;
double * pvecy;
double * pvecz;
double *inputCMoV; /* Adding here in order to always have the input data*/
/* We will determinate if it is a vector or matrix data with m3n and n3n values*/
double *zcol;
double *color; /* Final matrix used only for drawing : */
/* color == zcol if 'direct' mode used (direct indices on colormap) */
/* else 'scaled' mode used => color == linear interp. of zcol on the colormap */
int cdatamapping; /* like in Matlab, it determines how the color is computed ('saled' or 'direct' mode) */
/* 0: scaled */
/* 1: direct (default) */
integer izcol;
integer dimzx;
integer dimzy;
/*F.Leray 12.03.04 Adding here to know the length of arrays pvecx, pvecy and pvecz*/
int nc;
int nx;
int ny;
int nz;
int isfac;
int m1,n1;
int m2,n2;
int m3,n3;
int m3n,n3n;
POINT2D *pproj; /* projections on 2d */
integer flag[3];
double ebox[6];
int flagcolor; /* this flag indicates the type of the color of how the facet have to be colored
0: uniformed color
1: facet's color are computed with z*/ /* in case of a simple plot...!!! F.Leray 19.03.04 */
sciTypeOf3D typeof3d;
int hiddencolor;
BOOL isselected;
char *callback; /** specifies the text scilab code for the callback associated with this entity */
int callbacklen; /** the length of the callback code */
int callbackevent;
/** specifies if this object is visble */
BOOL visible;
int flag_x;
int flag_y;
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
}
sciSurface; /** */
/**@name merge DJ.A 30/12
* Structure used to specify
*/
typedef struct
{
sciRelationShip relationship;
long *from_entity; /* vector of handles on the facet or segment entity*/
int *index_in_entity;/*index of facet or segment in its entity*/
int N; /* number of facets or segments */
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
}
sciMerge; /** */
/**@name LightSource
* Structure used to specify
*/
typedef struct
{
sciRelationShip relationship;
sciGraphicContext graphiccontext;
POINT3D org;
BOOL switchon; /* on or off */
/** specifies if this object is visble */
BOOL visible;
int isclip;
double clip_region[4];
int clip_region_set;
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
}
sciLightSource; /** */
/**@name Axis
* Structure used to specify axis feature
*/
/* NOT USED IN FACT */
/* typedef struct */
/* { */
/* sciRelationShip relationship; */
/* sciGraphicContext graphiccontext; */
/* sciText text; */
/* char strflag[4]; */
/* int strflaglen; */
/* double aaint[4]; */
/* double minx; */
/* double miny; */
/* double minz; */
/* double maxx; */
/* double maxy; */
/* double maxz; */
/* int styledimension; /\* 2=2d 3=3d *\/ */
/* int stylecrossing; */
/* double orgcrossing; */
/* char *plabelx; */
/* char *plabely; */
/* char *plabelz; */
/* BOOL manualscale; */
/* BOOL plotit; */
/* BOOL isselected; */
/* int grid; */
/* char *callback; /\** specifies the text scilab code for the callback associated with this entity *\/ */
/* int callbacklen; /\** the length of the callback code *\/ */
/* int callbackevent; */
/* /\** specifies if this object is visble *\/ */
/* BOOL visible; */
/* int isclip; /\* Adding F.Leray 10.03.04*\/ */
/* } */
/* sciAxis; /\** *\/ */
/**@name Axes
* Structure used to specify axes feature
* @author Djalel Abdemouche
* @version 0.1
* @args
* @return
* @see
*/
typedef struct
{
sciRelationShip relationship;
sciGraphicContext graphiccontext;
char dir; /** dir = 'r' | 'l' | 'u' | 'd' : gives the tics directions **/
char tics; /** tics = 'v' (for vector) or 'r' (for range) or i **/
POINT2D *vector; /* vecteur de points redondant, for future developpement*/
double *vx; /** vx vector of size nx **/
double *vy; /** vy vector of size ny **/
/**DJ.Abdemouche 2003**/
double *vz;
int nx;
int ny;
int nb_tics_labels; /* F.Leray 29.04.05 : number of tics_labels can be different from Max(nx,ny) if xy_type diff. from 'v' */
/***/
int nz;
char **str ; /** string vector **/
int subint; /** subints : number of sub intervals **/
char *format; /** format for tick marks **/
int fontsize;
int textcolor;
int ticscolor;
char logscale;
int seg; /**0 or 1, flag which control the drawing of the segment associated to the axes **/
char *callback; /** specifies the text scilab code for the callback associated with this entity */
int callbacklen; /** the length of the callback code */
int callbackevent;
/** specifies if this object is visble */
BOOL visible;
int isclip;
double clip_region[4]; /* to introduce for axis ? */
int clip_region_set;
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
}
sciAxes;
/**@name Segs
* Structure used to specify axes feature
* @author Djalel Abdemouche
* @version 0.1
* @args
* @return
* @see
*/
typedef struct
{
sciRelationShip relationship;
sciGraphicContext graphiccontext;
double *vx; /** vx vector of size Nbr **/ /*F.Leray 18.02.04 ...of size Nbr1 ? No depending on the type ptype*/
double *vy; /** vy vector of size Nbr **/ /*F.Leray 18.02.04 ...of size Nbr2 ? No depending on the type ptype*/
double *vfx;
double *vfy;
integer Nbr1;
integer Nbr2;
integer *pstyle;
integer iflag; /**0 or 1, flag which control the drawing of the segment **/
double arrowsize; /*F.Leray units : hundreds (i.e. 100, 150,...)*/
double parfact;
integer ptype; /* if ptype=0, it is segments; if ptype=1, it is champ (champ or champ1)*/
integer typeofchamp; /* when ptype=0, if typeofchamp=0 => champ is invoked else champ1 is invoked (typeofchamp==1) */
BOOL isselected;
char *callback; /** specifies the text scilab code for the callback associated with this entity */
int callbacklen; /** the length of the callback code */
int callbackevent;
/** specifies if this object is visble */
BOOL visible;
int isclip;
double clip_region[4];
int clip_region_set;
double *vz; /**DJ.Abdemouche 2003**/
double *vfz;
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
}
sciSegs;
/**@name Grayplot
* Structure used to specify axes feature
* @author Djalel Abdemouche
* @version 0.1
* @args
* @return
* @see
*/
typedef struct
{
sciRelationShip relationship;
sciGraphicContext graphiccontext;
double *pvecx; /** vx vector of size nx **/
double *pvecy; /** vy vector of size ny **/
double *pvecz; /** vz vector of size nx*ny **/
int nx;
int ny;
int type; /** 0 if a grayplot, 1if a matplot **/
char datamapping[7];
BOOL isselected;
char *callback; /** specifies the text scilab code for the callback associated with this entity */
int callbacklen; /** the length of the callback code */
int callbackevent;
/** specifies if this object is visble */
BOOL visible;
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
}
sciGrayplot;
/** */
/**@name Fec
* Structure used to specify fec feature
* @author Djalel Abdemouche
* @version 0.1
* @args
* @return
* @see
*/
typedef struct
{
sciRelationShip relationship;
sciGraphicContext graphiccontext;
double *pvecx;
double *pvecy;
double *pnoeud;
double *pfun;
int Nnode;
int Ntr;
double *zminmax;
integer *colminmax;
integer *colout;
BOOL with_mesh;
BOOL isselected;
char *callback; /** specifies the text scilab code for the callback associated with this entity */
int callbacklen; /** the length of the callback code */
int callbackevent;
/** specifies if this object is visble */
BOOL visible;
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
}
sciFec; /** */
/**@name Panner
* Structure used to specify
*/
typedef struct
{
sciRelationShip relationship;
int posx;
int posy;
int width;
int height;
int totalheigth; /* the height in the menu bar */
}
sciPanner; /** */
/**@name ScrollBarHorz
* Structure used to specify
*/
typedef struct
{
sciRelationShip relationship;
int poshorz;
int totalheight;
}
sciScrollBarHorz; /** */
/**@name ScrollBarVert
* Structure used to specify
*/
typedef struct
{
sciRelationShip relationship;
int posvert;
int totalwidth;
}
sciScrollBarVert; /** */
/**@name LabelMenu
* Structure used to specify a menu
*/
typedef struct tagLabelMenu
{
char *plabel;
struct tagLabelMenu *pnextlabelmenu;
}
sciLabelMenu; /** */
/**@name Menu
* Structure used to specify a menu
*/
typedef struct
{
sciRelationShip relationship;
sciGraphicContext graphiccontext;
sciText text;
sciLabelMenu *plabelmenu;
HMENU hPopMenu; /** specifie the handle of the popup menu */
}
sciMenu /** */ , sciMenuContext;/** */
/**@name MenuContext
* Structure used to specify popupmenu called with the right mouse button
*
typedef struct {
sciRelationShip relationship;
sciGraphicContext graphiccontext;
sciText text;
sciLabelMenu *plabelmenu;
} sciMenuContext ;
ATTENTION DECLARE SI DESSUS */
/**@name StatusBar
* Structure used to specify
*/
typedef struct
{
sciRelationShip relationship;
sciGraphicContext graphiccontext;
sciText text;
char *ptext;
}
sciStatusBar; /** */
/**@name Panner
* Structure used to specify
*/
typedef struct
{
sciRelationShip relationship;
double xmin; /** original xmin */
double ymin; /** original ymin */
double xmax;
double ymax;
BOOL isselected;
char *callback; /** specifies the text scilab code for the callback associated with this entity */
int callbacklen; /** the length of the callback code */
int callbackevent;
/** specifies if this object is visble */
BOOL visible;
int * user_data; /* adding 27.06.05 */
int size_of_user_data;
}
sciAgreg; /** */
#endif /*__SCI_OBJECT_STRUCTURE__ */
|