File size: 10,582 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 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | /****************************************************************************
**
** 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 "rs_graphicview.h"
#include "lc_cursoroverlayinfo.h"
#include "lc_eventhandler.h"
#include "lc_graphicviewport.h"
#include "lc_shortcuts_manager.h"
#include "lc_widgetviewportrenderer.h"
#include "rs_actioninterface.h"
#include "rs_entitycontainer.h"
#include "rs_graphic.h"
#include "rs_grid.h"
#include "rs_linetypepattern.h"
#include "rs_selection.h"
#include "rs_settings.h"
#include "rs_snapper.h"
#ifdef EMU_C99
#include "emu_c99.h"
#endif
/**
* Constructor.
*/
RS_GraphicView::RS_GraphicView(QWidget *parent, Qt::WindowFlags f)
:QWidget(parent, f)
, m_eventHandler{std::make_unique<LC_EventHandler>(this)}
, m_viewport{std::make_unique<LC_GraphicViewport>()}
, defaultSnapMode{std::make_unique<RS_SnapMode>()}
, infoCursorOverlayPreferences{std::make_unique<LC_InfoCursorOverlayPrefs>()}{
m_viewport->addViewportListener(this);
}
void RS_GraphicView::loadSettings() {
LC_GROUP("Appearance");
{
m_panOnZoom = LC_GET_BOOL("PanOnZoom", false);
m_skipFirstZoom = LC_GET_BOOL("FirstTimeNoZoom", false);
}
LC_GROUP_END();
infoCursorOverlayPreferences->loadSettings();
m_viewport->loadSettings();
m_renderer->loadSettings();
}
RS_GraphicView::~RS_GraphicView() = default;
/**
* Must be called by any derived class in the destructor.
*/
void RS_GraphicView::cleanUp() {
m_bIsCleanUp = true;
}
/**
* Sets the pointer to the graphic which contains the entities
* which are visualized by this widget.
*/
void RS_GraphicView::setContainer(RS_EntityContainer *c) {
container = c;
m_viewport->setContainer(c);
//adjustOffsetControls();
}
/**
* @return Current action or nullptr.
*/
RS_ActionInterface *RS_GraphicView::getDefaultAction() const {
if (m_eventHandler!=nullptr) {
return m_eventHandler->getDefaultAction();
} else {
return nullptr;
}
}
void RS_GraphicView::hideOptions() const {
if (m_eventHandler != nullptr) {
auto defaultAction = m_eventHandler->getDefaultAction();
if (defaultAction != nullptr) {
defaultAction->hideOptions();
}
}
}
/**
* Sets the default action of the event handler.
*/
void RS_GraphicView::setDefaultAction(RS_ActionInterface *action) const {
if (m_eventHandler !=nullptr) {
m_eventHandler->setDefaultAction(action);
}
}
/**
* @return Current action or nullptr.
*/
RS_ActionInterface *RS_GraphicView::getCurrentAction() const {
return (nullptr != m_eventHandler) ? m_eventHandler->getCurrentAction() : nullptr;
}
QString RS_GraphicView::getCurrentActionName() const {
if (m_eventHandler !=nullptr) {
QAction* qaction = m_eventHandler->getQAction();
if (qaction != nullptr){
// todo - sand - actually, this is bad dependency, should be refactored
return LC_ShortcutsManager::getPlainActionToolTip(qaction);
}
}
return "";
}
QIcon RS_GraphicView::getCurrentActionIcon() const {
if (m_eventHandler != nullptr) {
QAction* qaction = m_eventHandler->getQAction();
if (qaction != nullptr){
return qaction->icon();
}
}
return {};
}
bool RS_GraphicView::setEventHandlerAction(std::shared_ptr<RS_ActionInterface> action){
bool actionActive = m_eventHandler->setCurrentAction(action);
return actionActive;
}
/**
* Sets the current action of the event handler.
*/
bool RS_GraphicView::setCurrentAction(std::shared_ptr<RS_ActionInterface> action) {
if (m_eventHandler != nullptr) {
m_viewport->markRelativeZero();
return setEventHandlerAction(action);
}
return false;
}
/**
* Kills all running actions.
*/
void RS_GraphicView::killAllActions() const {
if (m_eventHandler != nullptr) {
m_eventHandler->killAllActions();
}
}
/**
* Go back in menu or current action.
*/
void RS_GraphicView::back() const {
if (m_eventHandler && m_eventHandler->hasAction()) {
m_eventHandler->back();
}
}
/**
* Go forward with the current action.
*/
void RS_GraphicView::processEnterKey() {
if (m_eventHandler && m_eventHandler->hasAction()) {
m_eventHandler->enter();
}
}
void RS_GraphicView::keyPressEvent(QKeyEvent *event) {
if (m_eventHandler && m_eventHandler->hasAction()) {
m_eventHandler->keyPressEvent(event);
}
}
/**
* Called by the actual GUI class which implements a command line.
*/
void RS_GraphicView::commandEvent(RS_CommandEvent *e) {
if (m_eventHandler) {
m_eventHandler->commandEvent(e);
}
}
/**
* Enables coordinate input in the command line.
*/
void RS_GraphicView::enableCoordinateInput() {
if (m_eventHandler) {
m_eventHandler->enableCoordinateInput();
}
}
/**
* Disables coordinate input in the command line.
*/
void RS_GraphicView::disableCoordinateInput() {
if (m_eventHandler) {
m_eventHandler->disableCoordinateInput();
}
}
void RS_GraphicView::zoomAuto(bool axis){
m_viewport->zoomAuto(axis);
}
void RS_GraphicView::onViewportChanged() {
adjustOffsetControls();
adjustZoomControls();
QString info = m_viewport->getGrid()->getInfo();
updateGridStatusWidget(info);
redraw();
}
void RS_GraphicView::onViewportRedrawNeeded() {
redraw(RS2::RedrawDrawing);
}
void RS_GraphicView::onUCSChanged(LC_UCS* ucs) {
emit ucsChanged(ucs);
QString info = m_viewport->getGrid()->getInfo();
updateGridStatusWidget(info);
redraw();
}
void RS_GraphicView::notifyCurrentActionChanged(RS2::ActionType actionType) {
emit currentActionChanged(actionType);
}
bool RS_GraphicView::hasAction() {
return getEventHandler()->hasAction();
}
void RS_GraphicView::notifyLastActionFinished() {
return getEventHandler()->notifyLastActionFinished();
}
void RS_GraphicView::onRelativeZeroChanged(const RS_Vector &pos) {
emit relativeZeroChanged(pos);
redraw(RS2::RedrawOverlay);
}
/**
* @return Pointer to the static pattern struct that belongs to the
* given pattern type or nullptr.
*/
const RS_LineTypePattern *RS_GraphicView::getPattern(RS2::LineType t) {
return RS_LineTypePattern::getPattern(t);
}
RS2::SnapRestriction RS_GraphicView::getSnapRestriction() const {
return defaultSnapRes;
}
RS_SnapMode RS_GraphicView::getDefaultSnapMode() const {
return *defaultSnapMode;
}
/**
* Sets the default snap mode used by newly created actions.
*/
void RS_GraphicView::setDefaultSnapMode(RS_SnapMode sm) {
*defaultSnapMode = sm;
if (m_eventHandler) {
m_eventHandler->setSnapMode(sm);
}
}
/**
* Sets a snap restriction (e.g. orthogonal).
*/
void RS_GraphicView::setSnapRestriction(RS2::SnapRestriction sr) {
defaultSnapRes = sr;
if (m_eventHandler) {
m_eventHandler->setSnapRestriction(sr);
}
}
LC_EventHandler *RS_GraphicView::getEventHandler() const {
return m_eventHandler.get();
}
bool RS_GraphicView::isCurrentActionRunning(RS_ActionInterface* action) {
return m_eventHandler->isValid(action);
}
RS_Graphic *RS_GraphicView::getGraphic(bool resolve) const {
if (container != nullptr){
if (resolve) {
return container->getGraphic();
}
if (container->rtti() == RS2::EntityGraphic) {
return static_cast<RS_Graphic *>(container);
}
}
return nullptr;
}
RS_EntityContainer *RS_GraphicView::getContainer() const {
return container;
}
void RS_GraphicView::switchToDefaultAction() {
killAllActions();
RS_Selection s(*container, m_viewport.get());
s.selectAll(false);
redraw(RS2::RedrawAll);
}
bool RS_GraphicView::isCleanUp(void) const {
return m_bIsCleanUp;
}
/* Sets the hidden state for the relative-zero marker. */
void RS_GraphicView::setRelativeZeroHiddenState(bool isHidden) {
return m_viewport->setRelativeZeroHiddenState(isHidden);
}
bool RS_GraphicView::isRelativeZeroHidden() {
return m_viewport->isRelativeZeroHidden();
}
RS2::EntityType RS_GraphicView::getTypeToSelect() const {
return typeToSelect;
}
void RS_GraphicView::setTypeToSelect(RS2::EntityType mType) {
typeToSelect = mType;
}
QString RS_GraphicView::obtainEntityDescription([[maybe_unused]]RS_Entity *entity, [[maybe_unused]]RS2::EntityDescriptionLevel descriptionLevel) {
return "";
}
void RS_GraphicView::setShowEntityDescriptionOnHover(bool show) {
showEntityDescriptionOnHover = show;
}
bool RS_GraphicView::getPanOnZoom() const{
return m_panOnZoom;
}
bool RS_GraphicView::getSkipFirstZoom() const{
return m_skipFirstZoom;
}
LC_InfoCursorOverlayPrefs* RS_GraphicView::getInfoCursorOverlayPreferences(){
return infoCursorOverlayPreferences.get();
}
void RS_GraphicView::resizeEvent(QResizeEvent *event) {
QWidget::resizeEvent(event);
m_viewport->setSize(getWidth(), getHeight());
}
bool RS_GraphicView::isPrintPreview() const {
return printPreview;
}
void RS_GraphicView::setPrintPreview(bool pv) {
printPreview = pv;
}
void RS_GraphicView::setLineWidthScaling(bool state){
m_renderer->setLineWidthScaling(state);
}
bool RS_GraphicView::getLineWidthScaling() const{
return m_renderer->getLineWidthScaling();
}
LC_WidgetViewPortRenderer* RS_GraphicView::getRenderer() const{
return m_renderer.get();
}
void RS_GraphicView::setRenderer(std::unique_ptr<LC_WidgetViewPortRenderer> renderer){
m_renderer = std::move(renderer);
}
|