00001 #ifndef DRAW_WIDGET_H_IS_INCLUDED
00002 #define DRAW_WIDGET_H_IS_INCLUDED
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #include "geom/geom.H"
00013 #include "manip/manip.H"
00014 #include "mesh/lmesh.H"
00015 #include "std/stop_watch.H"
00016
00017 #include "gest/gest_guards.H"
00018
00019 MAKE_PTR_SUBC(DrawWidget,GEOM);
00020 typedef const DrawWidget CDrawWidget;
00021 typedef const DrawWidgetptr CDrawWidgetptr;
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045 class DrawWidget : public GEOM,
00046 public DISPobs,
00047 public CAMobs,
00048 public BMESHobs,
00049 public Interactor<DrawWidget,Event,State> {
00050 public:
00051
00052
00053
00054 DEFINE_RTTI_METHODS3("DrawWidget", DrawWidget*, GEOM, CDATA_ITEM*);
00055
00056
00057
00058
00059 static DrawWidgetptr get_active_instance() { return _active; }
00060
00061
00062
00063
00064 virtual void toggle_active();
00065
00066 bool is_active() const { return _active == this; }
00067 void activate();
00068 void deactivate();
00069
00070
00071
00072 static double default_timeout() { return 1e6; }
00073
00074 void set_timeout (double dur) { _timer.reset(dur); }
00075 void reset_timeout(double dur=default_timeout()) { set_timeout(dur); }
00076
00077
00078
00079
00080
00081
00082
00083 virtual BMESHptr bmesh() const { return 0; }
00084 virtual LMESH* lmesh() const { return LMESH::upcast(bmesh()); }
00085
00086
00087
00088
00089 virtual str_ptr mode_name() const { return NULL_STR; }
00090 bool has_mode_name() const { return mode_name() != NULL_STR; }
00091
00092
00093
00094 bool handle_gesture(CGESTUREptr& gest) { return _fsa.handle_event(gest); }
00095
00096
00097
00098
00099
00100
00101 static DrawWidget *null;
00102
00103
00104
00105 virtual bool needs_blend() const { return alpha() < 1; }
00106
00107
00108
00109
00110 virtual void notify(CGELptr &g, int);
00111
00112
00113
00114
00115 virtual void notify(CCAMdataptr &data);
00116
00117 protected:
00118
00119 DrawFSA _fsa;
00120 DrawState _draw_start;
00121 egg_timer _timer;
00122
00123 static DrawWidgetptr _active;
00124
00125
00126
00127
00128 DrawWidget(double dur=default_timeout());
00129
00130 virtual ~DrawWidget();
00131
00132
00133
00134
00135
00136 double alpha() const {
00137 const double FADE_TIME = 0.5;
00138 return min(_timer.remaining() / FADE_TIME, 1.0);
00139 }
00140
00141
00142
00143 virtual void reset() {}
00144
00145 };
00146
00147 #endif // DRAW_WIDGET_H_IS_INCLUDED
00148
00149