Class: KeyTestView
- Inherits:
-
TkToplevel
- Object
- TkToplevel
- KeyTestView
- Defined in:
- ext/ae-editor/ae-editor.rb
Instance Attribute Summary collapse
-
#ttest ⇒ Object
readonly
Returns the value of attribute ttest.
Instance Method Summary collapse
-
#initialize ⇒ KeyTestView
constructor
A new instance of KeyTestView.
Constructor Details
#initialize ⇒ KeyTestView
Returns a new instance of KeyTestView.
2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 |
# File 'ext/ae-editor/ae-editor.rb', line 2433 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
#ttest ⇒ Object (readonly)
Returns the value of attribute ttest.
2432 2433 2434 |
# File 'ext/ae-editor/ae-editor.rb', line 2432 def ttest @ttest end |