color artist's info loaded from a file

This commit is contained in:
Andrzej Rybczak
2009-01-22 16:08:09 +01:00
parent 1244223919
commit 237e494b08
4 changed files with 29 additions and 0 deletions

View File

@@ -32,6 +32,7 @@ class Scrollpad: public Window
virtual ~Scrollpad() { }
void Flush();
void SetFormatting(short, const std::basic_string<my_char_t> &, short, bool for_each = 1);
std::basic_string<my_char_t> Content() { return itsBuffer.Str(); }
virtual void Refresh();
@@ -50,6 +51,7 @@ class Scrollpad: public Window
Scrollpad &operator<<(std::ostream &(*os)(std::ostream &));
# ifdef _UTF8
void SetFormatting(short vb, const std::string &s, short ve, bool for_each = 1) { SetFormatting(vb, ToWString(s), ve, for_each); }
Scrollpad &operator<<(const char *s);
Scrollpad &operator<<(const std::string &s);
# endif // _UTF8