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

« back to all changes in this revision

Viewing changes to fltk/test/iconize.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: iconize.py 35 2003-09-29 21:39:48Z andreasheld $"
 
3
#
 
4
# Iconize 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
 
 
32
def iconize_cb(ptr, win):
 
33
        win.iconize()
 
34
 
 
35
def show_cb(ptr, win):
 
36
        win.show()
 
37
 
 
38
def hide_cb(ptr, win):
 
39
        win.hide()
 
40
 
 
41
def window_cb(ptr):
 
42
        sys.exit(0)
 
43
 
 
44
 
 
45
 
 
46
 
 
47
mainw = Fl_Window(200,200)
 
48
mainw.end()
 
49
mainw.show(len(sys.argv),sys.argv)
 
50
 
 
51
control = Fl_Window(120,120)
 
52
 
 
53
hide_button = Fl_Button(0,0,120,30,"hide()")
 
54
hide_button.callback(hide_cb, mainw);
 
55
 
 
56
iconize_button = Fl_Button(0,30,120,30,"iconize()")
 
57
iconize_button.callback(iconize_cb, mainw)
 
58
 
 
59
show_button = Fl_Button(0,60,120,30,"show()")
 
60
show_button.callback(show_cb, mainw)
 
61
 
 
62
show_button2 = Fl_Button(0,90,120,30,"show this")
 
63
show_button2.callback(show_cb, control)
 
64
 
 
65
#  Fl_Box box(FL_NO_BOX,0,60,120,30,"Also try running\nwith -i switch");
 
66
 
 
67
control.end()
 
68
control.show()
 
69
control.callback(window_cb)
 
70
 
 
71
Fl.run()