Update of /cvsroot/gcblue/gcb_wx/include/graphics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30838/include/graphics
Modified Files:
tcMessageCenter.h tcMessageInterface.h
Log Message:
0.7.0 release snapshot
Index: tcMessageCenter.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcMessageCenter.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** tcMessageCenter.h 2 Dec 2004 04:17:23 -0000 1.2
--- tcMessageCenter.h 29 Mar 2005 00:12:23 -0000 1.3
***************
*** 36,40 ****
class tcMessageChannel;
!
/**
*
--- 36,40 ----
class tcMessageChannel;
! class tcSoundConsole;
/**
*
***************
*** 44,51 ****
public:
void AddMessage(const std::string& channel, const std::string& msg);
void PopupMessage(const std::string& msg);
void Clear();
virtual void Draw();
!
tcMessageCenter(wxWindow *parent,
--- 44,52 ----
public:
void AddMessage(const std::string& channel, const std::string& msg);
+ void ConsoleMessage(const std::string& msg);
void PopupMessage(const std::string& msg);
void Clear();
virtual void Draw();
! void AttachConsole(tcSoundConsole* console_);
tcMessageCenter(wxWindow *parent,
***************
*** 61,64 ****
--- 62,66 ----
wxPoint popupBase;
unsigned int popupCount;
+ tcSoundConsole* console;
tcMessageChannel* GetChannel(const std::string& channelName);
Index: tcMessageInterface.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcMessageInterface.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** tcMessageInterface.h 2 Dec 2004 04:17:23 -0000 1.2
--- tcMessageInterface.h 29 Mar 2005 00:12:23 -0000 1.3
***************
*** 41,44 ****
--- 41,45 ----
public:
void ChannelMessage(const std::string& channelName, const std::string& msg);
+ void ConsoleMessage(const std::string& msg);
void PopupMessage(const std::string& msg);
|