00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099 #ifndef INC_DLGEVT
00100 #define INC_DLGEVT
00101
00102 #include "drawctl.h"
00103
00104
00105
00106 #include "ktimer.h"
00107
00108 class DialogManager;
00109 class DialogOp;
00110
00111
00112 typedef const TCHAR * EventNameString;
00113
00114
00115 WX_DECLARE_HASH_MAP( WXTYPE, EventNameString, wxIntegerHash, wxIntegerEqual, EventNumberToName );
00116
00117 class DialogEventHandler;
00118
00119 class DlgEvtTimer : public KernelTimer
00120 {
00121 CC_DECLARE_DYNAMIC(DlgEvtTimer);
00122 friend class DialogEventHandler;
00123 public:
00124 DlgEvtTimer(DialogEventHandler * pEvtHandler=NULL, DialogOp * pDialogOp=NULL, UINT32 IDEvent=NULL,
00125 void (* lpfnTimer)(void *) = NULL, void * Param=NULL) :
00126 m_pEvtHandler(pEvtHandler),
00127 m_pDialogOp(pDialogOp),
00128 m_IDEvent(IDEvent),
00129 m_lpfnTimer(lpfnTimer),
00130 m_Param(Param) {}
00131 ~DlgEvtTimer() {}
00132 protected:
00133 virtual void Notify();
00134 DialogEventHandler * m_pEvtHandler;
00135 DialogOp *m_pDialogOp;
00136 UINT32 m_IDEvent;
00137 void (* m_lpfnTimer)(void *);
00138 void * m_Param;
00139 };
00140
00141
00142 WX_DECLARE_HASH_MAP( UINT32, DlgEvtTimer*, wxIntegerHash, wxIntegerEqual, IntegerToKernelTimer );
00143
00144 class wxCamDialogEvent;
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158 class DialogEventHandler : public wxEvtHandler
00159 {
00160 friend class DialogManager;
00161 friend class DlgEvtTimer;
00162
00163 public:
00164 DialogEventHandler();
00165 DialogEventHandler(DialogOp * pOp);
00166 ~DialogEventHandler();
00167 void Destroy();
00168 void CommandEvent(wxCommandEvent &event);
00169 void ScrollEvent(wxScrollEvent &event);
00170 void CloseEvent(wxCloseEvent &event);
00171 void MouseEvent(wxMouseEvent &event);
00172 void WindowDestroyEvent(wxWindowDestroyEvent &event);
00173 void OnChildFocus(wxChildFocusEvent &event);
00174 void OnSetFocus(wxFocusEvent &event);
00175 void CamDialogEvent(wxCamDialogEvent &event);
00176 void MoveEvent(wxMoveEvent &event);
00177 void SizeEvent(wxSizeEvent &event);
00178 void NotebookEvent(wxNotebookEvent &event);
00179
00180 void GrimReaperEvent(wxCamDialogEvent &event);
00181
00182 UINT32 AddTimer(DialogOp * pDialogOp, UINT32 nIDEvent, UINT32 nElapse, void (* lpfnTimer)(void *) = NULL, void * param=NULL, BOOL OneShot=FALSE);
00183 BOOL DeleteTimer(UINT32 nIDEvent);
00184
00185 static inline const TCHAR * GetEventName(WXTYPE EventNum)
00186 {
00187 if (!pHash) return DefaultString;
00188 EventNumberToName::iterator i=pHash->find(EventNum);
00189 const TCHAR * text = (const TCHAR *)((i==pHash->end())?NULL:i->second);
00190 return text?text:DefaultString;
00191 };
00192
00193 static BOOL Init();
00194 static void DeInit();
00195
00196 private:
00197 DECLARE_CLASS(wxEvtHandler)
00198 DECLARE_EVENT_TABLE()
00199 wxWindow * pwxWindow;
00200 DialogOp * pDialogOp;
00201 CDlgResID ID;
00202 BOOL wxAUImanaged;
00203 BOOL m_GrimReaperSent;
00204
00205 IntegerToKernelTimer m_TimerHash;
00206
00207 static EventNumberToName * pHash;
00208 static const TCHAR * DefaultString;
00209
00210 static DialogEventHandler * m_GrimReaper;
00211 };
00212
00213
00214
00215
00216
00217
00218
00219
00220
00221
00222
00223
00224
00225
00226 class wxCamDialogEvent : public wxEvent
00227 {
00228 public:
00229
00230 wxCamDialogEvent(wxEventType commandType = wxEVT_NULL, INT32 id=0 ) : wxEvent(id, commandType), msg(NULL, DIM_NONE, 0) {}
00231 wxCamDialogEvent(wxEventType commandType, INT32 id, DialogMsg m ) : wxEvent(id, commandType), msg(m) {}
00232
00233 wxCamDialogEvent(const wxCamDialogEvent& event) : wxEvent(event), msg (event.msg) {}
00234
00235 virtual wxEvent *Clone() const {return new wxCamDialogEvent(*this); }
00236
00237 DECLARE_DYNAMIC_CLASS(wxCamDialogEvent);
00238
00239 DialogMsg msg;
00240 };
00241
00242 typedef void (wxEvtHandler::*wxCamDialogEventFunction)(wxCamDialogEvent &);
00243
00244 BEGIN_DECLARE_EVENT_TYPES()
00245 DECLARE_EVENT_TYPE(wxEVT_CAMDIALOG_DEFERREDMSG, 1001)
00246 DECLARE_EVENT_TYPE(wxEVT_CAMDIALOG_GRIMREAPER, 1002)
00247 DECLARE_EVENT_TYPE(wxEVT_CAMDIALOG_REDRAW, 1003)
00248 END_DECLARE_EVENT_TYPES()
00249
00250 #define EVT_CAMDIALOG_DEFERREDMSG(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_CAMDIALOG_DEFERREDMSG, id, -1, \
00251 (wxObjectEventFunction)(wxEventFunction)(wxCamDialogEventFunction) &fn, (wxObject *) NULL),
00252 #define EVT_CAMDIALOG_GRIMREAPER(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_CAMDIALOG_GRIMREAPER, id, -1, \
00253 (wxObjectEventFunction)(wxEventFunction)(wxCamDialogEventFunction) &fn, (wxObject *) NULL),
00254 #define EVT_CAMDIALOG_REDRAW(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_CAMDIALOG_REDRAW, id, -1, \
00255 (wxObjectEventFunction)(wxEventFunction)(wxCamDialogEventFunction) &fn, (wxObject *) NULL),
00256
00257 #endif
00258