Author: greg.ercolano
Date: 2010-06-06 14:43:59 -0700 (Sun, 06 Jun 2010)
New Revision: 7631
Log:
wizard example mods, Makefile.


Modified:
   branches/branch-1.3/examples/Makefile
   branches/branch-1.3/examples/wizard-simple.cxx

Modified: branches/branch-1.3/examples/Makefile
===================================================================
--- branches/branch-1.3/examples/Makefile       2010-06-06 21:25:44 UTC (rev 
7630)
+++ branches/branch-1.3/examples/Makefile       2010-06-06 21:43:59 UTC (rev 
7631)
@@ -2,7 +2,8 @@
 
 ALL = howto-add_fd-and-popen$(EXEEXT) \
       tabs-simple$(EXEEXT) \
-      tree-simple$(EXEEXT)
+      tree-simple$(EXEEXT) \
+      wizard-simple$(EXEEXT)
 
 # default target -- build everything
 default: $(ALL)

Modified: branches/branch-1.3/examples/wizard-simple.cxx
===================================================================
--- branches/branch-1.3/examples/wizard-simple.cxx      2010-06-06 21:25:44 UTC 
(rev 7630)
+++ branches/branch-1.3/examples/wizard-simple.cxx      2010-06-06 21:43:59 UTC 
(rev 7631)
@@ -49,7 +49,7 @@
     // Wizard: page 1
     {
         Fl_Group *g = new Fl_Group(0,0,400,300);
-        Fl_Button *next = new Fl_Button(290,265,100,25,"Next"); 
next->callback(next_cb);
+        Fl_Button *next = new Fl_Button(290,265,100,25,"Next @->"); 
next->callback(next_cb);
         Fl_Multiline_Output *out = new 
Fl_Multiline_Output(10,30,400-20,300-80,"Welcome");
         out->labelsize(20);
         out->align(FL_ALIGN_TOP|FL_ALIGN_LEFT);
@@ -59,8 +59,8 @@
     // Wizard: page 2
     {
         Fl_Group *g = new Fl_Group(0,0,400,300);
-        Fl_Button *next = new Fl_Button(290,265,100,25,"Next"); 
next->callback(next_cb);
-        Fl_Button *back = new Fl_Button(180,265,100,25,"Back"); 
back->callback(back_cb);
+        Fl_Button *next = new Fl_Button(290,265,100,25,"Next @->"); 
next->callback(next_cb);
+        Fl_Button *back = new Fl_Button(180,265,100,25,"@<- Back"); 
back->callback(back_cb);
         Fl_Multiline_Output *out = new 
Fl_Multiline_Output(10,30,400-20,300-80,"Terms And Conditions");
         out->labelsize(20);
         out->align(FL_ALIGN_TOP|FL_ALIGN_LEFT);
@@ -71,7 +71,7 @@
     {
         Fl_Group *g = new Fl_Group(0,0,400,300);
         Fl_Button *done = new Fl_Button(290,265,100,25,"Finish"); 
done->callback(done_cb);
-        Fl_Button *back = new Fl_Button(180,265,100,25,"Back"); 
back->callback(back_cb);
+        Fl_Button *back = new Fl_Button(180,265,100,25,"@<- Back"); 
back->callback(back_cb);
         Fl_Multiline_Output *out = new 
Fl_Multiline_Output(10,30,400-20,300-80,"Finish");
         out->labelsize(20);
         out->align(FL_ALIGN_TOP|FL_ALIGN_LEFT);

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to