FLTK logo

[master] 7ef2315 - Update test/hello.cxx and related image

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 All Forums  |  Back to fltk.commit  ]
 
Previous Message ]Next Message ]

[master] 7ef2315 - Update test/hello.cxx and related image "Albrecht Schlosser" Jan 13, 2021  
 
commit 7ef23153df6ab66a15a69c052df0ccd82bc6d352
Author:     Albrecht Schlosser <albrechts.fltk@online.de>
AuthorDate: Wed Jan 13 15:12:26 2021 +0100
Commit:     Albrecht Schlosser <albrechts.fltk@online.de>
CommitDate: Wed Jan 13 15:12:26 2021 +0100

    Update test/hello.cxx and related image
    
    Improve CMP compatibility and use a better (anti-aliased) image for
    the docs.

 documentation/src/basics.dox    |  12 ++++++------
 documentation/src/hello_cxx.png | Bin 1195 -> 2383 bytes
 test/hello.cxx                  |   9 ++++-----
 3 files changed, 10 insertions(+), 11 deletions(-)

diff --git documentation/src/basics.dox documentation/src/basics.dox
index 2b839c3..71edef3 100644
--- documentation/src/basics.dox
+++ documentation/src/basics.dox
@@ -19,10 +19,10 @@ World!" program that uses FLTK to display the window.
 #include <FL/Fl_Box.H>
 
 int main(int argc, char **argv) {
-  Fl_Window *window = new Fl_Window(340,180);
-  Fl_Box *box = new Fl_Box(20,40,300,100,"Hello, World!");
+  Fl_Window *window = new Fl_Window(340, 180);
+  Fl_Box *box = new Fl_Box(20, 40, 300, 100, "Hello, World!");
   box->box(FL_UP_BOX);
-  box->labelfont(FL_BOLD+FL_ITALIC);
+  box->labelfont(FL_BOLD + FL_ITALIC);
   box->labelsize(36);
   box->labeltype(FL_SHADOW_LABEL);
   window->end();
@@ -37,21 +37,21 @@ After including the required header files, the program then creates a
 window. All following widgets will automatically be children of this window.
 
 \code
-Fl_Window *window = new Fl_Window(340,180);
+Fl_Window *window = new Fl_Window(340, 180);
 \endcode
 
 Then we create a box with the "Hello, World!" string in it. FLTK automatically
 adds the new box to \p window, the current grouping widget.
 
 \code
-Fl_Box *box = new Fl_Box(20,40,300,100,"Hello, World!");
+Fl_Box *box = new Fl_Box(20, 40, 300, 100, "Hello, World!");
 \endcode
 
 Next, we set the type of box and the font, size, and style of the label:
 
 \code
 box->box(FL_UP_BOX);
-box->labelfont(FL_BOLD+FL_ITALIC);
+box->labelfont(FL_BOLD + FL_ITALIC);
 box->labelsize(36);
 box->labeltype(FL_SHADOW_LABEL);
 \endcode
diff --git documentation/src/hello_cxx.png documentation/src/hello_cxx.png
index 43604e3..de86966 100644
Binary files documentation/src/hello_cxx.png and documentation/src/hello_cxx.png differ
diff --git test/hello.cxx test/hello.cxx
index b301832..d7308cd 100644
--- test/hello.cxx
+++ test/hello.cxx
@@ -1,7 +1,7 @@
 //
 // Hello, World! program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2010 by Bill Spitzak and others.
+// Copyright 1998-2021 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
@@ -19,14 +19,13 @@
 #include <FL/Fl_Box.H>
 
 int main(int argc, char **argv) {
-  Fl_Window *window = new Fl_Window(340,180);
-  Fl_Box *box = new Fl_Box(20,40,300,100,"Hello, World!");
+  Fl_Window *window = new Fl_Window(340, 180);
+  Fl_Box *box = new Fl_Box(20, 40, 300, 100, "Hello, World!");
   box->box(FL_UP_BOX);
-  box->labelfont(FL_BOLD+FL_ITALIC);
+  box->labelfont(FL_BOLD + FL_ITALIC);
   box->labelsize(36);
   box->labeltype(FL_SHADOW_LABEL);
   window->end();
   window->show(argc, argv);
   return Fl::run();
 }
-
Direct Link to Message ]
 
     
Previous Message ]Next Message ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.