1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
//
// "$Id$"
//
// Symbol test program for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2010 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
// file is missing or damaged, see the license at:
//
// http://www.fltk.org/COPYING.php
//
// Please report all bugs and problems on the following page:
//
// http://www.fltk.org/str.php
//
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <FL/Fl.H>
#include <FL/Fl_Double_Window.H>
#include <FL/Fl_Box.H>
#include <FL/Fl_Value_Slider.H>
#include <FL/fl_draw.H>
int N = 0;
#define W 70
#define H 70
#define ROWS 6
#define COLS 6
Fl_Double_Window *window;
Fl_Value_Slider *orientation;
Fl_Value_Slider *size;
void slider_cb(Fl_Widget *, void *) {
static char buf[80];
int val = (int)orientation->value();
int sze = (int)size->value();
for (int i = window->children(); i--; ) { // all window children
Fl_Widget *wc = window->child(i);
const char *l = (const char *)(wc->user_data());
if ( l && *l == '@' ) { // all children with '@'
l ++;
if ( wc->box() == FL_NO_BOX ) { // ascii legend?
if (val&&sze) sprintf(buf, "@@%+d%d%s", sze, val, l);
else if (val) sprintf(buf, "@@%d%s", val, l);
else if (sze) sprintf(buf, "@@%+d%s", sze, l);
else sprintf(buf, "@@%s", l);
} else { // box with symbol
if (val&&sze) sprintf(buf, "@%+d%d%s", sze, val, l);
else if (val) sprintf(buf, "@%d%s", val, l);
else if (sze) sprintf(buf, "@%+d%s", sze, l);
else sprintf(buf, "@%s", l);
}
wc->copy_label(buf);
}
}
window->redraw();
}
void bt(const char *name) {
int x = N%COLS;
int y = N/COLS;
char buf[255];
N++;
x = x*W+10;
y = y*H+10;
sprintf(buf, "@%s", name);
Fl_Box *a = new Fl_Box(x,y,W-20,H-20);
a->box(FL_NO_BOX);
a->copy_label(buf);
a->align(FL_ALIGN_BOTTOM);
a->labelsize(11);
a->user_data((void *)name);
Fl_Box *b = new Fl_Box(x,y,W-20,H-20);
b->box(FL_UP_BOX);
b->copy_label(name);
b->labelcolor(FL_DARK3);
b->user_data((void *)name);
}
int main(int argc, char ** argv) {
window = new Fl_Double_Window(COLS*W,ROWS*H+60);
bt("@->");
bt("@>");
bt("@>>");
bt("@>|");
bt("@>[]");
bt("@|>");
bt("@<-");
bt("@<");
bt("@<<");
bt("@|<");
bt("@[]<");
bt("@<|");
bt("@<->");
bt("@-->");
bt("@+");
bt("@->|");
bt("@||");
bt("@arrow");
bt("@returnarrow");
bt("@square");
bt("@circle");
bt("@line");
bt("@menu");
bt("@UpArrow");
bt("@DnArrow");
bt("@search");
bt("@FLTK");
bt("@filenew");
bt("@fileopen");
bt("@filesave");
bt("@filesaveas");
bt("@fileprint");
bt("@refresh");
bt("@reload");
bt("@undo");
bt("@redo");
orientation = new Fl_Value_Slider(
(int)(window->w()*.05+.5), window->h()-40,
(int)(window->w()*.42+.5), 16, "Orientation");
orientation->type(FL_HORIZONTAL);
orientation->range(0.0, 9.0);
orientation->value(0.0);
orientation->step(1);
orientation->callback(slider_cb, 0);
size = new Fl_Value_Slider(
(int)(window->w()*.53+.5), window->h()-40,
(int)(window->w()*.42+.5), 16, "Size");
size->type(FL_HORIZONTAL);
size->range(-3.0, 9.0);
size->value(0.0);
size->step(1);
size->callback(slider_cb, 0);
window->resizable(window);
window->show(argc,argv);
return Fl::run();
}
//
// End of "$Id$".
//
|