]> Shamusworld >> Repos - architektonas/blob - src/actions/actionzoompan.cpp
Removed Snapper class; still refactoring Snapper/Preview...
[architektonas] / src / actions / actionzoompan.cpp
1 // actionzoompan.cpp
2 //
3 // Part of the Architektonas Project
4 // Originally part of QCad Community Edition by Andrew Mustun
5 // Extensively rewritten and refactored by James L. Hammons
6 // Portions copyright (C) 2001-2003 RibbonSoft
7 // Copyright (C) 2010 Underground Software
8 // See the README and GPLv2 files for licensing and warranty information
9 //
10 // JLH = James L. Hammons <jlhamm@acm.org>
11 //
12 // Who  When        What
13 // ---  ----------  -----------------------------------------------------------
14 // JLH  06/05/2010  Added this text. :-)
15 //
16
17 #include "actionzoompan.h"
18
19 #include "graphicview.h"
20
21 ActionZoomPan::ActionZoomPan(EntityContainer & container, GraphicView & graphicView):
22         ActionInterface("Zoom Pan", container, graphicView)
23 {
24 //      graphicView.snapper.SetVisible(false);
25         graphicView.SetSnapperVisible(false);
26         graphicView.preview.SetVisible(false);
27 }
28
29 ActionZoomPan::~ActionZoomPan()
30 {
31 }
32
33 void ActionZoomPan::init(int status)
34 {
35         ActionInterface::init(status);
36 /*      snapMode = RS2::SnapFree;
37         snapRes = RS2::RestrictNothing;*/
38         x1 = y1 = x2 = y2 = -1;
39 }
40
41 void ActionZoomPan::trigger()
42 {
43         if (x1 >= 0)
44         {
45                 graphicView->zoomPan(x2 - x1, y2 - y1);
46                 x1 = x2;
47                 y1 = y2;
48         }
49 }
50
51 #define SCROLL_DELTA 4
52 void ActionZoomPan::mouseMoveEvent(QMouseEvent * e)
53 {
54         x2 = e->x();
55         y2 = e->y();
56
57 //This is where we see if the delta was big enough to warrant a redraw...
58 //Dunno if this is needed anymore, the Qt rendering pipeline should be able to
59 //hang with this...
60 //      if (getStatus() == 1 && (abs(x2 - x1) > 7 || abs(y2 - y1) > 7))
61         if (getStatus() == 1 && (abs(x2 - x1) > SCROLL_DELTA || abs(y2 - y1) > SCROLL_DELTA))
62                 trigger();
63 }
64
65 void ActionZoomPan::mousePressEvent(QMouseEvent * e)
66 {
67         if (e->button() == Qt::LeftButton || e->button() == Qt::MidButton)
68         {
69                 x1 = e->x();
70                 y1 = e->y();
71                 setStatus(1);
72         }
73 }
74
75 void ActionZoomPan::mouseReleaseEvent(QMouseEvent * e)
76 {
77         // Right button? Why?
78         // Is this a regular tool? Is this why? (yup, it is. but lame nonetheless.)
79         // It doesn't revert the cursor correctly if this is not in...
80         // So... We need to fix this... [DONE]
81         /*if (e->button() == Qt::RightButton)
82                 init(getStatus() - 1);
83         else*/ if (e->button() == Qt::MidButton || e->button() == Qt::RightButton)
84                 init(-1);
85         else
86                 setStatus(0);   // Qt::LeftButton
87 }
88
89 void ActionZoomPan::updateMouseCursor()
90 {
91 #ifndef __APPLE__
92         graphicView->setMouseCursor(RS2::SizeAllCursor);
93 #endif
94 }