1998-10-20 17:25:25 +04:00
|
|
|
//
|
|
|
|
// Navigation test program for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
|
|
|
// Silly test of navigation keys. This is not a recommended method of
|
|
|
|
// laying out your panels!
|
|
|
|
//
|
2010-11-29 00:06:39 +03:00
|
|
|
// Copyright 1998-2010 by Bill Spitzak and others.
|
1998-10-20 17:25:25 +04:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// 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
|
|
|
|
// file is missing or damaged, see the license at:
|
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/COPYING.php
|
1998-10-20 17:25:25 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// Please see the following page on how to report bugs and issues:
|
2005-04-16 04:13:17 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/bugs.php
|
1998-10-20 17:25:25 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/Fl_Window.H>
|
|
|
|
#include <FL/Fl_Input.H>
|
2010-12-16 02:21:32 +03:00
|
|
|
#include <FL/Fl_Light_Button.H>
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
#define WIDTH 600
|
|
|
|
#define HEIGHT 300
|
|
|
|
#define GRID 25
|
|
|
|
|
2010-12-16 02:21:32 +03:00
|
|
|
void ToggleArrowFocus_CB(Fl_Widget *w, void*) {
|
|
|
|
Fl_Light_Button *b = (Fl_Light_Button*)w;
|
|
|
|
Fl::option(Fl::OPTION_ARROW_FOCUS, b->value() ? true : false);
|
|
|
|
}
|
1998-10-06 22:21:25 +04:00
|
|
|
int main(int argc, char **argv) {
|
|
|
|
if (argc > 1) srand(atoi(argv[1]));
|
2010-12-16 02:21:32 +03:00
|
|
|
Fl_Window window(WIDTH,HEIGHT+40,argv[0]);
|
|
|
|
// Include a toggle button to control arrow focus
|
|
|
|
Fl_Light_Button arrowfocus_butt(10,HEIGHT+10,130,20," Arrow Focus");
|
|
|
|
arrowfocus_butt.callback(ToggleArrowFocus_CB);
|
2020-07-01 19:03:10 +03:00
|
|
|
arrowfocus_butt.value(Fl::option(Fl::OPTION_ARROW_FOCUS) ? 1 : 0); // use default
|
2010-12-21 05:37:41 +03:00
|
|
|
arrowfocus_butt.tooltip("Control horizontal arrow key focus navigation behavior.\n"
|
|
|
|
"e.g. Fl::OPTION_ARROW_FOCUS");
|
1998-10-06 22:21:25 +04:00
|
|
|
window.end(); // don't auto-add children
|
|
|
|
for (int i = 0; i<10000; i++) {
|
|
|
|
// make up a random size of widget:
|
|
|
|
int x = rand()%(WIDTH/GRID+1) * GRID;
|
|
|
|
int y = rand()%(HEIGHT/GRID+1) * GRID;
|
|
|
|
int w = rand()%(WIDTH/GRID+1) * GRID;
|
|
|
|
if (w < x) {w = x-w; x-=w;} else {w = w-x;}
|
|
|
|
int h = rand()%(HEIGHT/GRID+1) * GRID;
|
|
|
|
if (h < y) {h = y-h; y-=h;} else {h = h-y;}
|
|
|
|
if (w < GRID || h < GRID || w < h) continue;
|
|
|
|
// find where to insert it and see if it intersects something:
|
1998-11-12 17:17:48 +03:00
|
|
|
Fl_Widget *j = 0;
|
1998-10-06 22:21:25 +04:00
|
|
|
int n; for (n=0; n < window.children(); n++) {
|
|
|
|
Fl_Widget *o = window.child(n);
|
|
|
|
if (x<o->x()+o->w() && x+w>o->x() &&
|
2020-07-01 19:03:10 +03:00
|
|
|
y<o->y()+o->h() && y+h>o->y()) break;
|
2010-10-29 01:47:01 +04:00
|
|
|
if ( !j && ( y<o->y() || (y==o->y() && x<o->x()) ) ) j = o;
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
|
|
|
// skip if intersection:
|
|
|
|
if (n < window.children()) continue;
|
1998-11-12 17:17:48 +03:00
|
|
|
window.insert(*(new Fl_Input(x,y,w,h)),j);
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
2001-12-23 06:40:51 +03:00
|
|
|
window.show(argc, argv);
|
1998-10-06 22:21:25 +04:00
|
|
|
return Fl::run();
|
|
|
|
}
|