summaryrefslogtreecommitdiff
path: root/src/Fl_Box.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Fl_Box.cxx')
-rw-r--r--src/Fl_Box.cxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Fl_Box.cxx b/src/Fl_Box.cxx
new file mode 100644
index 000000000..48b968b39
--- /dev/null
+++ b/src/Fl_Box.cxx
@@ -0,0 +1,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();
+}