summaryrefslogtreecommitdiff
path: root/test/browser.cxx
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2020-07-01 18:03:10 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2020-07-06 20:28:20 +0200
commitf09e17c3c564e8310125a10c03397cbf473ff643 (patch)
tree8d0fd4a28e3686c33aaa140d07ddba26ab28bdc2 /test/browser.cxx
parentb0e0c355edaa2e23148cb0260ada907aec930f05 (diff)
Remove $Id$ tags, update URL's, and more
- remove obsolete svn '$Id$' tags from all source files - update .fl files and generated files accordingly - replace 'http://www.fltk.org' URL's with 'https://...' - replace bug report URL 'str.php' with 'bugs.php' - remove trailing whitespace - fix other whitespace errors flagged by Git - add and/or fix missing or wrong standard headers - convert tabs to spaces in all source files The only relevant code changes are in the fluid/ folder where some .fl files and other source files were used to generate the '$Id' headers and footers.
Diffstat (limited to 'test/browser.cxx')
-rw-r--r--test/browser.cxx58
1 files changed, 26 insertions, 32 deletions
diff --git a/test/browser.cxx b/test/browser.cxx
index 749a7ed83..23d84e7d8 100644
--- a/test/browser.cxx
+++ b/test/browser.cxx
@@ -1,6 +1,4 @@
//
-// "$Id$"
-//
// Browser test program for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2010 by Bill Spitzak and others.
@@ -9,11 +7,11 @@
// the file "COPYING" which should have been included with this file. If this
// file is missing or damaged, see the license at:
//
-// http://www.fltk.org/COPYING.php
+// https://www.fltk.org/COPYING.php
//
-// Please report all bugs and problems on the following page:
+// Please see the following page on how to report bugs and issues:
//
-// http://www.fltk.org/str.php
+// https://www.fltk.org/bugs.php
//
/*
@@ -53,11 +51,11 @@ That was a blank line above this.
#s## start line with '#'
#s#.# alternative start line with '#'
- You should try different browser types:
- Fl_Browser
- Fl_Select_Browser
- Fl_Hold_Browser
- Fl_Multi_Browser
+ You should try different browser types:
+ Fl_Browser
+ Fl_Select_Browser
+ Fl_Hold_Browser
+ Fl_Multi_Browser
*/
#include <FL/Fl.H>
@@ -74,15 +72,15 @@ That was a blank line above this.
#include <stdlib.h>
Fl_Select_Browser *browser;
-Fl_Button *top,
- *bottom,
- *middle,
- *visible,
- *swap,
- *sort;
+Fl_Button *top,
+ *bottom,
+ *middle,
+ *visible,
+ *swap,
+ *sort;
Fl_Choice *btype;
Fl_Choice *wtype;
-Fl_Int_Input *field;
+Fl_Int_Input *field;
Fl_Simple_Terminal *tty = 0;
typedef struct {
@@ -106,7 +104,7 @@ WhenItem when_items[] = {
void b_cb(Fl_Widget* o, void*) {
tty->printf("callback, selection = \033[31m%d\033[0m, event_clicks = \033[32m%d\033[0m\n",
- ((Fl_Browser*)o)->value(), Fl::event_clicks());
+ ((Fl_Browser*)o)->value(), Fl::event_clicks());
}
void show_cb(Fl_Widget *o, void *) {
@@ -130,15 +128,15 @@ void show_cb(Fl_Widget *o, void *) {
void swap_cb(Fl_Widget *, void *) {
int a = -1, b = -1;
- for ( int t=0; t<browser->size(); t++ ) { // find two selected items
+ for ( int t=0; t<browser->size(); t++ ) { // find two selected items
if ( browser->selected(t) ) {
if ( a < 0 )
- { a = t; }
- else
- { b = t; break; }
+ { a = t; }
+ else
+ { b = t; break; }
}
}
- browser->swap(a, b); // swap them
+ browser->swap(a, b); // swap them
}
void sort_cb(Fl_Widget *, void *) {
@@ -147,7 +145,7 @@ void sort_cb(Fl_Widget *, void *) {
void btype_cb(Fl_Widget *, void *) {
for ( int t=1; t<=browser->size(); t++ ) browser->select(t,0);
- browser->select(1,0); // leave focus box on first line
+ browser->select(1,0); // leave focus box on first line
if ( strcmp(btype->text(),"Normal")==0) browser->type(FL_NORMAL_BROWSER);
else if ( strcmp(btype->text(),"Select")==0) browser->type(FL_SELECT_BROWSER);
else if ( strcmp(btype->text(),"Hold" )==0) browser->type(FL_HOLD_BROWSER);
@@ -157,7 +155,7 @@ void btype_cb(Fl_Widget *, void *) {
void wtype_cb(Fl_Widget *, void *) {
if ( wtype->value() < 0 ) return;
- browser->when( when_items[wtype->value()].wvalue ); // when value based on array
+ browser->when( when_items[wtype->value()].wvalue ); // when value based on array
}
int main(int argc, char **argv) {
@@ -176,10 +174,10 @@ int main(int argc, char **argv) {
if (!browser->load(fname)) {
int done = 0;
#ifdef _MSC_VER
- // if 'browser' was started from the VisualC environment in Win32,
- // the current directory is set to the environment itself,
+ // if 'browser' was started from the VisualC environment in Win32,
+ // the current directory is set to the environment itself,
// so we need to correct the browser file path
- if ( i == argc )
+ if ( i == argc )
{
fname = "../test/browser.cxx";
done = browser->load(fname);
@@ -253,7 +251,3 @@ int main(int argc, char **argv) {
return Fl::run();
}
-//
-// End of "$Id$".
-//
-