summaryrefslogtreecommitdiff
path: root/fluid/templates
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2023-11-16 13:21:17 +0100
committerMatthias Melcher <github@matthiasm.com>2023-11-16 13:21:17 +0100
commit01d30ed9cc4c080dea45ee85ec7af76cbd7e61bb (patch)
tree383c090f41b22e706775f98d704ed1a39d498175 /fluid/templates
parentd28d03e1aca7d2e4d3b625a95912f0cebf9bac10 (diff)
FLUID: inlined data can be stored compressed.
Diffstat (limited to 'fluid/templates')
-rw-r--r--fluid/templates/1of7GUIs.fl36
-rw-r--r--fluid/templates/FLTK_License.fl21
2 files changed, 57 insertions, 0 deletions
diff --git a/fluid/templates/1of7GUIs.fl b/fluid/templates/1of7GUIs.fl
new file mode 100644
index 000000000..8f5fd0652
--- /dev/null
+++ b/fluid/templates/1of7GUIs.fl
@@ -0,0 +1,36 @@
+# data file for the Fltk User Interface Designer (fluid)
+ version 1.0400
+ header_name {.h}
+code_name {.cxx}
+ comment {
+1 of 7GUIs
+
+7GUIs was been created as a spin-off of the master’s
+thesis Comparison of Object-Oriented and Functional
+Programming for GUI Development by Eugen Kiss at the
+Human-Computer Interaction group of the Leibniz
+Universität Hannover in 2014.
+
+https://7guis.github.io/7guis/
+} {selected in_source not_in_header
+}
+
+Function {} {open
+} {
+Fl_Window {} {
+label Counter open
+xywh {486 292 194 55} type Double resizable visible
+} {
+Fl_Output counter_widget {
+xywh {15 15 80 22}
+code0 {counter_widget->value(0);}
+}
+Fl_Button {} {
+label Count
+callback {int i = counter_widget->ivalue();
+i++;
+counter_widget->value(i);}
+xywh {99 15 80 22}
+}
+}
+}
diff --git a/fluid/templates/FLTK_License.fl b/fluid/templates/FLTK_License.fl
new file mode 100644
index 000000000..e708bfc2c
--- /dev/null
+++ b/fluid/templates/FLTK_License.fl
@@ -0,0 +1,21 @@
+# data file for the Fltk User Interface Designer (fluid)
+version 1.0400
+header_name {.h}
+code_name {.cxx}
+comment {//
+// @INSTANCE@ for the Fast Light Tool Kit (FLTK).
+//
+// Copyright 1998-2023 by Bill Spitzak and others.
+//
+// This library is free software. Distribution and use rights are outlined in
+// the file "COPYING" which should have been included with this file. If this
+// file is missing or damaged, see the license at:
+//
+// https://www.fltk.org/COPYING.php
+//
+// Please see the following page on how to report bugs and issues:
+//
+// https://www.fltk.org/bugs.php
+//
+} {selected in_source in_header
+}