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.



2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
# File 'lib/a-tkcommons.rb', line 2140

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