/usr/share/pyshared/fltk/test/DraggableBox.py is in python-fltk 1.3.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | #
# "$Id: DraggableBox.py 116 2005-09-07 13:55:07Z andreasheld $"
#
# Draggable boxes in a scrollable window. After the demo program
# by G. Ercolano, http://seriss.com/people/erco/fltk
#
# FLTK copyright 1998-1999 by Bill Spitzak and others.
# pyFLTK copyright 2003 by Andreas Held and others.
#
# This library is free software you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this library if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
#
# Please report all bugs and problems to "pyfltk-user@lists.sourceforge.net".
#
from fltk import *
import sys
# Demonstrate user-movable boxes in a scroll region
# erco@netcom.com 08/06/02
# XPM
cat_xpm = [
"50 50 4 1",
" c black",
"o c #ff9900",
"@ c #ffffff",
"# c None",
"##################################################",
"##################################################",
"##################################################",
"##################################################",
"##################################################",
"##################################################",
"##################################################",
"##################################################",
"##################################################",
"### ############################## ####",
"### ooooo ########################### ooooo ####",
"### oo oo ######################### oo oo ####",
"### oo oo ####################### oo oo ####",
"### oo oo ##################### oo oo ####",
"### oo oo ################### oo oo ####",
"### oo oo oo oo ####",
"### oo oo ooooooooooooooo oo oo ####",
"### oo ooooooooooooooooooooo oo ####",
"### oo ooooooooooooooooooooooooooo ooo ####",
"#### oo ooooooo ooooooooooooo ooooooo oo #####",
"#### oo oooooooo ooooooooooooo oooooooo oo #####",
"##### oo oooooooo ooooooooooooo oooooooo oo ######",
"##### o ooooooooooooooooooooooooooooooo o ######",
"###### ooooooooooooooooooooooooooooooooooo #######",
"##### ooooooooo ooooooooo ooooooooo ######",
"##### oooooooo @@@ ooooooo @@@ oooooooo ######",
"##### oooooooo @@@@@ ooooooo @@@@@ oooooooo ######",
"##### oooooooo @@@@@ ooooooo @@@@@ oooooooo ######",
"##### oooooooo @@@ ooooooo @@@ oooooooo ######",
"##### ooooooooo ooooooooo ooooooooo ######",
"###### oooooooooooooo oooooooooooooo #######",
"###### oooooooo@@@@@@@ @@@@@@@oooooooo #######",
"###### ooooooo@@@@@@@@@ @@@@@@@@@ooooooo #######",
"####### ooooo@@@@@@@@@@@ @@@@@@@@@@@ooooo ########",
"######### oo@@@@@@@@@@@@ @@@@@@@@@@@@oo ##########",
"########## o@@@@@@ @@@@@ @@@@@ @@@@@@o ###########",
"########### @@@@@@@ @ @@@@@@@ ############",
"############ @@@@@@@@@@@@@@@@@@@@@ #############",
"############## @@@@@@@@@@@@@@@@@ ###############",
"################ @@@@@@@@@ #################",
"#################### #####################",
"##################################################",
"##################################################",
"##################################################",
"##################################################",
"##################################################",
"##################################################",
"##################################################",
"##################################################",
"##################################################"
]
G_win = None
G_scroll = None
G_cat = Fl_Pixmap(cat_xpm)
offset = [0,0]
# A 'MOVABLE' BOX
class Box(Fl_Box):
def __init__(self, X, Y, W, H, L):
Fl_Box.__init__(self, X, Y, W, H, L)
self.image(G_cat)
self.box(FL_UP_BOX)
self.color(FL_GRAY)
def __init__(self, X, Y):
Fl_Box.__init__(self, X, Y, 80, 50)
self.image(G_cat)
self.box(FL_UP_BOX)
self.color(FL_GRAY)
def handle(self, e):
global offset
if e == FL_PUSH:
# save where user clicked for dragging
offset[0] = self.x() - Fl.event_x()
offset[1] = self.y() - Fl.event_y()
return 1
elif e == FL_RELEASE:
return 1
elif e == FL_DRAG:
# handle dragging
self.position(offset[0]+Fl.event_x(), offset[1]+Fl.event_y())
G_win.redraw()
return 1
elif e == FL_ENTER:
return 1
elif e == FL_MOVE:
print "FL_MOVE"
return 0
return 0
# MAIN
if __name__=='__main__':
G_win = Fl_Double_Window(720,486)
G_scroll = Fl_Scroll(10,10,720-20,486-20)
G_scroll.box(FL_FLAT_BOX)
G_scroll.color(fl_rgb_color(46))
G_scroll.begin()
# CREATE NEW BOXES ON THE SCROLLABLE 'DESK'
l = []
x = 200
while x <= 500:
y = 100
while y < 370:
l.append(Box(x,y))
y += 70
x += 100
G_scroll.end()
G_win.resizable(G_win)
G_win.show(len(sys.argv), sys.argv)
Fl.run()
|