1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/************************************************************************
*
* Copyright (C) 2017-2023 IRCAD France
* Copyright (C) 2017 IHU Strasbourg
*
* This file is part of Sight.
*
* Sight is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Sight 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Sight. If not, see <https://www.gnu.org/licenses/>.
*
***********************************************************************/
#include "command_history.hpp"
#include <core/com/signal.hpp>
#include <core/com/signal.hxx>
#include <core/com/signals.hpp>
#include <core/com/slot.hpp>
#include <core/com/slot.hxx>
#include <core/com/slots.hpp>
#include <core/com/slots.hxx>
#include <numeric>
namespace sight::module::ui::history
{
static const core::com::signals::key_t CANUNDO_SIGNAL = "canUndo";
static const core::com::signals::key_t CANREDO_SIGNAL = "canRedo";
static const core::com::slots::key_t ENQUEUE_SLOT = "enqueue";
static const core::com::slots::key_t UNDO_SLOT = "undo";
static const core::com::slots::key_t REDO_SLOT = "redo";
static const core::com::slots::key_t CLEAR_SLOT = "clear";
//-----------------------------------------------------------------------------
command_history::command_history()
{
new_slot(ENQUEUE_SLOT, &command_history::enqueue, this);
new_slot(UNDO_SLOT, &command_history::undo, this);
new_slot(REDO_SLOT, &command_history::redo, this);
new_slot(CLEAR_SLOT, &command_history::clear, this);
m_can_undo_sig = new_signal<can_do_signal_t>(CANUNDO_SIGNAL);
m_can_redo_sig = new_signal<can_do_signal_t>(CANREDO_SIGNAL);
}
//-----------------------------------------------------------------------------
command_history::~command_history()
= default;
//-----------------------------------------------------------------------------
void command_history::configuring()
{
service::config_t config = this->get_config();
auto max_commands = config.get_optional<std::size_t>("maxCommands");
auto max_memory = config.get_optional<std::size_t>("maxMemory");
if(max_commands.is_initialized())
{
m_undo_redo_manager.set_command_count(max_commands.value());
}
if(max_memory.is_initialized())
{
m_undo_redo_manager.set_history_size(max_memory.value());
}
}
//-----------------------------------------------------------------------------
void command_history::starting()
{
this->emit_modified_sig();
}
//-----------------------------------------------------------------------------
void command_history::updating()
{
this->emit_modified_sig();
}
//-----------------------------------------------------------------------------
void command_history::stopping()
{
m_undo_redo_manager.clear();
}
//-----------------------------------------------------------------------------
void command_history::enqueue(sight::ui::history::command::sptr _command)
{
m_undo_redo_manager.enqueue(_command);
this->emit_modified_sig();
}
//-----------------------------------------------------------------------------
void command_history::undo()
{
m_undo_redo_manager.undo();
this->emit_modified_sig();
}
//-----------------------------------------------------------------------------
void command_history::redo()
{
m_undo_redo_manager.redo();
this->emit_modified_sig();
}
//-----------------------------------------------------------------------------
void command_history::clear()
{
m_undo_redo_manager.clear();
this->emit_modified_sig();
}
//-----------------------------------------------------------------------------
void command_history::emit_modified_sig() const
{
m_can_undo_sig->async_emit(m_undo_redo_manager.can_undo());
m_can_redo_sig->async_emit(m_undo_redo_manager.can_redo());
}
//-----------------------------------------------------------------------------
} // namespace sight::module::ui::history
|