Class: Glimmer::Tk::WidgetProxy
- Inherits:
-
Object
- Object
- Glimmer::Tk::WidgetProxy
- Defined in:
- lib/glimmer/tk/widget_proxy.rb
Overview
Proxy for Tk Widget objects
Follows the Proxy Design Pattern
Direct Known Subclasses
ButtonProxy, CheckbuttonProxy, ComboboxProxy, EntryProxy, FrameProxy, LabelProxy, ListProxy, NotebookProxy, RadiobuttonProxy, RootProxy, TreeviewProxy
Instance Attribute Summary collapse
-
#args ⇒ Object
readonly
Returns the value of attribute args.
-
#children ⇒ Object
readonly
Returns the value of attribute children.
-
#keyword ⇒ Object
readonly
Returns the value of attribute keyword.
-
#parent_proxy ⇒ Object
readonly
Returns the value of attribute parent_proxy.
-
#tk ⇒ Object
readonly
Returns the value of attribute tk.
Class Method Summary collapse
- .create(keyword, parent, args, &block) ⇒ Object
-
.tk_widget_class_for(underscored_widget_name) ⇒ Object
This supports widgets in and out of basic Tk.
- .widget_exists?(underscored_widget_name) ⇒ Boolean
- .widget_proxy_class(keyword) ⇒ Object
Instance Method Summary collapse
- #add_observer(observer, attribute) ⇒ Object
- #attribute_setter(attribute) ⇒ Object
- #content(&block) ⇒ Object
- #get_attribute(attribute) ⇒ Object
- #grid(options = {}) ⇒ Object
- #handle_listener(listener_name, &listener) ⇒ Object
- #has_attribute?(attribute, *args) ⇒ Boolean
- #has_attributes_attribute?(attribute) ⇒ Boolean
- #has_state?(attribute) ⇒ Boolean
- #image_argument(args) ⇒ Object
-
#initialize(underscored_widget_name, parent_proxy, args, &block) ⇒ WidgetProxy
constructor
Initializes a new Tk Widget.
- #method_missing(method, *args, &block) ⇒ Object
-
#post_add_content ⇒ Object
Subclasses may override to perform post add_content work.
-
#post_initialize_child(child) ⇒ Object
Subclasses may override to perform post initialization work on an added child.
- #respond_to?(method, *args, super_only: false, &block) ⇒ Boolean
- #set_attribute(attribute, *args) ⇒ Object
- #tk_widget_has_attribute_getter_setter?(attribute) ⇒ Boolean
- #tk_widget_has_attribute_setter?(attribute) ⇒ Boolean
- #widget_attribute_listener_installers ⇒ Object
- #widget_custom_attribute_mapping ⇒ Object
Constructor Details
#initialize(underscored_widget_name, parent_proxy, args, &block) ⇒ WidgetProxy
Initializes a new Tk Widget
Styles is a comma separate list of symbols representing Tk styles in lower case
69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 69 def initialize(, parent_proxy, args, &block) @parent_proxy = parent_proxy @args = args @keyword = @block = block = self.class.() @tk = .new(@parent_proxy.tk, *args) # a common widget initializer initialize_defaults @parent_proxy.post_initialize_child(self) post_add_content if @block.nil? end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args, &block) ⇒ Object
365 366 367 368 369 370 371 372 373 374 375 376 377 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 365 def method_missing(method, *args, &block) method = method.to_s if args.empty? && block.nil? && (([tk.class] && [tk.class][method]) || has_state?(method) || has_attributes_attribute?(method)) get_attribute(method) elsif method.end_with?('=') && block.nil? && (([tk.class] && [tk.class][method.sub(/=$/, '')]) || has_state?(method) || has_attributes_attribute?(method)) set_attribute(method.sub(/=$/, ''), *args) else tk.send(method, *args, &block) end rescue => e Glimmer::Config.logger.debug {"Neither WidgetProxy nor #{tk.class.name} can handle the method ##{method}"} super(method.to_sym, *args, &block) end |
Instance Attribute Details
#args ⇒ Object (readonly)
Returns the value of attribute args.
64 65 66 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 64 def args @args end |
#children ⇒ Object (readonly)
Returns the value of attribute children.
64 65 66 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 64 def children @children end |
#keyword ⇒ Object (readonly)
Returns the value of attribute keyword.
64 65 66 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 64 def keyword @keyword end |
#parent_proxy ⇒ Object (readonly)
Returns the value of attribute parent_proxy.
64 65 66 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 64 def parent_proxy @parent_proxy end |
#tk ⇒ Object (readonly)
Returns the value of attribute tk.
64 65 66 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 64 def tk @tk end |
Class Method Details
.create(keyword, parent, args, &block) ⇒ Object
29 30 31 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 29 def create(keyword, parent, args, &block) (keyword).new(keyword, parent, args, &block) end |
.tk_widget_class_for(underscored_widget_name) ⇒ Object
This supports widgets in and out of basic Tk
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 43 def () = .camelcase(:upper) = [ "::Tk::Tile::#{}", "::Tk::#{}", "::Tk#{}", "::Glimmer::Tk::#{}Proxy", ] = nil .each do || begin = eval() break rescue RuntimeError, SyntaxError, NameError => e Glimmer::Config.logger.debug e. end end end |
.widget_exists?(underscored_widget_name) ⇒ Boolean
96 97 98 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 96 def self.() !!() end |
.widget_proxy_class(keyword) ⇒ Object
33 34 35 36 37 38 39 40 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 33 def (keyword) begin class_name = "#{keyword.camelcase(:upper)}Proxy".to_sym Glimmer::Tk.const_get(class_name) rescue Glimmer::Tk::WidgetProxy end end |
Instance Method Details
#add_observer(observer, attribute) ⇒ Object
343 344 345 346 347 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 343 def add_observer(observer, attribute) attribute_listener_installers = @tk.class.ancestors.map {|ancestor| [ancestor]}.compact = attribute_listener_installers.map{|installer| installer[attribute.to_s]}.compact if !attribute_listener_installers.empty? .to_a.first&.call(observer) end |
#attribute_setter(attribute) ⇒ Object
200 201 202 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 200 def attribute_setter(attribute) "#{attribute}=" end |
#content(&block) ⇒ Object
361 362 363 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 361 def content(&block) Glimmer::DSL::Engine.add_content(self, Glimmer::DSL::Tk::WidgetExpression.new, keyword, *args, &block) end |
#get_attribute(attribute) ⇒ Object
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 183 def get_attribute(attribute) = [tk.class] && [tk.class][attribute.to_s] if [:getter][:invoker].call(@tk, args) elsif (attribute) @tk.send(attribute) elsif has_state?(attribute) @tk.tile_instate(attribute.sub(/\?$/, '')) elsif has_attributes_attribute?(attribute) result = @tk.attributes[attribute.sub(/\?$/, '')] result = result == 1 if result.is_a?(Integer) result else send(attribute) end end |
#grid(options = {}) ⇒ Object
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 204 def grid( = {}) = .stringify_keys index_in_parent = @parent_proxy.children.index(self) ['rowweight'] = .delete('row_weight') if .keys.include?('row_weight') ['columnweight'] = .delete('column_weight') if .keys.include?('column_weight') ['columnweight'] = ['rowweight'] = .delete('weight') if .keys.include?('weight') ['rowminsize'] = .delete('row_minsize') if .keys.include?('row_minsize') ['rowminsize'] = .delete('minheight') if .keys.include?('minheight') ['rowminsize'] = .delete('min_height') if .keys.include?('min_height') ['columnminsize'] = .delete('column_minsize') if .keys.include?('column_minsize') ['columnminsize'] = .delete('minwidth') if .keys.include?('minwidth') ['columnminsize'] = .delete('min_width') if .keys.include?('min_width') ['columnminsize'] = ['rowminsize'] = .delete('minsize') if .keys.include?('minsize') TkGrid.rowconfigure(@parent_proxy.tk, index_in_parent, 'weight'=> .delete('rowweight')) if .keys.include?('rowweight') TkGrid.rowconfigure(@parent_proxy.tk, index_in_parent, 'minsize'=> .delete('rowminsize')) if .keys.include?('rowminsize') TkGrid.columnconfigure(@parent_proxy.tk, index_in_parent, 'weight'=> .delete('columnweight')) if .keys.include?('columnweight') TkGrid.columnconfigure(@parent_proxy.tk, index_in_parent, 'minsize'=> .delete('columnminsize')) if .keys.include?('columnminsize') @tk.grid() end |
#handle_listener(listener_name, &listener) ⇒ Object
349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 349 def handle_listener(listener_name, &listener) listener_name = listener_name.to_s begin @tk.bind(listener_name, &listener) rescue => e Glimmer::Config.logger.debug {e.} listener_name = "<#{listener_name}" if !listener_name.start_with?('<') listener_name = "#{listener_name}>" if !listener_name.end_with?('>') @tk.bind(listener_name, &listener) end end |
#has_attribute?(attribute, *args) ⇒ Boolean
141 142 143 144 145 146 147 148 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 141 def has_attribute?(attribute, *args) ([tk.class] and [tk.class][attribute.to_s]) or (attribute) or (attribute) or has_state?(attribute) or has_attributes_attribute?(attribute) or respond_to?(attribute_setter(attribute), args) end |
#has_attributes_attribute?(attribute) ⇒ Boolean
136 137 138 139 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 136 def has_attributes_attribute?(attribute) attribute = attribute.sub(/\?$/, '').sub(/=$/, '') @tk.respond_to?(:attributes) && @tk.attributes.keys.include?(attribute.to_s) end |
#has_state?(attribute) ⇒ Boolean
122 123 124 125 126 127 128 129 130 131 132 133 134 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 122 def has_state?(attribute) attribute = attribute.sub(/\?$/, '').sub(/=$/, '') if @tk.respond_to?(:tile_state) begin @tk.tile_instate(attribute) true rescue false end else false end end |
#image_argument(args) ⇒ Object
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 327 def image_argument(args) if args.first.is_a?(::TkPhotoImage) args.first else image_args = {} image_args.merge!(file: args.first.to_s) if args.first.is_a?(String) the_image = ::TkPhotoImage.new(image_args) if args.last.is_a?(Hash) processed_image = ::TkPhotoImage.new processed_image.copy(the_image, args.last) the_image = processed_image end the_image end end |
#post_add_content ⇒ Object
Subclasses may override to perform post add_content work
92 93 94 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 92 def post_add_content # No Op by default end |
#post_initialize_child(child) ⇒ Object
Subclasses may override to perform post initialization work on an added child
87 88 89 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 87 def post_initialize_child(child) children << child end |
#respond_to?(method, *args, super_only: false, &block) ⇒ Boolean
379 380 381 382 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 379 def respond_to?(method, *args, super_only: false, &block) super(method, true) || !super_only && tk.respond_to?(method, *args, &block) end |
#set_attribute(attribute, *args) ⇒ Object
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 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 150 def set_attribute(attribute, *args) = [tk.class] && [tk.class][attribute.to_s] if respond_to?(attribute, super_only: true) send(attribute, *args) elsif respond_to?(attribute_setter(attribute), super_only: true) send(attribute_setter(attribute), *args) elsif [:setter][:invoker].call(@tk, args) elsif (attribute) unless args.size == 1 && @tk.send(attribute) == args.first if args.size == 1 @tk.send(attribute_setter(attribute), *args) else @tk.send(attribute_setter(attribute), args) end end elsif (attribute) @tk.send(attribute, *args) elsif has_state?(attribute) attribute = attribute.sub(/=$/, '') if !!args.first @tk.tile_state(attribute) else @tk.tile_state("!#{attribute}") end elsif has_attributes_attribute?(attribute) attribute = attribute.sub(/=$/, '') @tk.attributes(attribute, args.first) else send(attribute_setter(attribute), args) end end |
#tk_widget_has_attribute_getter_setter?(attribute) ⇒ Boolean
112 113 114 115 116 117 118 119 120 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 112 def (attribute) begin # TK Widget currently doesn't support respond_to? properly, so I have to resort to this trick for now @tk.send(attribute) true rescue false end end |
#tk_widget_has_attribute_setter?(attribute) ⇒ Boolean
100 101 102 103 104 105 106 107 108 109 110 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 100 def (attribute) result = nil begin # TK Widget currently doesn't support respond_to? properly, so I have to resort to this trick for now @tk.send(attribute_setter(attribute), @tk.send(attribute)) result = true rescue => e result = false end result end |
#widget_attribute_listener_installers ⇒ Object
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 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 288 def # TODO consider extracting to modules/subclasses @tk_widget_attribute_listener_installers ||= { ::Tk::Tile::TCheckbutton => { 'variable' => lambda do |observer| @tk.command { observer.call(@tk.variable.value.to_s == @tk.onvalue.to_s) } end, }, ::Tk::Tile::TCombobox => { 'text' => lambda do |observer| if observer.is_a?(Glimmer::DataBinding::ModelBinding) model = observer.model = observer.property_name + '_options' @tk.values = model.send() if model.respond_to?() end @tk.bind('<ComboboxSelected>') { observer.call(@tk.textvariable.value) } end, }, ::Tk::Tile::TEntry => { 'text' => lambda do |observer| tk.textvariable.trace('write') { observer.call(@tk.textvariable.value) } end, }, ::Tk::Tile::TRadiobutton => { 'variable' => lambda do |observer| @tk.command { observer.call(@tk.variable.value == @tk.value) } end, }, } end |
#widget_custom_attribute_mapping ⇒ Object
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 |
# File 'lib/glimmer/tk/widget_proxy.rb', line 224 def # TODO consider extracting to modules/subclasses @widget_custom_attribute_mapping ||= { ::Tk::Tile::TButton => { 'image' => { getter: {name: 'image', invoker: lambda { |, args| @tk.image }}, setter: {name: 'image=', invoker: lambda { |, args| @tk.image = image_argument(args) }}, }, }, ::Tk::Tile::TCheckbutton => { 'image' => { getter: {name: 'image', invoker: lambda { |, args| @tk.image }}, setter: {name: 'image=', invoker: lambda { |, args| @tk.image = image_argument(args) }}, }, 'variable' => { getter: {name: 'variable', invoker: lambda { |, args| @tk.variable&.value.to_s == @tk.onvalue.to_s }}, setter: {name: 'variable=', invoker: lambda { |, args| @tk.variable&.value = args.first.is_a?(Integer) ? args.first : (args.first ? 1 : 0) }}, }, }, ::Tk::Tile::TRadiobutton => { 'image' => { getter: {name: 'image', invoker: lambda { |, args| @tk.image }}, setter: {name: 'image=', invoker: lambda { |, args| @tk.image = image_argument(args) }}, }, 'text' => { getter: {name: 'text', invoker: lambda { |, args| @tk.text }}, setter: {name: 'text=', invoker: lambda { |, args| @tk.value = @tk.text = args.first }}, }, 'variable' => { getter: {name: 'variable', invoker: lambda { |, args| @tk.variable&.value == @tk.value }}, setter: {name: 'variable=', invoker: lambda { |, args| @tk.variable&.value = args.first ? @tk.value : @tk.variable&.value }}, }, }, ::Tk::Tile::TCombobox => { 'text' => { getter: {name: 'text', invoker: lambda { |, args| @tk.textvariable&.value }}, setter: {name: 'text=', invoker: lambda { |, args| @tk.textvariable&.value = args.first }}, }, }, ::Tk::Tile::TLabel => { 'text' => { getter: {name: 'text', invoker: lambda { |, args| @tk.textvariable&.value }}, setter: {name: 'text=', invoker: lambda { |, args| @tk.textvariable&.value = args.first }}, }, 'image' => { getter: {name: 'image', invoker: lambda { |, args| @tk.image }}, setter: {name: 'image=', invoker: lambda { |, args| @tk.image = image_argument(args) }}, }, }, ::Tk::Tile::TEntry => { 'text' => { getter: {name: 'text', invoker: lambda { |, args| @tk.textvariable&.value }}, setter: {name: 'text=', invoker: lambda { |, args| @tk.textvariable&.value = args.first }}, }, }, ::Tk::Root => { 'text' => { getter: {name: 'text', invoker: lambda { |, args| @tk.title }}, setter: {name: 'text=', invoker: lambda { |, args| @tk.title = args.first }}, }, }, } end |