Method: HMainView#initialize
- Defined in:
- lib/hwidgets/hmainview.rb
#initialize(**args) ⇒ HMainView
Returns a new instance of HMainView.
5 6 7 8 9 10 11 |
# File 'lib/hwidgets/hmainview.rb', line 5 def initialize(**args) @view = nil @oid = hm().malloc(self).obj.object_id.to_s super(class: 'hmainview', id: @oid, **args) self.hotLog("HMainView: new hmainview oid: #{@oid}".white) return self end |