WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
PlotItem.h
1#ifndef _WINC_PLOTITEM
2#define _WINC_PLOTITEM
3
4#include <WXP/Drawing.h>
5
6namespace WXP {
7
14 struct PlotItem {
15 int panel;
16 int type;
18 const void *data;
21 enum { DRAWING, PANEL };
22 };
23}
24#endif
This is a virtual class defining drawing routines.
Definition: Drawing.h:16
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4
This struct stores drawing objects used in complex plot.
Definition: PlotItem.h:14
PlotItem * next
Definition: PlotItem.h:19
int panel
Definition: PlotItem.h:15
Drawing * drawing
Definition: PlotItem.h:17
const void * data
Definition: PlotItem.h:18
int type
Definition: PlotItem.h:16