Class: KeyTestView

Inherits:
TkToplevel
  • Object
show all
Defined in:
ext/ae-editor/ae-editor.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeKeyTestView

Returns a new instance of KeyTestView.



2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
# File 'ext/ae-editor/ae-editor.rb', line 2168

def initialize
  super

  Tk.tk_call('wm', 'title', self, '...hello' )
  Tk.tk_call('wm', 'geometry', self, '638x117+200+257' )

  @ttest = TkText.new(self){
    background  '#FFF454'
    place('relwidth' => '1','relx' => 0,'x' => '0','y' => '0','relheight' => '1','rely' => 0,'height' => '0','bordermode' => 'inside','width' => '0')
  }

end

Instance Attribute Details

#ttestObject (readonly)

Returns the value of attribute ttest.



2167
2168
2169
# File 'ext/ae-editor/ae-editor.rb', line 2167

def ttest
  @ttest
end