00001
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00027
00028
00029
00030
00031
00032 #include <vpscene.h>
00033
00034 #include <vpgraphicobj.h>
00035
00036 #include <list>
00037
00038 using namespace std;
00039
00040
00041
00042
00043
00044
00045 #ifndef __VPVIEW_H
00046 #define __VPVIEW_H
00047
00048
00049
00050
00051
00052
00053 #define MIPVIS 1201
00054
00055 #define MONOCOLORVIS 1202
00056
00057 #define MONOGRAYVIS 1203
00058
00059 #define MULTIMODALVIS 1204
00060
00061 #define DEFAULTVIS 1205
00062
00063 #define SLICETOP 1206
00064
00065 #define SLICEFRONT 1207
00066
00067 #define SLICESIDE 1208
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00088
00089
00090
00091
00092
00093
00095
00096
00097
00098 class VPView {
00099
00100 private:
00101
00102 VPScene *scene;
00103
00104 int visualizationType;
00105
00106
00107
00108 public:
00109
00110 VPView();
00111
00112 VPView(VPScene *s, int v);
00113
00114 int vpGetVisualizationType();
00115
00116 void vpSetVisualizationType(int vp);
00117
00118 VPScene* vpGetScene();
00119
00120 void vpSetScene(VPScene *s);
00121
00122 virtual void vpDraw() = 0;
00123
00124 virtual void vpRefresh() = 0;
00125
00126 };
00127
00128
00129
00130
00131
00132 #endif // __VPVIEW_H