Sha256: c81a5de15677f2be045fca9fd19a5f0e46208ea1cbfe2afa90d21d669af0ef81
Contents?: true
Size: 1.67 KB
Versions: 2
Compression:
Stored size: 1.67 KB
Contents
# Copyright (C) 2004-2006 Laurent Sansonetti # # Alexandria is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # Alexandria is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public # License along with Alexandria; see the file COPYING. If not, # write to the Free Software Foundation, Inc., 51 Franklin Street, # Fifth Floor, Boston, MA 02110-1301 USA. module Alexandria class UndoManager include Singleton include Observable attr_reader :actions def initialize @undo_actions = [] @redo_actions = [] @within_undo = @withing_redo = false end def push(&block) (@within_undo ? @redo_actions : @undo_actions) << block notify end def can_undo? !@undo_actions.empty? end def can_redo? !@redo_actions.empty? end def undo! @within_undo = true begin action(@undo_actions) ensure @within_undo = false end end def redo! @within_redo = true begin action(@redo_actions) ensure @within_redo = false end end private def action(array) action = array.pop raise if action.nil? action.call notify end def notify changed notify_observers(self) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
alexandria-book-collection-manager-0.7.1 | lib/alexandria/undo_manager.rb |
alexandria-book-collection-manager-0.7.0 | lib/alexandria/undo_manager.rb |