File size: 8,860 Bytes
a5ffdcd | 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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 | /****************************************************************************
**
** This file is part of the LibreCAD project, a 2D CAD program
**
** Copyright (C) 2015 A. Stebich (librecad@mail.lordofbikes.de)
** Copyright (C) 2010 R. van Twisk (librecad@rvt.dds.nl)
** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.
**
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file gpl-2.0.txt included in the
** packaging of this file.
**
** This program 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 this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**
** This copyright notice MUST APPEAR in all copies of the script!
**
**********************************************************************/
#include<cmath>
#include <QDockWidget>
#include "qg_actionhandler.h"
#include "lc_actionhandlerfactory.h"
#include "lc_actionucscreate.h"
#include "lc_defaultactioncontext.h"
#include "lc_graphicviewport.h"
#include "lc_snapmanager.h"
#include "qc_applicationwindow.h"
#include "rs_actionlayerstogglelock.h"
#include "rs_actionlibraryinsert.h"
#include "rs_commandevent.h"
#include "rs_commands.h"
#include "rs_debug.h"
#include "rs_dialogfactory.h"
#include "rs_dialogfactoryinterface.h"
#include "rs_graphicview.h"
#include "rs_settings.h"
/**
* Constructor
*/
QG_ActionHandler::QG_ActionHandler(QC_ApplicationWindow *parent)
:QObject(parent) {
}
void QG_ActionHandler::killAllActions() const {
if (view != nullptr) {
view->killAllActions();
}
}
/**
* @return Current action or nullptr.
*/
RS_ActionInterface *QG_ActionHandler::getCurrentAction() const {
if (view != nullptr) {
return view->getCurrentAction();
} else {
return nullptr;
}
}
/**
* Sets current action.
*
* @return Pointer to the created action or nullptr.
*/
std::shared_ptr<RS_ActionInterface> QG_ActionHandler::setCurrentAction(RS2::ActionType id, void* data) const {
RS_DEBUG->print("QG_ActionHandler::setCurrentAction()");
RS_DEBUG->print("QC_ActionHandler::setCurrentAction: view = %p, document = %p", view, document);
// only global options are allowed without a document:
if (view==nullptr || document==nullptr) {
RS_DEBUG->print(RS_Debug::D_WARNING,"QG_ActionHandler::setCurrentAction: graphic view or document is nullptr");
return nullptr;
}
std::shared_ptr<RS_ActionInterface> a = createActionInstance(id, data);
if (a != nullptr) {
view->setCurrentAction(a);
}
RS_DEBUG->print("QG_ActionHandler::setCurrentAction(): OK");
return a;
}
void QG_ActionHandler::setSnapManager(LC_SnapManager* snapManager) {
m_snapManager = snapManager;
}
std::shared_ptr<RS_ActionInterface> QG_ActionHandler::createActionInstance(RS2::ActionType id, void* data) const {
return LC_ActionsHandlerFactory::createActionInstance(id, m_actionContext, data);
}
/**
* @return Available commands of the application or the current action.
*/
QStringList QG_ActionHandler::getAvailableCommands() const {
RS_ActionInterface* currentAction = getCurrentAction();
if (currentAction != nullptr) {
return currentAction->getAvailableCommands();
} else {
QStringList cmd;
cmd += "line";
cmd += "rectangle";
return cmd;
}
}
/**
* Launches the command represented by the given keycode if possible.
*
* @return true: the command was recognized.
* false: the command is not known and was probably intended for a
* running action.
*/
bool QG_ActionHandler::keycode(const QString& code) {
RS_DEBUG->print("QG_ActionHandler::keycode()");
// keycode for new action:
RS2::ActionType type = RS_COMMANDS->keycodeToAction(code);
if (type != RS2::ActionNone) {
bool result = m_snapManager->tryToProcessSnapActions(type);
if (!result) {
setCurrentAction(type);
return true;
}
}
return false;
}
/**
* Launches the given command if possible.
*
* @return true: the command was recognized.
* false: the command is not known and was probably intended for a
* running action.
*/
bool QG_ActionHandler::command(const QString& cmd){
if (view == nullptr) {
return false;
}
if (cmd.isEmpty()){
if (LC_GET_BOOL("Keyboard/ToggleFreeSnapOnSpace")) {
RS_DEBUG->print("QG_ActionHandler::command: toggle Snap Free: begin");
bool isSnappingFree = m_snapManager->toggleTemporarySnapFree();
/*RS_DIALOGFACTORY->commandMessage(isSnappingFree?
tr("Spacebar: restored snapping mode to normal")
: tr("Spacebar: temporarily set snapping mode to free snapping"));*/
RS_DEBUG->print("QG_ActionHandler::command: toggle Snap Free: OK");
}
return true;
}
RS_DEBUG->print("QG_ActionHandler::command: %s", cmd.toLatin1().data());
QString c = cmd.toLower().trimmed();
if (c==tr("escape", "escape, go back from action steps")) {
view->back();
RS_DEBUG->print("QG_ActionHandler::command: back");
return true;
}
// pass command on to running action:
RS_CommandEvent commandEvent(cmd);
RS_DEBUG->print("QG_ActionHandler::command: trigger command event in graphic view");
view->commandEvent(&commandEvent);
// if the current action can't deal with the command,
// it might be intended to launch a new command
// std::cout<<"QG_ActionHandler::command(): e.isAccepted()="<<e.isAccepted()<<std::endl;
if (!commandEvent.isAccepted()) {
RS_DEBUG->print("QG_ActionHandler::command: convert cmd to action type");
// command for new action:
RS2::ActionType type = RS_COMMANDS->cmdToAction(cmd);
if (type!=RS2::ActionNone) {
RS_DEBUG->print("QG_ActionHandler::command: setting current action");
//special handling, currently needed for snap actions
if (!m_snapManager->tryToProcessSnapActions(type)){
//not handled yet
setCurrentAction(type);
}
RS_DEBUG->print("QG_ActionHandler::command: current action set");
return true;
}
}else{
return true;
}
RS_DEBUG->print("QG_ActionHandler::command: current action not set");
return false;
}
void QG_ActionHandler::setSnaps(RS_SnapMode const& s) const {
m_snapManager->setSnaps(s);
}
// void QG_ActionHandler::slotSnapIntersectionManual() {
//disableSnaps();
/*if (snapIntersectionManual) {
snapIntersectionManual->setChecked(true);
}*/
/*if (snapToolBar) {
snapToolBar->setSnapMode(RS2::SnapIntersectionManual);
}*/
//setCurrentAction(RS2::ActionSnapIntersectionManual);
// }
// fixme - sand - files - rework snap middle value, it's not consistent with other actions !!!!
void QG_ActionHandler::slotSnapMiddleManual(){
setCurrentAction(RS2::ActionSnapMiddleManual);
}
void QG_ActionHandler::slotSetRelativeZero() {
setCurrentAction(RS2::ActionSetRelativeZero);
}
void QG_ActionHandler::slotLockRelativeZero(bool on){
m_snapManager->setRelativeZeroLock(on);
// calling view directly instead of action to ensure that button for action will not be unchecked after action init/finish
view->getViewPort()->lockRelativeZero(on);
}
void QG_ActionHandler::setDocumentAndView(RS_Document *doc, RS_GraphicView *graphicView){
m_actionContext->setDocumentAndView(doc, graphicView);
if (m_snapManager != nullptr) {
m_snapManager->setGraphicView(graphicView);
}
view = graphicView;
document = doc;
}
// void QG_ActionHandler::toggleVisibility(RS_Layer* layer){
// /*auto a = new RS_ActionLayersToggleView(m_actionContext, layer);
// view->setCurrentAction(a);*/
// }
//
// void QG_ActionHandler::toggleLock(RS_Layer* layer){
// /*auto a = new RS_ActionLayersToggleLock(m_actionContext, layer);
// view->setCurrentAction(a);*/
// }
//
// void QG_ActionHandler::togglePrint(RS_Layer* layer){
// /*auto a = new RS_ActionLayersTogglePrint(m_actionContext, layer);
// view->setCurrentAction(a);*/
// }
// void QG_ActionHandler::toggleConstruction(RS_Layer* layer){
// /* auto a = new LC_ActionLayersToggleConstruction(m_actionContext, layer);
// view->setCurrentAction(a);
// */
// }
|