⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fl_slider.h

📁 PIXIL is a small footprint operating environment, complete with PDA PIM applications, a browser and
💻 H
字号:
//// "$Id: Fl_Slider.H,v 1.1.1.1 2003/08/07 21:18:38 jasonk Exp $"//// Slider header file for the Fast Light Tool Kit (FLTK).//// Copyright 1998-1999 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	5class Fl_Slider : public Fl_Valuator {  float slider_size_;  float slider_size_min_;  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 void slider_hor_lines(int x, int y, int h, int w, int W, Fl_Color c);  FL_EXPORT void slider_ver_lines(int x, int y, int h, int w, int W, Fl_Color c);  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.1.1.1 2003/08/07 21:18:38 jasonk Exp $".//

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -