FLTK 1.4.0
Loading...
Searching...
No Matches
Fl_Check_Button.H
1//
2// Check button header file for the Fast Light Tool Kit (FLTK).
3//
4// Copyright 1998-2014 by Bill Spitzak and others.
5//
6// This library is free software. Distribution and use rights are outlined in
7// the file "COPYING" which should have been included with this file. If this
8// file is missing or damaged, see the license at:
9//
10// https://www.fltk.org/COPYING.php
11//
12// Please see the following page on how to report bugs and issues:
13//
14// https://www.fltk.org/bugs.php
15//
16
17#ifndef Fl_Check_Button_H
18#define Fl_Check_Button_H
19
20#include "Fl_Light_Button.H"
21
22/*
23 class: Fl_Check_Button.
24
25 A button with a "checkmark" to show its status.
26*/
27
28class FL_EXPORT Fl_Check_Button : public Fl_Light_Button {
29public:
30 Fl_Check_Button(int X, int Y, int W, int H, const char *L = 0);
31};
32
33#endif
A button with a "checkmark" to show its status.
Definition Fl_Check_Button.H:28
This subclass displays the "on" state by turning on a light, rather than drawing pushed in.
Definition Fl_Light_Button.H:36