Class: VER::View::Entry
- Inherits:
-
Entry
- Object
- Tk::Tile::Entry
- Entry
- VER::View::Entry
show all
- Defined in:
- lib/ver/view/entry.rb
Overview
This sucks, should we go method_missing?
Constant Summary
Constants inherited
from Entry
Entry::BACKWARD_WORD, Entry::FORWARD_WORD, Entry::STYLE_NAME_POOL, Entry::STYLE_NAME_REGISTER
Instance Attribute Summary collapse
Instance Method Summary
collapse
Methods inherited from Entry
#accept_line, #backward_char, #backward_delete_char, #backward_word, #beginning_of_history, #beginning_of_line, #delete, #delete_char, #delete_motion, #end_of_history, #end_of_line, #error, #forward_backward_delete_char, #forward_char, #forward_word, #insert, #insert_string, #message, #next_history, #noop, obtain_style_name, #previous_history, #quit, return_style_name, #style, #transpose_chars, #value=
Instance Attribute Details
#list_view ⇒ Object
Returns the value of attribute list_view.
5
6
7
|
# File 'lib/ver/view/entry.rb', line 5
def list_view
@list_view
end
|
Instance Method Details
#cancel ⇒ Object
15
16
17
|
# File 'lib/ver/view/entry.rb', line 15
def cancel
list_view.cancel
end
|
#completion ⇒ Object
27
28
29
|
# File 'lib/ver/view/entry.rb', line 27
def completion
list_view.completion
end
|
#line_down ⇒ Object
23
24
25
|
# File 'lib/ver/view/entry.rb', line 23
def line_down
list_view.line_down
end
|
#line_up ⇒ Object
19
20
21
|
# File 'lib/ver/view/entry.rb', line 19
def line_up
list_view.line_up
end
|
#pick_first ⇒ Object
7
8
9
|
# File 'lib/ver/view/entry.rb', line 7
def pick_first
list_view.pick_first
end
|
#pick_selection ⇒ Object
11
12
13
|
# File 'lib/ver/view/entry.rb', line 11
def pick_selection
list_view.pick_selection
end
|