summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2003-05-18 22:12:24 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2003-05-18 22:12:24 +0000
commit8a2aa0a0d1876c88953de29e0709e290cc8daa97 (patch)
treeaaba419f297ab24e7033596a8a1bb22c2c856079 /test
parent180e2985377981d5d8ac2f668f371ab841bbfca2 (diff)
Add thin up box with plastic style.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2981 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test')
-rw-r--r--test/boxtype.cxx13
1 files changed, 8 insertions, 5 deletions
diff --git a/test/boxtype.cxx b/test/boxtype.cxx
index ba23d1e34..da9b12911 100644
--- a/test/boxtype.cxx
+++ b/test/boxtype.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: boxtype.cxx,v 1.4.2.3.2.3 2003/01/30 21:44:56 easysw Exp $"
+// "$Id: boxtype.cxx,v 1.4.2.3.2.4 2003/05/18 22:12:24 easysw Exp $"
//
// Boxtype test program for the Fast Light Tool Kit (FLTK).
//
@@ -30,9 +30,9 @@
#include <FL/Fl_Box.H>
int N = 0;
-#define W 150
+#define W 200
#define H 50
-#define ROWS 9
+#define ROWS 10
Fl_Window *window;
@@ -86,12 +86,15 @@ int main(int argc, char ** argv) {
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);
+ bt("FL_PLASTIC_THIN_UP_BOX",FL_PLASTIC_THIN_UP_BOX);
+ bt("FL_PLASTIC_THIN_DOWN_BOX",FL_PLASTIC_THIN_DOWN_BOX);
window->resizable(window);
window->end();
- window->show(argc,argv);
+// window->show(argc,argv);
+ window->show();
return Fl::run();
}
//
-// End of "$Id: boxtype.cxx,v 1.4.2.3.2.3 2003/01/30 21:44:56 easysw Exp $".
+// End of "$Id: boxtype.cxx,v 1.4.2.3.2.4 2003/05/18 22:12:24 easysw Exp $".
//