Home
Status
Manual
Download
Contact
Beta 1
Data Structure

 << back

Class graphstore

These member variable are used for both text and drawing:

   int objType;                                   // define type
   int color, width;                           
   int page;                                         // page number
  
int order, flag                               
   graphstore *next;                           // pointer to the next node
 

These member variable are used for drawing objects:

   graphpoint *firstpoint;                   // pointer to the first graphpoint node
   int maxpointx, maxpointy;             // the max x and y of the object
   int minpointx, minpointy;               // the min x and y of the object
 

These member variable are used for text objects:

   CPoint xyCoord;                          // x y coord. of where text string
                                                        // to be loaded
   CString string;                               // text string

Class graphpoint

Member variables

   int pointx, pointy;                           // coordinates
   graphpoint * nextpoint                   // points to next node

[Home] [Status] [Manual] [Download] [Contact] [Beta 1]