blob: 48b968b39ac7b82fed4ba2939d8679c6b1b8df2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Fl_Box.C
// The box widget. An almost non-functional subclass of Fl_Widget.
#include <FL/Fl_Widget.H>
#include <FL/Fl_Box.H>
void Fl_Box::draw() {
draw_box();
draw_label();
}
|