Class: Shul::App

Inherits:
Object
  • Object
show all
Defined in:
lib/shul.rb

Instance Method Summary collapse

Constructor Details

#initialize(shoes_app, doc, refresh: false, attributes: {}) ⇒ App

Returns a new instance of App.



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
# File 'lib/shul.rb', line 345

def initialize(shoes_app, doc, refresh: false, attributes: {})
                    
  # To find out the window dimensions we must first render the app
  shul = Window.new(shoes_app, doc)            

  if refresh then
    
    h = attributes
    
    shoes_app.start do |app|

      sleep 0.0001
      
      box = doc.root.element('hbox | vbox')          

      ht, wh = find_max_dimensions(box)
      
      h[:width],h[:height] = ht, wh
      
      win = window(h) {  Window.new self, doc }

      app.close # closes the initial shoes app        
      shul = nil

    end        
  end
  
  doc.callback = shul
  
end

Instance Method Details

#reloadObject



376
377
378
379
# File 'lib/shul.rb', line 376

def reload()
  #alert 'hello world'
  '@shoes.inspect'
end