[Gcblue-commits] gcb_wx/include/graphics tcMessageCenter.h,1.1,1.2 tcMessageInterface.h,1.1,1.2
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2004-12-02 04:18:06
|
Update of /cvsroot/gcblue/gcb_wx/include/graphics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31820/include/graphics Modified Files: tcMessageCenter.h tcMessageInterface.h Log Message: Sonar work Index: tcMessageCenter.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcMessageCenter.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** tcMessageCenter.h 14 Nov 2004 22:52:20 -0000 1.1 --- tcMessageCenter.h 2 Dec 2004 04:17:23 -0000 1.2 *************** *** 44,47 **** --- 44,48 ---- public: void AddMessage(const std::string& channel, const std::string& msg); + void PopupMessage(const std::string& msg); void Clear(); virtual void Draw(); *************** *** 58,61 **** --- 59,64 ---- tcRect channelTab; ///< rectangle for next new channel selection button tcRect defaultTextRect; ///< text box rectangle for channels + wxPoint popupBase; + unsigned int popupCount; tcMessageChannel* GetChannel(const std::string& channelName); Index: tcMessageInterface.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcMessageInterface.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** tcMessageInterface.h 14 Nov 2004 22:52:20 -0000 1.1 --- tcMessageInterface.h 2 Dec 2004 04:17:23 -0000 1.2 *************** *** 41,44 **** --- 41,45 ---- public: void ChannelMessage(const std::string& channelName, const std::string& msg); + void PopupMessage(const std::string& msg); static tcMessageInterface* Get(); ///< singleton accessor |