Module: Tk::BLT::Treeview::ConfigMethod
Constant Summary
Constants included
from TkUtil
TkUtil::None, TkUtil::RELEASE_DATE
Instance Method Summary
collapse
#current_itemconfiginfo, #itemcget, #itemconfiginfo, #itemconfigure, #tagid
#__conv_item_keyonly_opts, #itemconfig_hash_kv
Methods included from TkUtil
_conv_args, #_conv_args, #_fromUTF8, _get_eval_enc_str, #_get_eval_enc_str, #_get_eval_string, _get_eval_string, _symbolkey2str, #_symbolkey2str, #_toUTF8, bool, #bool, callback, eval_cmd, #hash_kv, hash_kv, install_cmd, num_or_str, #num_or_str, number, #number, string, #string, uninstall_cmd
#kanjifont_copy, #kanjitagfont_configure, #latintagfont_configure, #latintagfont_copy, #tagfont_configinfo, #tagfont_configure, #tagfont_copy
Instance Method Details
111
112
113
|
# File 'lib/tkextlib/blt/treeview.rb', line 111
def button_cget(option)
itemcget('button', option)
end
|
117
118
119
|
# File 'lib/tkextlib/blt/treeview.rb', line 117
def button_configinfo(slot=nil)
itemconfiginfo('button', slot)
end
|
114
115
116
|
# File 'lib/tkextlib/blt/treeview.rb', line 114
def button_configure(slot, value=None)
itemconfigure('button', slot, value)
end
|
#column_cget(name, option) ⇒ Object
98
99
100
|
# File 'lib/tkextlib/blt/treeview.rb', line 98
def column_cget(name, option)
itemcget(['column', name], option)
end
|
#column_configinfo(name, slot = nil) ⇒ Object
104
105
106
|
# File 'lib/tkextlib/blt/treeview.rb', line 104
def column_configinfo(name, slot=nil)
itemconfiginfo(['column', name], slot)
end
|
101
102
103
|
# File 'lib/tkextlib/blt/treeview.rb', line 101
def column_configure(name, slot, value=None)
itemconfigure(['column', name], slot, value)
end
|
120
121
122
|
# File 'lib/tkextlib/blt/treeview.rb', line 120
def current_button_configinfo(slot=nil)
current_itemconfiginfo('button', slot)
end
|
#current_column_configinfo(name, slot = nil) ⇒ Object
107
108
109
|
# File 'lib/tkextlib/blt/treeview.rb', line 107
def current_column_configinfo(name, slot=nil)
current_itemconfiginfo(['column', name], slot)
end
|
#current_entry_configinfo(slot = nil) ⇒ Object
160
161
162
163
164
165
166
167
168
|
# File 'lib/tkextlib/blt/treeview.rb', line 160
def current_entry_configinfo(slot=nil)
ret = current_itemconfiginfo('entry', slot)
if (val = ret['bindtags'])
ret['bindtags'] = val.collect{|tag| TkBindTag.id2obj(tag)}
end
ret
end
|
#current_sort_configinfo(slot = nil) ⇒ Object
179
180
181
|
# File 'lib/tkextlib/blt/treeview.rb', line 179
def current_sort_configinfo(slot=nil)
current_itemconfiginfo('sort', slot)
end
|
#current_text_configinfo(slot = nil) ⇒ Object
192
193
194
|
# File 'lib/tkextlib/blt/treeview.rb', line 192
def current_text_configinfo(slot=nil)
current_itemconfiginfo('text', slot)
end
|
#entry_cget(option) ⇒ Object
124
125
126
127
128
129
130
131
|
# File 'lib/tkextlib/blt/treeview.rb', line 124
def entry_cget(option)
ret = itemcget('entry', option)
if option == 'bindtags' || option == :bindtags
ret.collect{|tag| TkBindTag.id2obj(tag)}
else
ret
end
end
|
#entry_configinfo(slot = nil) ⇒ Object
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
|
# File 'lib/tkextlib/blt/treeview.rb', line 135
def entry_configinfo(slot=nil)
ret = itemconfiginfo('entry', slot)
if TkComm::GET_CONFIGINFO_AS_ARRAY
if slot
if slot == 'bindtags' || slot == :bindtags
ret[-2] = ret[-2].collect{|tag| TkBindTag.id2obj(tag)}
ret[-1] = ret[-1].collect{|tag| TkBindTag.id2obj(tag)}
end
else
inf = ret.assoc('bindtags')
inf[-2] = inf[-2].collect{|tag| TkBindTag.id2obj(tag)}
inf[-1] = inf[-1].collect{|tag| TkBindTag.id2obj(tag)}
end
else
if (inf = ret['bindtags'])
inf[-2] = inf[-2].collect{|tag| TkBindTag.id2obj(tag)}
inf[-1] = inf[-1].collect{|tag| TkBindTag.id2obj(tag)}
ret['bindtags'] = inf
end
end
ret
end
|
#entry_configure(slot, value = None) ⇒ Object
132
133
134
|
# File 'lib/tkextlib/blt/treeview.rb', line 132
def entry_configure(slot, value=None)
itemconfigure('entry', slot, value)
end
|
#sort_cget(option) ⇒ Object
170
171
172
|
# File 'lib/tkextlib/blt/treeview.rb', line 170
def sort_cget(option)
itemcget('sort', option)
end
|
#sort_configinfo(slot = nil) ⇒ Object
176
177
178
|
# File 'lib/tkextlib/blt/treeview.rb', line 176
def sort_configinfo(slot=nil)
itemconfiginfo('sort', slot)
end
|
173
174
175
|
# File 'lib/tkextlib/blt/treeview.rb', line 173
def sort_configure(slot, value=None)
itemconfigure('sort', slot, value)
end
|
#text_cget(option) ⇒ Object
183
184
185
|
# File 'lib/tkextlib/blt/treeview.rb', line 183
def text_cget(option)
itemcget('text', option)
end
|
#text_configinfo(slot = nil) ⇒ Object
189
190
191
|
# File 'lib/tkextlib/blt/treeview.rb', line 189
def text_configinfo(slot=nil)
itemconfiginfo('text', slot)
end
|
#text_configure(slot, value = None) ⇒ Object
186
187
188
|
# File 'lib/tkextlib/blt/treeview.rb', line 186
def text_configure(slot, value=None)
itemconfigure('text', slot, value)
end
|