Fix typos and copyright

This commit is contained in:
Albrecht Schlosser 2022-02-19 12:55:06 +01:00
parent ec974ce6b8
commit fd8170525b
14 changed files with 19 additions and 19 deletions

View File

@ -87,7 +87,7 @@ void Fl_Window_Driver::draw() { pWindow->draw(); }
void Fl_Window_Driver::make_current() { } void Fl_Window_Driver::make_current() { }
/** /**
Make the window visble and raise it to the top. Make the window visible and raise it to the top.
*/ */
void Fl_Window_Driver::show() { } void Fl_Window_Driver::show() { }

View File

@ -1,7 +1,7 @@
// //
// Unit tests for the Fast Light Tool Kit (FLTK). // Unit tests for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2010 by Bill Spitzak and others. // Copyright 1998-2022 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // 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 // the file "COPYING" which should have been included with this file. If this
@ -32,7 +32,7 @@ public:
"The Unit Testing application can be used to verify correct graphics rendering " "The Unit Testing application can be used to verify correct graphics rendering "
"on the current platform. The core developer team uses this program to make sure that the " "on the current platform. The core developer team uses this program to make sure that the "
"FLTK user experience is identical on all supported graphics systems." "FLTK user experience is identical on all supported graphics systems."
"<h3>the UI Designer</h3>\n" "<h3>The UI Designer</h3>\n"
"<p>Designing a good user interface is an art. Widgets must be selected and carefully positioned " "<p>Designing a good user interface is an art. Widgets must be selected and carefully positioned "
"to create a consistent look and feel for the user. Text must fit into given boxes and graphic " "to create a consistent look and feel for the user. Text must fit into given boxes and graphic "
"elements must be correctly aligned. A good UI library will give consistent results on any " "elements must be correctly aligned. A good UI library will give consistent results on any "
@ -40,7 +40,7 @@ public:
"<p>FLTK supports a large collection of platforms and graphics drivers. This unit testing " "<p>FLTK supports a large collection of platforms and graphics drivers. This unit testing "
"application contains modules which will test rendering and alignment for most " "application contains modules which will test rendering and alignment for most "
"FLTK core graphics functions.</p>\n" "FLTK core graphics functions.</p>\n"
"<h3>the Developer</h3>\n" "<h3>The Developer</h3>\n"
"<p>Unittest is also a great help when implementing new graphics drivers. The tests are sorted " "<p>Unittest is also a great help when implementing new graphics drivers. The tests are sorted "
"in the same order in which a new graphics driver could be implemented. Most tests rely " "in the same order in which a new graphics driver could be implemented. Most tests rely "
"on the previous test to function correctly, so sticking to the given order is a good idea.</p>\n" "on the previous test to function correctly, so sticking to the given order is a good idea.</p>\n"

View File

@ -1,7 +1,7 @@
// //
// Unit tests for the Fast Light Tool Kit (FLTK). // Unit tests for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2010 by Bill Spitzak and others. // Copyright 1998-2022 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // 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 // the file "COPYING" which should have been included with this file. If this

View File

@ -1,7 +1,7 @@
// //
// Unit tests for the Fast Light Tool Kit (FLTK). // Unit tests for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2010 by Bill Spitzak and others. // Copyright 1998-2022 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // 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 // the file "COPYING" which should have been included with this file. If this

View File

@ -1,7 +1,7 @@
// //
// Unit tests for the Fast Light Tool Kit (FLTK). // Unit tests for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2010 by Bill Spitzak and others. // Copyright 1998-2022 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // 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 // the file "COPYING" which should have been included with this file. If this

View File

@ -1,7 +1,7 @@
// //
// Unit tests for the Fast Light Tool Kit (FLTK). // Unit tests for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2016 by Bill Spitzak and others. // Copyright 1998-2022 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // 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 // the file "COPYING" which should have been included with this file. If this

View File

