fltk/FL/Fl_Slider.H
Michael R Sweet 4b561b6e90 Updated copyright notices for all of the 1.0.x files.
Updated the configure script for *BSD and GCC 2.95 (-fno-exceptions)

Added install rule to documentation directory.

Dumped old packages directory; added traditional RPM spec file and EPM
list file (that replace all of the packages stuff)

The FLUID man page is now "fluid.1" for the formatted page and "fluid.man"
for the non-formatted page, since only IRIX uses pack'd formatted man pages.

Whew!


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1090 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2000-04-25 22:17:00 +00:00

74 lines
2.2 KiB
C++

//
// "$Id: Fl_Slider.H,v 1.5.2.1 2000/04/25 22:15:55 mike Exp $"
//
// Slider header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
//
// 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.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
//
#ifndef Fl_Slider_H
#define Fl_Slider_H
#ifndef Fl_Valuator_H
#include "Fl_Valuator.H"
#endif
// values for type(), lowest bit indicate horizontal:
#define FL_VERT_SLIDER 0
#define FL_HOR_SLIDER 1
#define FL_VERT_FILL_SLIDER 2
#define FL_HOR_FILL_SLIDER 3
#define FL_VERT_NICE_SLIDER 4
#define FL_HOR_NICE_SLIDER 5
class Fl_Slider : public Fl_Valuator {
float slider_size_;
uchar slider_;
FL_EXPORT void _Fl_Slider();
FL_EXPORT void draw_bg(int, int, int, int);
protected:
// these allow subclasses to put the slider in a smaller area:
FL_EXPORT void draw(int, int, int, int);
FL_EXPORT int handle(int, int, int, int, int);
public:
FL_EXPORT void draw();
FL_EXPORT int handle(int);
FL_EXPORT Fl_Slider(int x,int y,int w,int h, const char *l = 0);
FL_EXPORT Fl_Slider(uchar t,int x,int y,int w,int h, const char *l);
FL_EXPORT int scrollvalue(int windowtop,int windowsize,int first,int totalsize);
FL_EXPORT void bounds(double a, double b);
float slider_size() const {return slider_size_;}
FL_EXPORT void slider_size(double v);
Fl_Boxtype slider() const {return (Fl_Boxtype)slider_;}
void slider(Fl_Boxtype c) {slider_ = c;}
};
#endif
//
// End of "$Id: Fl_Slider.H,v 1.5.2.1 2000/04/25 22:15:55 mike Exp $".
//