summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-11-28 21:37:35 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-11-28 21:37:35 +0000
commit79d6a32be98d8809c915fd4914cb57a5730202b3 (patch)
treed9ec1ec8fbf8d45c2487717be39a379db2c4234a /test
parent313a2430eae8a78b59bf9e727a810708be3a377b (diff)
Add new plastic box types (kindof a shiny translucent box type...)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1781 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test')
-rw-r--r--test/boxtype.cxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/test/boxtype.cxx b/test/boxtype.cxx
index 074dd528d..2f11e3776 100644
--- a/test/boxtype.cxx
+++ b/test/boxtype.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: boxtype.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: boxtype.cxx,v 1.4.2.3.2.1 2001/11/28 21:37:35 easysw Exp $"
//
// Boxtype test program for the Fast Light Tool Kit (FLTK).
//
@@ -32,7 +32,7 @@
int N = 0;
#define W 150
#define H 50
-#define ROWS 8
+#define ROWS 9
Fl_Window *window;
@@ -82,6 +82,10 @@ int main(int argc, char ** argv) {
bt("FL_ROUND_DOWN_BOX",FL_ROUND_DOWN_BOX);
bt("FL_DIAMOND_UP_BOX",FL_DIAMOND_UP_BOX);
bt("FL_DIAMOND_DOWN_BOX",FL_DIAMOND_DOWN_BOX);
+ bt("FL_PLASTIC_UP_BOX",FL_PLASTIC_UP_BOX);
+ bt("FL_PLASTIC_DOWN_BOX",FL_PLASTIC_DOWN_BOX);
+ bt("FL_PLASTIC_UP_FRAME",FL_PLASTIC_UP_FRAME);
+ bt("FL_PLASTIC_DOWN_FRAME",FL_PLASTIC_DOWN_FRAME);
window->resizable(window);
window->end();
window->show(argc,argv);
@@ -89,5 +93,5 @@ int main(int argc, char ** argv) {
}
//
-// End of "$Id: boxtype.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: boxtype.cxx,v 1.4.2.3.2.1 2001/11/28 21:37:35 easysw Exp $".
//