~jtaylor/ubuntu/natty/pyfltk/fix-779340

« back to all changes in this revision

Viewing changes to fltk/test/help.py

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2009-03-13 20:47:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090313204700-ra4hgdlhxzrccas3
Tags: upstream-1.1.3
ImportĀ upstreamĀ versionĀ 1.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# "$Id: help.py 28 2003-07-16 20:00:27Z andreasheld $"
 
3
#
 
4
# Help test program for pyFLTK the Python bindings
 
5
# for the Fast Light Tool Kit (FLTK).
 
6
#
 
7
# FLTK copyright 1998-1999 by Bill Spitzak and others.
 
8
# pyFLTK copyright 2003 by Andreas Held and others.
 
9
#
 
10
# This library is free software you can redistribute it and/or
 
11
# modify it under the terms of the GNU Library General Public
 
12
# License as published by the Free Software Foundation either
 
13
# version 2 of the License, or (at your option) any later version.
 
14
#
 
15
# This library is distributed in the hope that it will be useful,
 
16
# but WITHOUT ANY WARRANTY without even the implied warranty of
 
17
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
18
# Library General Public License for more details.
 
19
#
 
20
# You should have received a copy of the GNU Library General Public
 
21
# License along with this library if not, write to the Free Software
 
22
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 
23
# USA.
 
24
#
 
25
# Please report all bugs and problems to "pyfltk-user@lists.sourceforge.net".
 
26
#
 
27
 
 
28
from fltk import *
 
29
import sys
 
30
 
 
31
help = Fl_Help_Dialog()
 
32
 
 
33
if len(sys.argv) < 2:
 
34
    help.load("../docs/pyFltk.html")
 
35
else:
 
36
    help.load(sys.argv[1]);
 
37
 
 
38
help.show()
 
39
 
 
40
Fl.run()