00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef TSE3_APP_PARTDISPLAY_H
00018 #define TSE3_APP_PARTDISPLAY_H
00019
00020 namespace TSE3
00021 {
00022 class Part;
00023 class PresetColours;
00024
00025 namespace App
00026 {
00045 class PartDisplay
00046 {
00047 public:
00048
00056 PartDisplay(TSE3::Part *part, TSE3::PresetColours *pc = 0);
00057
00061 bool useColour();
00062
00066 void colour(int &r, int &g, int &b);
00067
00068 private:
00069
00070 void calculate();
00071
00072 TSE3::Part *p;
00073 TSE3::PresetColours *preset;
00074 int _calculated;
00075 bool _useColour;
00076 int _r, _g, _b;
00077 };
00078 }
00079 }
00080
00081 #endif