aboutsummaryrefslogtreecommitdiff
path: root/Python/Zinc.py
blob: 1420d8adce27d75878a7ab93c61c407091a4074e (plain)
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
#
# Zinc.py -- Python interface to the tkzinc widget.
#
# Authors         : Frederic Lepied, Patrick Lecoanet
# Created Date    : Thu Jul 22 09:36:04 1999
#
# $Id$
#
#
# Copyright (c) 1999 CENA --
#
# This code 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 code 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 code; if not, write to the Free
# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
#

__version__ = "$Revision$"

import types
from Tkinter import *
from Tkinter import _cnfmerge, _flatten

ZINC_NO_PART=-1
ZINC_CURRENT_POSITION=-2
ZINC_SPEED_VECTOR=-3
ZINC_LEADER=-4
ZINC_CONNECTION=-5

def havetkzinc(window):
    try:
        window.tk.call('load', 'tkzinc3.1.so')
        # Call a function from the package to autoload it
        # and verify that all is OK.
        window.tk.call('zinc')
    except TclError:
        return 0
    return 1

class Zinc(Widget):
    def __init__(self, master=None, cnf={}, **kw):
        Widget.__init__(self, master, 'zinc', cnf, kw)
        self.items = {}

    def add(self, itemType, *args, **kw):
        args = _flatten(args)
        if len(args) != 0:
            cnf = args[-1]
        else:
            cnf={}
        if type(cnf) in (DictionaryType, TupleType):
            args = args[:-1]
        else:
            cnf = {}
        return self.tk.getint(apply(
            self.tk.call,
            (self._w, 'add', itemType) 
            + args + self._options(cnf, kw)))
    
    def addtag(self, *args):
        self._do('addtag', args)

    def addtag_above(self, newtag, tagOrId):
        self.addtag(newtag, 'above', tagOrId)

    def addtag_all(self, newtag):
    	self.addtag(newtag, 'all')

    def addtag_atpoint(self, newtag, x, y, halo=None, start=None):
    	self.addtag(newtag, 'atpoint', x, y, halo, start)

    def addtag_atpriority(self, newtag, pri):
    	self.addtag(newtag, 'atpriority', pri)

    def addtag_below(self, newtag, tagOrId):
    	self.addtag(newtag, 'below', tagOrId)

    def addtag_enclosed(self, newtag, x1, y1, x2, y2):
    	self.addtag(newtag, 'enclosed', x1, y1, x2, y2)

    def addtag_overlapping(self, newtag, x1, y1, x2, y2):
    	self.addtag(newtag, 'overlapping', x1, y1, x2, y2)

    def addtag_withtag(self, newtag, tagOrId):
	self.addtag(newtag, 'withtag', tagOrId)

    def addtag_withtype(self, newtag, type):
	self.addtag(newtag, 'withtype', type)

    def anchorxy(self, *args):
        self._do('anchorxy', args)

    def bbox(self, *args):
        self._do('bbox', args)

    def becomes(self, *args):
        self._do('becomes', args)

#     def bind(self):
#         pass

    def bind_tag(self, tagOrId, sequence=None, func=None, add=None):
        return self._bind((self._w, 'bind', tagOrId),
                          sequence, func, add)

#     def cget(self):
#         pass

    def chggroup(self, *args):
        self._do('chggroup', args)

    def clone(self, *args):
        self._do('clone', args)

#     def configure(self):
#         pass

    def coords(self, *args):
        self._do('coords', args)

    def currentpart(self):
        return self.tk.getint(self._do('currentpart'))
                   
    def dtag(self, *args):
    	self._do('dtag', args)

    def find(self, *args):
    	return self._getints(self._do('find', args)) or ()

    def find_above(self, tagOrId):
    	return self.find('above', tagOrId)

    def find_all(self):
    	return self.find('all')

    def find_atpoint(self, x, y, halo=None, start=None):
    	return self.find('atpoint', x, y, halo, start)

    def find_atpriority(self, pri):
    	return self.find('atpriority', pri)

    def find_below(self, tagOrId):
    	return self.find('below', tagOrId)

    def find_enclosed(self, x1, y1, x2, y2):
    	return self.find('enclosed', x1, y1, x2, y2)

    def find_overlapping(self, x1, y1, x2, y2):
    	return self.find('overlapping', x1, y1, x2, y2)

    def find_withtag(self, tagOrId):
    	return self.find('withtag', tagOrId)

    def find_withtype(self, type):
    	return self.find('withtag', type)

    def gettags(self, *args):
    	return self.tk.splitlist(self._do('gettags', args))

    def group(self, *args):
        self._do('group', args)

    def hasanchors(self, *args):
        self._do('hasanchors', args)

    def hasfields(self, *args):
        self._do('hasanchors', args)

    def hasparts(self, *args):
        self._do('hasanchors', args)

