1998-10-20 00:46:58 +04:00
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// "$Id$"
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
|
|
|
// Roller widget for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// Copyright 1998-2005 by Bill Spitzak and others.
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Library General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Library General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Library General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
// USA.
|
|
|
|
//
|
2000-06-06 01:21:24 +04:00
|
|
|
// Please report all bugs and problems to "fltk-bugs@fltk.org".
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// Rapid-App style knob
|
|
|
|
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/Fl_Roller.H>
|
|
|
|
#include <FL/fl_draw.H>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
int Fl_Roller::handle(int event) {
|
|
|
|
static int ipos;
|
|
|
|
int newpos = horizontal() ? Fl::event_x() : Fl::event_y();
|
|
|
|
switch (event) {
|
|
|
|
case FL_PUSH:
|
2001-12-16 19:41:48 +03:00
|
|
|
if (Fl::visible_focus()) Fl::focus(this);
|
1998-10-06 22:21:25 +04:00
|
|
|
handle_push();
|
|
|
|
ipos = newpos;
|
|
|
|
return 1;
|
|
|
|
case FL_DRAG:
|
|
|
|
handle_drag(clamp(round(increment(previous_value(),newpos-ipos))));
|
|
|
|
return 1;
|
|
|
|
case FL_RELEASE:
|
|
|
|
handle_release();
|
|
|
|
return 1;
|
2001-08-05 18:00:15 +04:00
|
|
|
case FL_KEYBOARD :
|
|
|
|
switch (Fl::event_key()) {
|
|
|
|
case FL_Up:
|
|
|
|
if (horizontal()) return 0;
|
|
|
|
handle_drag(clamp(increment(value(),-1)));
|
|
|
|
return 1;
|
|
|
|
case FL_Down:
|
|
|
|
if (horizontal()) return 0;
|
|
|
|
handle_drag(clamp(increment(value(),1)));
|
|
|
|
return 1;
|
|
|
|
case FL_Left:
|
|
|
|
if (!horizontal()) return 0;
|
|
|
|
handle_drag(clamp(increment(value(),-1)));
|
|
|
|
return 1;
|
|
|
|
case FL_Right:
|
|
|
|
if (!horizontal()) return 0;
|
|
|
|
handle_drag(clamp(increment(value(),1)));
|
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
2002-05-24 18:19:19 +04:00
|
|
|
// break not required because of switch...
|
2001-08-05 18:00:15 +04:00
|
|
|
case FL_FOCUS :
|
|
|
|
case FL_UNFOCUS :
|
2001-11-03 22:24:22 +03:00
|
|
|
if (Fl::visible_focus()) {
|
|
|
|
redraw();
|
|
|
|
return 1;
|
|
|
|
} else return 0;
|
2002-05-12 15:12:56 +04:00
|
|
|
case FL_ENTER :
|
|
|
|
case FL_LEAVE :
|
|
|
|
return 1;
|
1998-10-06 22:21:25 +04:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Fl_Roller::draw() {
|
1998-10-19 21:53:09 +04:00
|
|
|
if (damage()&FL_DAMAGE_ALL) draw_box();
|
1998-10-06 22:21:25 +04:00
|
|
|
int X = x()+Fl::box_dx(box());
|
|
|
|
int Y = y()+Fl::box_dy(box());
|
|
|
|
int W = w()-Fl::box_dw(box())-1;
|
|
|
|
int H = h()-Fl::box_dh(box())-1;
|
1999-09-15 20:07:03 +04:00
|
|
|
if (W<=0 || H <=0) return;
|
1998-10-06 22:21:25 +04:00
|
|
|
int offset = step() ? int(value()/step()) : 0;
|
|
|
|
const double ARC = 1.5; // 1/2 the number of radians visible
|
|
|
|
const double delta = .2; // radians per knurl
|
|
|
|
if (horizontal()) { // horizontal one
|
|
|
|
// draw shaded ends of wheel:
|
|
|
|
int h1 = W/4+1; // distance from end that shading starts
|
|
|
|
fl_color(color()); fl_rectf(X+h1,Y,W-2*h1,H);
|
|
|
|
for (int i=0; h1; i++) {
|
|
|
|
fl_color((Fl_Color)(FL_GRAY-i-1));
|
|
|
|
int h2 = FL_GRAY-i-1 > FL_DARK3 ? 2*h1/3+1 : 0;
|
|
|
|
fl_rectf(X+h2,Y,h1-h2,H);
|
|
|
|
fl_rectf(X+W-h1,Y,h1-h2,H);
|
|
|
|
h1 = h2;
|
|
|
|
}
|
1998-12-02 21:43:28 +03:00
|
|
|
if (active_r()) {
|
|
|
|
// draw ridges:
|
|
|
|
double junk;
|
2002-08-09 07:17:30 +04:00
|
|
|
for (double yy = -ARC+modf(offset*sin(ARC)/(W/2)/delta,&junk)*delta;;
|
|
|
|
yy += delta) {
|
|
|
|
int yy1 = int((sin(yy)/sin(ARC)+1)*W/2);
|
|
|
|
if (yy1 <= 0) continue; else if (yy1 >= W-1) break;
|
|
|
|
fl_color(FL_DARK3); fl_yxline(X+yy1,Y+1,Y+H-1);
|
|
|
|
if (yy < 0) yy1--; else yy1++;
|
|
|
|
fl_color(FL_LIGHT1);fl_yxline(X+yy1,Y+1,Y+H-1);
|
1998-12-02 21:43:28 +03:00
|
|
|
}
|
|
|
|
// draw edges:
|
|
|
|
h1 = W/8+1; // distance from end the color inverts
|
|
|
|
fl_color(FL_DARK2);
|
|
|
|
fl_xyline(X+h1,Y+H-1,X+W-h1);
|
|
|
|
fl_color(FL_DARK3);
|
|
|
|
fl_yxline(X,Y+H,Y,X+h1);
|
|
|
|
fl_xyline(X+W-h1,Y,X+W);
|
|
|
|
fl_color(FL_LIGHT2);
|
|
|
|
fl_xyline(X+h1,Y-1,X+W-h1);
|
|
|
|
fl_yxline(X+W,Y,Y+H,X+W-h1);
|
|
|
|
fl_xyline(X+h1,Y+H,X);
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
|
|
|
} else { // vertical one
|
|
|
|
// draw shaded ends of wheel:
|
|
|
|
int h1 = H/4+1; // distance from end that shading starts
|
|
|
|
fl_color(color()); fl_rectf(X,Y+h1,W,H-2*h1);
|
|
|
|
for (int i=0; h1; i++) {
|
|
|
|
fl_color((Fl_Color)(FL_GRAY-i-1));
|
|
|
|
int h2 = FL_GRAY-i-1 > FL_DARK3 ? 2*h1/3+1 : 0;
|
|
|
|
fl_rectf(X,Y+h2,W,h1-h2);
|
|
|
|
fl_rectf(X,Y+H-h1,W,h1-h2);
|
|
|
|
h1 = h2;
|
|
|
|
}
|
1998-12-02 21:43:28 +03:00
|
|
|
if (active_r()) {
|
|
|
|
// draw ridges:
|
|
|
|
double junk;
|
2002-08-09 07:17:30 +04:00
|
|
|
for (double yy = -ARC+modf(offset*sin(ARC)/(H/2)/delta,&junk)*delta;
|
|
|
|
; yy += delta) {
|
|
|
|
int yy1 = int((sin(yy)/sin(ARC)+1)*H/2);
|
|
|
|
if (yy1 <= 0) continue; else if (yy1 >= H-1) break;
|
|
|
|
fl_color(FL_DARK3); fl_xyline(X+1,Y+yy1,X+W-1);
|
|
|
|
if (yy < 0) yy1--; else yy1++;
|
|
|
|
fl_color(FL_LIGHT1);fl_xyline(X+1,Y+yy1,X+W-1);
|
1998-12-02 21:43:28 +03:00
|
|
|
}
|
|
|
|
// draw edges:
|
|
|
|
h1 = H/8+1; // distance from end the color inverts
|
|
|
|
fl_color(FL_DARK2);
|
|
|
|
fl_yxline(X+W-1,Y+h1,Y+H-h1);
|
|
|
|
fl_color(FL_DARK3);
|
|
|
|
fl_xyline(X+W,Y,X,Y+h1);
|
|
|
|
fl_yxline(X,Y+H-h1,Y+H);
|
|
|
|
fl_color(FL_LIGHT2);
|
|
|
|
fl_yxline(X,Y+h1,Y+H-h1);
|
|
|
|
fl_xyline(X,Y+H,X+W,Y+H-h1);
|
|
|
|
fl_yxline(X+W,Y+h1,Y);
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
|
|
|
}
|
2001-08-05 18:00:15 +04:00
|
|
|
|
|
|
|
if (Fl::focus() == this) draw_focus(FL_THIN_UP_FRAME, x(), y(), w(), h());
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
Fl_Roller::Fl_Roller(int X,int Y,int W,int H,const char* L)
|
|
|
|
: Fl_Valuator(X,Y,W,H,L) {
|
2001-08-05 18:00:15 +04:00
|
|
|
box(FL_UP_BOX);
|
1998-10-06 22:21:25 +04:00
|
|
|
step(1,1000);
|
|
|
|
}
|
|
|
|
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// End of "$Id$".
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|