DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.
[STR New]
Link: http://www.fltk.org/str.php?L2158
Version: 1.3-current
Link: http://www.fltk.org/str.php?L2158
Version: 1.3-current
#include <FL/Fl.H>
#include <FL/Fl_Double_Window.H>
#include <FL/Fl_Text_Display.H>
#include <FL/Fl_Text_Buffer.H>
#define LEN 10
int main(int argc, char **argv)
{
char hz[4]="\xe5\x93\x88";
Fl_Double_Window w(100,100,320,240);
Fl_Text_Display e(0,0,320,240);
Fl_Text_Buffer b;
e.buffer(&b);
e.wrap_mode(1,LEN);
for(int i=0;i<2*LEN;i++){
b.append("a");
};
for(int i=0;i<2*LEN;i++){
b.append(hz);
}
w.end();
w.show();
Fl::run();
return 0;
}
_______________________________________________
fltk-bugs mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-bugs