#     def hastag(self):
#         pass

    def itemcget(self, tagOrId, option):
        return self._do('itemcget', (tagOrId, '-'+option))

    def itemfieldcget(self, tagOrId, field, option):
        return self._do('itemcget', (tagOrId, field, '-'+option))

    def itemconfigure(self, tagOrId, field=None, **kw):
        if not kw:
            cnf = {}
            for x in self.tk.split(
                field != None and self._do('itemconfigure', (tagOrId, field)) or
                self._do('itemconfigure', (tagOrId,))):
                #print x
                cnf[x[0][1:]] = (x[0][1:],) + x[1:]
            return cnf
        #print self._options({}, kw)
        if field != None:
            self._do('itemconfigure', (tagOrId, str(field),)
                     + self._options({}, kw))
        else:
            self._do('itemconfigure', (tagOrId,)
                     + self._options({}, kw))
    itemconfig = itemconfigure

    def loweritem(self, *args):
        self._do('lower', args)

    def monitor(self, *args):
        self._do('monitor', args)
    
    def raiseitem(self, *args):
        self._do('raise', args)

    def remove(self, *args):
        self._do('remove', args)
    
    def rotate(self, *args):
        self._do('rotate', args)
    
    def scale(self, xFactor=None, yFactor=None, tagOrId=None):
        if yFactor == None:
            return self.tk.getdouble(self._do('scale'))
        else:
            if tagOrId == None:
                self._do('scale', (xFactor, yFactor))
            else:
                self._do('scale', (tagOrId, xFactor, yFactor))

    def tdelete(self, *args):
        self._do('tdelete', args)
    
    def transform(self, *args):
        self._getints(self._do('transform', args))
    
    def translate(self, dx=None, dy=None, tagOrId=None):
        if dx == None:
            return self._getints(self._do('translate'))
        else:
            if tagOrId == None:
                self._do('translate', (dx, dy))
            else:
                self._do('translate', (tagOrId, dx, dy))

    def treset(self, *args):
        self._do('treset', args)
    
    def trestore(self, *args):
        self._do('trestore', args)
    
    def tsave(self, *args):
        self._do('tsave', args)
    
    def type(self, tagOrId):
        return self._do('type', (tagOrId,))


class ZincItem:
    def __init__(self, zinc, itemType, *args, **kw):
        self.zinc = zinc
        self.id = apply(zinc.add, (itemType,) + args, kw)
        zinc.items[self.id] = self
        
    def __str__(self):
        return str(self.id)

    def __repr__(self):
        return str(self.id)

    def delete(self):
        del self.zinc.items[self.id]
        self.zinc.delete(self.id)

    def __getitem__(self, key):
        return self.zinc.itemcget(self.id, key)

    def __setitem__(self, key, value):
        self.zinc.itemconfig(self.id, {key: value})

    def keys(self):
        if not hasattr(self, '_keys'):
            self._keys = {}
            config=self.zinc.itemconfig(self.id)
            for x in config.keys():
                self._keys[x] = config[x][1]
        return self._keys

    def has_key(self, key):
        return key in self.keys()

    def bind(self, sequence=None, command=None, add=None):
        self.zinc.bind_tag(self.id, sequence, command, add)
        
    def cget(self, attr):
        return self.zinc.itemcget(self.id, attr)
           
    def fieldcget(self, field, attr):
        return self.zinc.itemfieldcget(self.id, field, attr)

class Arc(ZincItem):
    def __init__(self, zinc, *args, **kw):
        apply(ZincItem.__init__, (self, zinc, 'arc') + args, kw)    

class Group(ZincItem):
    def __init__(self, zinc, *args, **kw):
        apply(ZincItem.__init__, (self, zinc, 'group') + args, kw)    

class Icon(ZincItem):
    def __init__(self, zinc, *args, **kw):
        apply(ZincItem.__init__, (self, zinc, 'icon') + args, kw)    

class Map(ZincItem):
    def __init__(self, zinc, *args, **kw):
        apply(ZincItem.__init__, (self, zinc, 'map') + args, kw)
    
class Curve(ZincItem):
    def __init__(self, zinc, *args, **kw):
        apply(ZincItem.__init__, (self, zinc, 'curve') + args, kw)    

class Rectangle(ZincItem):
    def __init__(self, zinc, *args, **kw):
        apply(ZincItem.__init__, (self, zinc, 'rectangle') + args, kw)    

class Reticle(ZincItem):
    def __init__(self, zinc, *args, **kw):
        apply(ZincItem.__init__, (self, zinc, 'reticle') + args, kw)    

class Tabular(ZincItem):
    def __init__(self, zinc, *args, **kw):
        apply(ZincItem.__init__, (self, zinc, 'tabular') + args, kw)    

class Text(ZincItem):
    def __init__(self, zinc, *args, **kw):
        apply(ZincItem.__init__, (self, zinc, 'text') + args, kw)    

class Track(ZincItem):
    def __init__(self, zinc, *args, **kw):
        apply(ZincItem.__init__, (self, zinc, 'track') + args, kw)
    
class WayPoint(ZincItem):
    def __init__(self, zinc, *args, **kw):
        apply(ZincItem.__init__, (self, zinc, 'waypoint') + args, kw)
    

# Class to hold mapinfos used by the Map Item class 
class Mapinfo:
    def __init__(self, interp, *args):
        self.interp=interp.tk
        apply(self.interp.call, ('mapinfo', self, 'create'))
        
    def __repr__(self):
        return `id(self)`

    def add_text(self, text_style, line_style, x, y, text):
        self.interp.call('mapinfo', self, 'add', 'text', text_style, line_style, x, y, text)

    def add_line(self, line_style, width, x1, y1, x2, y2):
        self.interp.call('mapinfo', self, 'add', 'line', line_style, width, x1, y1, x2, y2)

    def add_arc(self, line_style, width, cx, cy, radius, start, extent):
        self.interp.call('mapinfo', self, 'add', 'arc', line_style, width, cx, cy, radius, start, extent)

    def scale(self, factor):
        self.interp.call('mapinfo', self, 'scale', factor)
        
    def translate(self, xAmount, yAmount):
        self.interp.call('mapinfo', self, 'translate', xAmount, yAmount)
        
class Videomap (Mapinfo):
    def __init__(self, tk, *args):
        self.tk=tk.tk
        print args
        apply(self.tk.call, ('videomap', 'load') + args + (self,))

# Zinc.py ends here