CTextBox: add methodes setTextMode() and setBackGroundColor()

This commit is contained in:
2012-09-14 16:41:31 +02:00
parent cb8ac750a5
commit 1d6bf7397e

View File

@@ -152,6 +152,16 @@ class CTextBox
int text_border_width;
public:
/* Variables */
typedef enum mode_
{
AUTO_WIDTH = 0x01,
AUTO_HIGH = 0x02,
SCROLL = 0x04,
CENTER = 0x40,
NO_AUTO_LINEBREAK = 0x80
} mode;
/* Constructor */
CTextBox();
CTextBox( const char * text);