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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
|
#
# tkextlib/blt/table.rb
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
#
require 'tk'
require 'tk/itemconfig.rb'
require 'tkextlib/blt.rb'
module Tk::BLT
module Table
include Tk
extend Tk
extend TkItemConfigMethod
TkCommandNames = ['::blt::table'.freeze].freeze
module TableContainer
def blt_table_add(*args)
Tk::BLT::Table.add(self, *args)
self
end
def blt_table_arrange()
Tk::BLT::Table.arrange(self)
self
end
def blt_table_cget_tkstring(*args)
Tk::BLT::Table.cget_tkstring(self, *args)
end
def blt_table_cget(*args)
Tk::BLT::Table.cget(self, *args)
end
def blt_table_cget_strict(*args)
Tk::BLT::Table.cget_strict(self, *args)
end
def blt_table_configure(*args)
Tk::BLT::Table.configure(self, *args)
self
end
def blt_table_configinfo(*args)
Tk::BLT::Table.configinfo(self, *args)
end
def blt_table_current_configinfo(*args)
Tk::BLT::Table.current_configinfo(self, *args)
end
def blt_table_locate(x, y)
Tk::BLT::Table.locate(self, x, y)
end
def blt_table_delete(*args)
Tk::BLT::Table.delete(self, *args)
self
end
def blt_table_extents(item)
Tk::BLT::Table.extents(self, item)
end
def blt_table_insert(*args)
Tk::BLT::Table.insert(self, *args)
self
end
def blt_table_insert_before(*args)
Tk::BLT::Table.insert_before(self, *args)
self
end
def blt_table_insert_after(*args)
Tk::BLT::Table.insert_after(self, *args)
self
end
def blt_table_join(first, last)
Tk::BLT::Table.join(self, first, last)
self
end
def blt_table_save()
Tk::BLT::Table.save(self)
end
def blt_table_search(*args)
Tk::BLT::Table.search(self, *args)
end
def blt_table_split(*args)
Tk::BLT::Table.split(self, *args)
self
end
def blt_table_itemcget_tkstring(*args)
Tk::BLT::Table.itemcget_tkstring(self, *args)
end
def blt_table_itemcget(*args)
Tk::BLT::Table.itemcget(self, *args)
end
def blt_table_itemcget_strict(*args)
Tk::BLT::Table.itemcget_strict(self, *args)
end
def blt_table_itemconfigure(*args)
Tk::BLT::Table.itemconfigure(self, *args)
self
end
def blt_table_itemconfiginfo(*args)
Tk::BLT::Table.itemconfiginfo(self, *args)
end
def blt_table_current_itemconfiginfo(*args)
Tk::BLT::Table.current_itemconfiginfo(self, *args)
end
def blt_table_iteminfo(item)
Tk::BLT::Table.iteminfo(self, item)
end
end
end
end
############################################
class << Tk::BLT::Table
def __item_cget_cmd(id) # id := [ container, item ]
win = (id[0].kind_of?(TkWindow))? id[0].path: id[0].to_s
['::blt::table', 'cget', win, id[1]]
end
private :__item_cget_cmd
def __item_config_cmd(id) # id := [ container, item, ... ]
container, *items = id
win = (container.kind_of?(TkWindow))? container.path: container.to_s
['::blt::table', 'configure', win, *items]
end
private :__item_config_cmd
def __item_pathname(id)
win = (id[0].kind_of?(TkWindow))? id[0].path: id[0].to_s
win + ';'
end
private :__item_pathname
alias __itemcget_tkstring itemcget_tkstring
alias __itemcget itemcget
alias __itemcget_strict itemcget_strict
alias __itemconfigure itemconfigure
alias __itemconfiginfo itemconfiginfo
alias __current_itemconfiginfo current_itemconfiginfo
private :__itemcget_tkstring, :__itemcget, :__itemcget_strict
private :__itemconfigure, :__itemconfiginfo, :__current_itemconfiginfo
def __boolval_optkeys
super() << 'propagate'
end
private :__boolval_optkeys
def tagid(tag)
if tag.kind_of?(Array)
case tag[0]
when Integer
# [row, col]
tag.join(',')
when :c, :C, 'c', 'C', :r, :R, 'r', 'R'
# c0 or r1 or C*, and so on
tag.collect{|elem| elem.to_s}.join('')
else
tag
end
elsif tag.kind_of?(TkWindow)
_epath(tag)
else
tag
end
end
def tagid2obj(tagid)
tagid
end
############################################
def cget_tkstring(container, option)
__itemcget_tkstring([container], option)
end
def cget(container, option)
__itemcget([container], option)
end
def cget_strict(container, option)
__itemcget_strict([container], option)
end
def configure(container, *args)
__itemconfigure([container], *args)
end
def configinfo(container, *args)
__itemconfiginfo([container], *args)
end
def current_configinfo(container, *args)
__current_itemconfiginfo([container], *args)
end
def itemcget_tkstring(container, item, option)
__itemcget_tkstring([container, tagid(item)], option)
end
def itemcget(container, item, option)
__itemcget([container, tagid(item)], option)
end
def itemcget_strict(container, item, option)
__itemcget_strict([container, tagid(item)], option)
end
def itemconfigure(container, *args)
if args[-1].kind_of?(Hash)
# container, item, item, ... , hash_optkeys
keys = args.pop
fail ArgumentError, 'no item is given' if args.empty?
id = [container]
args.each{|item| id << tagid(item)}
__itemconfigure(id, keys)
else
# container, item, item, ... , option, value
val = args.pop
opt = args.pop
fail ArgumentError, 'no item is given' if args.empty?
id = [container]
args.each{|item| id << tagid(item)}
__itemconfigure(id, opt, val)
end
container
end
def itemconfiginfo(container, *args)
slot = args[-1]
if slot.kind_of?(String) || slot.kind_of?(Symbol)
slot = slot.to_s
if slot[0] == ?. || slot =~ /^\d+,\d+$/ || slot =~ /^(c|C|r|R)(\*|\d+)/
# widget || row,col || Ci or Ri
slot = nil
else
# option
slot = args.pop
end
else
slot = nil
end
fail ArgumentError, 'no item is given' if args.empty?
id = [container]
args.each{|item| id << tagid(item)}
__itemconfiginfo(id, slot)
end
def current_itemconfiginfo(container, *args)
slot = args[-1]
if slot.kind_of?(String) || slot.kind_of?(Symbol)
slot = slot.to_s
if slot[0] == ?. || slot =~ /^\d+,\d+$/ || slot =~ /^(c|C|r|R)(\*|\d+)/
# widget || row,col || Ci or Ri
slot = nil
else
# option
slot = args.pop
end
else
slot = nil
end
fail ArgumentError, 'no item is given' if args.empty?
id = [container]
args.each{|item| id << tagid(item)}
__current_itemconfiginfo(id, slot)
end
def info(container)
ret = {}
inf = list(tk_call('::blt::table', 'info', container))
until inf.empty?
opt = inf.slice!(0..1)
ret[opt[1..-1]] = opt[1]
end
ret
end
def iteminfo(container, item)
inf = list(tk_call('::blt::table', 'info', container, tagid(item)).chomp)
ret = []
until inf.empty? || (inf[0].kind_of?(String) && inf[0] =~ /^-/)
ret << inf.shift
end
if inf.length > 1
keys = {}
while inf.length > 1
opt = inf.slice!(0..1)
keys[opt[0][1..-1]] = opt[1]
end
ret << keys
end
ret
end
############################################
def create_container(container)
tk_call('::blt::table', container)
begin
class << container
include Tk::BLT::Table::TableContainer
end
rescue
warn('fail to include TableContainer methods (frozen object?)')
end
container
end
def add(container, *args)
if args.empty?
tk_call('::blt::table', container)
else
args = args.collect{|arg|
if arg.kind_of?(TkWindow)
_epath(arg)
elsif arg.kind_of?(Array) # index
arg.join(',')
else
arg
end
}
tk_call('::blt::table', container, *args)
end
container
end
def arrange(container)
tk_call('::blt::table', 'arrange', container)
container
end
def delete(container, *args)
tk_call('::blt::table', 'delete', container, *args)
end
def extents(container, item)
ret = []
inf = list(tk_call('::blt::table', 'extents', container, item))
ret << inf.slice!(0..4) until inf.empty?
ret
end
def forget(*wins)
wins = wins.collect{|win| _epath(win)}
tk_call('::blt::table', 'forget', *wins)
end
def insert(container, *args)
tk_call('::blt::table', 'insert', container, *args)
end
def insert_before(container, *args)
tk_call('::blt::table', 'insert', container, '-before', *args)
end
def insert_after(container, *args)
tk_call('::blt::table', 'insert', container, '-after', *args)
end
def join(container, first, last)
tk_call('::blt::table', 'join', container, first, last)
end
def locate(container, x, y)
tk_call('::blt::table', 'locate', container, x, y)
end
def containers(arg={})
list(tk_call('::blt::table', 'containers', *hash_kv(arg)))
end
def containers_pattern(pat)
list(tk_call('::blt::table', 'containers', '-pattern', pat))
end
def containers_slave(win)
list(tk_call('::blt::table', 'containers', '-slave', win))
end
def save(container)
tk_call('::blt::table', 'save', container)
end
def search(container, keys={})
list(tk_call('::blt::table', 'containers', *hash_kv(keys)))
end
def split(container, *args)
tk_call('::blt::table', 'split', container, *args)
end
end
|