Class: Textbringer::InsertAction
- Inherits:
-
UndoableAction
- Object
- UndoableAction
- Textbringer::InsertAction
- Defined in:
- lib/textbringer/buffer.rb
Instance Attribute Summary
Attributes inherited from UndoableAction
Instance Method Summary collapse
-
#initialize(buffer, location, string) ⇒ InsertAction
constructor
A new instance of InsertAction.
- #merge(s) ⇒ Object
- #redo ⇒ Object
- #undo ⇒ Object
Constructor Details
#initialize(buffer, location, string) ⇒ InsertAction
Returns a new instance of InsertAction.
1648 1649 1650 1651 |
# File 'lib/textbringer/buffer.rb', line 1648 def initialize(buffer, location, string) super(buffer, location) @string = string end |
Instance Method Details
#merge(s) ⇒ Object
1663 1664 1665 |
# File 'lib/textbringer/buffer.rb', line 1663 def merge(s) @string.concat(s) end |
#redo ⇒ Object
1658 1659 1660 1661 |
# File 'lib/textbringer/buffer.rb', line 1658 def redo @buffer.goto_char(@location) @buffer.insert(@string) end |
#undo ⇒ Object
1653 1654 1655 1656 |
# File 'lib/textbringer/buffer.rb', line 1653 def undo @buffer.goto_char(@location) @buffer.delete_region(@location, @location + @string.bytesize) end |