@ -1,7 +1,7 @@
// //
// Unit tests for the Fast Light Tool Kit (FLTK). // Unit tests for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2010 by Bill Spitzak and others. // Copyright 1998-2022 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // 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 // the file "COPYING" which should have been included with this file. If this
@ -188,7 +188,7 @@ public:
// Description: // Description:
"This draws a black frame around a white square.\n\n" "This draws a black frame around a white square.\n\n"
// Things to look out for: // Things to look out for:
"If red pixels are visble or black pixels are missing, graphics clipping is misaligned." "If red pixels are visible or black pixels are missing, graphics clipping is misaligned."
); );
a+=100; a+=100;
@ -235,7 +235,7 @@ public:
// Description: // Description:
"This draws a black frame around a white square. The square is slightly smaller.\n\n" "This draws a black frame around a white square. The square is slightly smaller.\n\n"
// Things to look out for: // Things to look out for:
"If red pixels are visble or black pixels are missing, graphics clipping is misaligned." "If red pixels are visible or black pixels are missing, graphics clipping is misaligned."
); );
gl_test_win = new GLTestWin(a+24+8, b+9-5, 10, 4*24+2*16); gl_test_win = new GLTestWin(a+24+8, b+9-5, 10, 4*24+2*16);

View File

@ -1,7 +1,7 @@
// //
// Unit tests for the Fast Light Tool Kit (FLTK). // Unit tests for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2017 by Bill Spitzak and others. // Copyright 1998-2022 by Bill Spitzak and others.
// //
// Nods to Edmanuel Torres for the widget layout (STR#2672) // Nods to Edmanuel Torres for the widget layout (STR#2672)
// //

View File

@ -1,7 +1,7 @@
// //
// Unit tests for the Fast Light Tool Kit (FLTK). // Unit tests for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2010 by Bill Spitzak and others. // Copyright 1998-2022 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // 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 // the file "COPYING" which should have been included with this file. If this

View File

@ -1,7 +1,7 @@
// //
// Unit tests for the Fast Light Tool Kit (FLTK). // Unit tests for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2017 by Bill Spitzak and others. // Copyright 1998-2022 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // 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 // the file "COPYING" which should have been included with this file. If this

View File

@ -1,7 +1,7 @@
// //
// Unit tests for the Fast Light Tool Kit (FLTK). // Unit tests for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2010 by Bill Spitzak and others. // Copyright 1998-2022 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // 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 // the file "COPYING" which should have been included with this file. If this

View File

@ -1,7 +1,7 @@
// //
// Unit tests for the Fast Light Tool Kit (FLTK). // Unit tests for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2010 by Bill Spitzak and others. // Copyright 1998-2022 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // 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 // the file "COPYING" which should have been included with this file. If this
@ -72,7 +72,7 @@ public:
fl_color(FL_GREEN); fl_draw("fl_text_extents bounding box in GREEN", xx, yy); fl_color(FL_GREEN); fl_draw("fl_text_extents bounding box in GREEN", xx, yy);
fl_color(FL_BLACK); fl_color(FL_BLACK);
xx = x0 + 10; yy += 30; xx = x0 + 10; yy += 30;
fl_draw("NOTE: On systems with text anti-aliasing (e.g. OSX Quartz)", xx, yy); fl_draw("NOTE: On systems with text anti-aliasing (e.g. macOS Quartz)", xx, yy);
w0 = h0 = 0; fl_measure("NOTE: ", w0, h0, 0); w0 = h0 = 0; fl_measure("NOTE: ", w0, h0, 0);
xx += w0; yy += h0; xx += w0; yy += h0;
fl_draw("text may leak slightly outside the fl_text_extents()", xx, yy); fl_draw("text may leak slightly outside the fl_text_extents()", xx, yy);

View File

@ -1,7 +1,7 @@
// //
// Unit tests for the Fast Light Tool Kit (FLTK). // Unit tests for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2010 by Bill Spitzak and others. // Copyright 1998-2022 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // 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 // the file "COPYING" which should have been included with this file. If this

View File

@ -1,7 +1,7 @@
// //
// Unit tests for the Fast Light Tool Kit (FLTK). // Unit tests for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2021 by Bill Spitzak and others. // Copyright 1998-2022 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // 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 // the file "COPYING" which should have been included with this file. If this