[Gcblue-commits] gcb_wx/include/graphics tcEditBox.h,1.1,1.2
Status: Alpha
Brought to you by:
ddcforge
|
From: <ddc...@us...> - 2004-03-02 03:03:46
|
Update of /cvsroot/gcblue/gcb_wx/include/graphics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13312/include/graphics Modified Files: tcEditBox.h Log Message: Index: tcEditBox.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcEditBox.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** tcEditBox.h 27 Feb 2004 00:07:58 -0000 1.1 --- tcEditBox.h 2 Mar 2004 02:52:14 -0000 1.2 *************** *** 38,41 **** --- 38,42 ---- void SetBuffer(const char* azBuffer); void SetCaption(const char* azCaption); + void SetClearOnReturn(bool state) {clearOnReturn = state;} void SetCommand(long cmd) {command = cmd;} *************** *** 50,53 **** --- 51,56 ---- bool isFocused; bool textChanged; + bool drawBackground; ///< true to draw image or default solid color background + bool clearOnReturn; ///< clear text after ENTER is pressed, will also post text update message Gdiplus::RectF mrectTextBar; // region for text to be displayed Gdiplus::RectF mrectTextCaption; // caption region |