Class: TkBuffersChoiseView

Inherits:
TkToplevel
  • Object
show all
Defined in:
lib/a-tkcommons.rb

Direct Known Subclasses

TkBuffersChoise

Instance Method Summary collapse

Constructor Details

#initializeTkBuffersChoiseView

Returns a new instance of TkBuffersChoiseView.



1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
# File 'lib/a-tkcommons.rb', line 1546

def initialize
  super
  Tk.tk_call('wm', 'title', self, '...hello' )
  Tk.tk_call('wm', 'geometry', self, '150x217+339+198' )
  @lb = TkListbox.new(self){
    background  '#fedbd7'
    relief  'groove'
    place('relwidth' => '1','relx' => 0,'x' => '0','y' => '0','relheight' => '1','rely' => 0,'height' => '0','bordermode' => 'inside','width' => '0')
  }
end