1 /* File : Fl_Light_Button.i */
2 //%module Fl_Light_Button
3 
4 %feature("docstring") ::Fl_Light_Button
5 """
6 Buttons generate callbacks when they are clicked by the user. You control
7 exactly when and how by changing the values for type() and when().
8 
9 The Fl_Light_Button subclass display the 'on' state by turning on a light,
10 rather than drawing pushed in. The shape of the 'light' is initially set
11 to FL_DOWN_BOX. The color of the light when on is controlled with
12 selection_color(), which defaults to FL_YELLOW.
13 """ ;
14 
15 %{
16 #include "FL/Fl_Light_Button.H"
17 %}
18 
19 %include "macros.i"
20 
21 CHANGE_OWNERSHIP(Fl_Light_Button)
22 
23 %include "FL/Fl_Light_Button.H"
24