[Gcblue-commits] gcb_wx/include/graphics tcContainerGui.h, 1.6, 1.7 tcFlightportGui.h, 1.6, 1.7 tcP
Status: Alpha
Brought to you by:
ddcforge
From: Dewitt C. <ddc...@us...> - 2006-12-06 01:20:48
|
Update of /cvsroot/gcblue/gcb_wx/include/graphics In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv22513/include/graphics Modified Files: tcContainerGui.h tcFlightportGui.h tcPlatformGui.h tcStoresGui.h Log Message: Index: tcStoresGui.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcStoresGui.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** tcStoresGui.h 20 Nov 2006 00:16:28 -0000 1.4 --- tcStoresGui.h 6 Dec 2006 01:20:42 -0000 1.5 *************** *** 41,46 **** --- 41,51 ---- { public: + static tcStoresGui* GetExistingGui(long id, long host); + virtual void Draw(); + long GetPlatformId() const; + long GetHostId() const; + //virtual void OnChar(wxKeyEvent& event); //virtual void OnEnterWindow(wxMouseEvent& event); Index: tcFlightportGui.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcFlightportGui.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** tcFlightportGui.h 20 Nov 2006 00:16:28 -0000 1.6 --- tcFlightportGui.h 6 Dec 2006 01:20:41 -0000 1.7 *************** *** 63,66 **** --- 63,70 ---- { public: + static tcFlightPortGui* GetExistingGui(long id); + + long GetPlatformId() const; + virtual void Draw(); Index: tcPlatformGui.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcPlatformGui.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** tcPlatformGui.h 6 Sep 2006 01:28:20 -0000 1.6 --- tcPlatformGui.h 6 Dec 2006 01:20:41 -0000 1.7 *************** *** 58,63 **** --- 58,68 ---- { public: + static tcPlatformGui* GetExistingGui(long id, long host); + virtual void Draw(); + long GetPlatformId() const; + long GetHostId() const; + //virtual void OnChar(wxKeyEvent& event); //virtual void OnEnterWindow(wxMouseEvent& event); Index: tcContainerGui.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcContainerGui.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** tcContainerGui.h 20 Nov 2006 00:16:28 -0000 1.6 --- tcContainerGui.h 6 Dec 2006 01:20:41 -0000 1.7 *************** *** 118,126 **** void UpdateWindowDrag(const wxPoint& pos); private: bool destroy; ///< workaround to delay destruction of window to safe time tcContainerItem* parentItem; ///< item that was clicked to popup this gui (if applicable) static tc3DWindow* parent; ! static std::list<tcContainerGui*> openContainers; ///< to allow closing all open GUIs void RegisterGui(); --- 118,128 ---- void UpdateWindowDrag(const wxPoint& pos); + static std::list<tcContainerGui*> openContainers; ///< to allow closing all open GUIs + private: bool destroy; ///< workaround to delay destruction of window to safe time tcContainerItem* parentItem; ///< item that was clicked to popup this gui (if applicable) static tc3DWindow* parent; ! void RegisterGui(); |