File: Fl_Value_Output.i

package info (click to toggle)
pyfltk 1.4.4.0%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,556 kB
  • sloc: python: 7,769; cpp: 356; makefile: 24
file content (23 lines) | stat: -rw-r--r-- 613 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* File : Fl_Value_Output.i */
//%module Fl_Value_Output

%feature("docstring") ::Fl_Value_Output
"""
The Fl_Value_Output widget displays a floating point value. If step() is 
not zero, the user can adjust the value by dragging the mouse left and right. 
The left button moves one step()  per pixel, the middle by 10 * step(), and 
the right button by 100 * step().

This is much lighter-weight than Fl_Value_Input because it contains no text 
editing code or character buffer. 
""" ;

%{
#include "FL/Fl_Value_Output.H"
%}

%include "macros.i"

CHANGE_OWNERSHIP(Fl_Value_Output)

%include "FL/Fl_Value_Output.H"