-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathText_Display.cpp
33 lines (30 loc) · 927 Bytes
/
Text_Display.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <FL/Fl.H>
#include <FL/Fl_Text_Display.H>
#include <FL/Fl_Window.H>
namespace Examples {
class Main_Window : public Fl_Window {
public:
Main_Window() : Fl_Window {200, 100, 450, 300, "Text display example"} {
resizable(text_display);
text_display.buffer(&text_buffer);
text_buffer.append("Line 1\n");
text_buffer.append("Line 2\n");
text_buffer.append("Line 3\n");
text_buffer.append("Line 4\n");
text_buffer.append("Line 5\n");
text_buffer.append("Line 6\n");
text_buffer.append("Line 7\n");
text_buffer.append("Line 8\n");
text_buffer.append("Line 9\n");
text_buffer.append("Line 10\n");
}
private:
Fl_Text_Buffer text_buffer;
Fl_Text_Display text_display {0, 0, 450, 300};
};
}
auto main(int argc, char *argv[]) -> int {
auto window = Examples::Main_Window {};
window.show(argc, argv);
return Fl::run();
}