Class: AgMultiEditorView
- Inherits:
-
Object
- Object
- AgMultiEditorView
- Defined in:
- ext/ae-editor/ae-editor.rb
Instance Attribute Summary collapse
-
#enb ⇒ Object
readonly
Returns the value of attribute enb.
Instance Method Summary collapse
-
#initialize(parent = nil) ⇒ AgMultiEditorView
constructor
A new instance of AgMultiEditorView.
Constructor Details
#initialize(parent = nil) ⇒ AgMultiEditorView
Returns a new instance of AgMultiEditorView.
2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 |
# File 'ext/ae-editor/ae-editor.rb', line 2812 def initialize(parent=nil) @enb = Tk::BWidget::NoteBook.new(parent,Arcadia.style('tabpanel')){ tabbevelsize 0 internalborderwidth 2 # arcradius 4 # activeforeground 'red' # activebackground 'yellow' #borderwidth 1 side Arcadia.conf('editor.tabs.side') font Arcadia.conf('editor.tabs.font') pack('fill'=>'both', :padx=>0, :pady=>0, :expand => 'yes') } end |
Instance Attribute Details
#enb ⇒ Object (readonly)
Returns the value of attribute enb.
2811 2812 2813 |
# File 'ext/ae-editor/ae-editor.rb', line 2811 def enb @enb end |