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.



1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
# File 'lib/a-tkcommons.rb', line 1530

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