[Gcblue-commits] gcb_wx/include/graphics tcMapView.h,1.10,1.11
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2005-01-10 00:30:34
|
Update of /cvsroot/gcblue/gcb_wx/include/graphics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27758/include/graphics Modified Files: tcMapView.h Log Message: Fixed group commands Index: tcMapView.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcMapView.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** tcMapView.h 28 Dec 2004 23:51:24 -0000 1.10 --- tcMapView.h 10 Jan 2005 00:30:20 -0000 1.11 *************** *** 274,278 **** char mzMapCmdCallback[128]; int callbackParam; ! long callbackPlatformID; ///< platform ID for callback --- 274,278 ---- char mzMapCmdCallback[128]; int callbackParam; ! std::vector<long> callbackPlatformID; ///< platform ID vector for callback *************** *** 285,289 **** float GetMapCmdHeading() {return mfMapCmdHeading;} long GetMapCmdTarget() {return mnMapCmdTarget;} ! void SetMapCmdCallback(const char *azCallback, long id, int param = -1); void SetMousePoint(wxPoint point) {mpointMouse = point;} // used to be TranslatePoint(point); void ScrollMap(float afDirection_deg); --- 285,289 ---- float GetMapCmdHeading() {return mfMapCmdHeading;} long GetMapCmdTarget() {return mnMapCmdTarget;} ! void SetMapCmdCallback(const char *azCallback, const std::vector<long>& id, int param = -1); void SetMousePoint(wxPoint point) {mpointMouse = point;} // used to be TranslatePoint(point); void ScrollMap(float afDirection_deg); *************** *** 300,303 **** --- 300,304 ---- void DrawSpecial(); size_t GetHookCount(); + std::vector<long>& GetHookedGroup(); long GetHookID(size_t idx = 0); long Hook(wxPoint pscreen); |