File: Fl_Timer.i

package info (click to toggle)
pyfltk 1.3.8%2Brepack-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,868 kB
  • sloc: python: 7,494; cpp: 351; perl: 55; makefile: 24
file content (20 lines) | stat: -rwxr-xr-x 459 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
/* File : Fl_Timer.i */
//%module Fl_Timer

%feature("docstring") ::Fl_Timer
"""
This is provided only to emulate the Forms Timer widget. It works by making 
a timeout callback every 1/5 second. This is wasteful and inaccurate if you 
just want something to happen a fixed time in the future. You should directly 
call Fl::add_timeout() instead.
""" ;

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

%include "macros.i"

CHANGE_OWNERSHIP(Fl_Timer)

%include "FL/Fl_Timer.H"