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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
//
// "$Id$"
//
// Browser 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
//
/*
This is a test of how the browser draws lines.
This is a second line.
This is a third.
That was a blank line above this.
@r@_Right justify
@c@_Center justify
@_Left justify
@bBold text
@iItalic text
@b@iBold Italic
@fFixed width
@f@bBold Fixed
@f@iItalic Fixed
@f@i@bBold Italic Fixed
@lLarge
@l@bLarge bold
@sSmall
@s@bSmall bold
@s@iSmall italic
@s@i@bSmall italic bold
@uunderscore
@C1RED
@C2Green
@C4Blue
You should try different browser types:
Fl_Browser
Fl_Select_Browser
Fl_Hold_Browser
Fl_Multi_Browser
*/
#include <FL/Fl.H>
#include <FL/Fl_Select_Browser.H>
#include <FL/Fl_Double_Window.H>
#include <FL/Fl_Button.H>
#include <FL/Fl_Int_Input.H>
#include <FL/Fl_Choice.H>
#include <FL/fl_ask.H>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
Fl_Select_Browser *browser;
Fl_Button *top,
*bottom,
*middle,
*visible,
*swap,
*sort;
Fl_Choice *btype;
Fl_Int_Input *field;
void b_cb(Fl_Widget* o, void*) {
printf("callback, selection = %d, event_clicks = %d\n",
((Fl_Browser*)o)->value(), Fl::event_clicks());
}
void show_cb(Fl_Widget *o, void *) {
int line = atoi(field->value());
if (!line) {
fl_alert("Please enter a number in the text field\n"
"before clicking on the buttons.");
return;
}
if (o == top)
browser->topline(line);
else if (o == bottom)
browser->bottomline(line);
else if (o == middle)
browser->middleline(line);
else
browser->make_visible(line);
}
void swap_cb(Fl_Widget *, void *) {
int a = -1, b = -1;
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; }
}
}
browser->swap(a, b); // swap them
}
void sort_cb(Fl_Widget *, void *) {
browser->sort(FL_SORT_ASCENDING);
}
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
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);
else if ( strcmp(btype->text(),"Multi" )==0) browser->type(FL_MULTI_BROWSER);
browser->redraw();
}
int main(int argc, char **argv) {
int i;
if (!Fl::args(argc,argv,i)) Fl::fatal(Fl::help);
const char* fname = (i < argc) ? argv[i] : "browser.cxx";
Fl_Double_Window window(560,400,fname);
browser = new Fl_Select_Browser(0,0,560,350,0);
browser->type(FL_MULTI_BROWSER);
//browser->type(FL_HOLD_BROWSER);
//browser->color(42);
browser->callback(b_cb);
// browser->scrollbar_right();
//browser->has_scrollbar(Fl_Browser::BOTH_ALWAYS);
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,
// so we need to correct the browser file path
if ( i == argc )
{
fname = "../test/browser.cxx";
done = browser->load(fname);
}
#elif defined(__APPLE__)
if ( i == argc )
{
char buf[2048];
strcpy(buf, argv[0]);
char *slash = strrchr(buf, '/');
if (slash)
#if defined(USING_XCODE)
strcpy(slash, "/../Resources/browser.cxx");
#else
strcpy(slash, "/../../../browser.cxx");
#endif
done = browser->load(buf);
}
#endif
if ( !done )
{
fl_message("Can't load %s, %s\n", fname, strerror(errno));
exit(1);
}
}
browser->position(0);
field = new Fl_Int_Input(55, 350, 505, 25, "Line #:");
field->callback(show_cb);
top = new Fl_Button(0, 375, 80, 25, "Top");
top->callback(show_cb);
bottom = new Fl_Button(80, 375, 80, 25, "Bottom");
bottom->callback(show_cb);
middle = new Fl_Button(160, 375, 80, 25, "Middle");
middle->callback(show_cb);
visible = new Fl_Button(240, 375, 80, 25, "Make Vis.");
visible->callback(show_cb);
swap = new Fl_Button(320, 375, 80, 25, "Swap");
swap->callback(swap_cb);
swap->tooltip("Swaps two selected lines\n(Use CTRL-click to select two lines)");
sort = new Fl_Button(400, 375, 80, 25, "Sort");
sort->callback(sort_cb);
btype = new Fl_Choice(480, 375, 80, 25);
btype->add("Normal");
btype->add("Select");
btype->add("Hold");
btype->add("Multi");
btype->callback(btype_cb);
btype->value(3);
btype->tooltip("Changes the browser type()");
window.resizable(browser);
window.show(argc,argv);
return Fl::run();
}
//
// End of "$Id$".
//
|