]> Shamusworld >> Repos - architektonas/blob - src/forms/cadtoolbardim.cpp
Successfully refactored CadToolBarLines to use predefined actions.
[architektonas] / src / forms / cadtoolbardim.cpp
1 // cadtoolbardim.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 // (C) 2010 Underground Software
7 //
8 // JLH = James L. Hammons <jlhamm@acm.org>
9 //
10 // Who  When        What
11 // ---  ----------  -----------------------------------------------------------
12 // JLH  05/10/2010  Created this file. :-)
13 //
14
15 #include "cadtoolbardim.h"
16
17 #include "cadtoolbar.h"
18 #include "qg_actionhandler.h"
19 #include "rs_debug.h"
20
21 CadToolBarDim::CadToolBarDim(QWidget * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/):
22         QWidget(parent, flags), actionHandler(NULL), cadToolBar(NULL)
23 {
24         ui.setupUi(this);
25 }
26
27 CadToolBarDim::~CadToolBarDim()
28 {
29 }
30
31 void CadToolBarDim::mousePressEvent(QMouseEvent * e)
32 {
33         if (e->button() == Qt::RightButton && cadToolBar != NULL)
34         {
35                 cadToolBar->back();
36                 e->accept();
37         }
38 }
39
40 void CadToolBarDim::contextMenuEvent(QContextMenuEvent * e)
41 {
42         e->accept();
43 }
44
45 void CadToolBarDim::setCadToolBar(CadToolBar * tb)
46 {
47         cadToolBar = tb;
48
49         if (tb != NULL)
50                 actionHandler = tb->getActionHandler();
51         else
52                 RS_DEBUG->print(RS_Debug::D_ERROR, "CadToolBarDim::setCadToolBar(): No valid toolbar set.");
53 }
54
55 void CadToolBarDim::drawDimAligned()
56 {
57         if (cadToolBar != NULL && actionHandler != NULL)
58                 actionHandler->slotDimAligned();
59 }
60
61 void CadToolBarDim::drawDimLinear()
62 {
63         if (cadToolBar != NULL && actionHandler != NULL)
64                 actionHandler->slotDimLinear();
65 }
66
67 void CadToolBarDim::drawDimLinearHor()
68 {
69         if (cadToolBar != NULL && actionHandler != NULL)
70                 actionHandler->slotDimLinearHor();
71 }
72
73 void CadToolBarDim::drawDimLinearVer()
74 {
75         if (cadToolBar != NULL && actionHandler != NULL)
76                 actionHandler->slotDimLinearVer();
77 }
78
79 void CadToolBarDim::drawDimRadial()
80 {
81         if (cadToolBar != NULL && actionHandler != NULL)
82                 actionHandler->slotDimRadial();
83 }
84
85 void CadToolBarDim::drawDimDiametric()
86 {
87         if (cadToolBar != NULL && actionHandler != NULL)
88                 actionHandler->slotDimDiametric();
89 }
90
91 void CadToolBarDim::drawDimAngular()
92 {
93         if (cadToolBar != NULL && actionHandler != NULL)
94                 actionHandler->slotDimAngular();
95 }
96
97 void CadToolBarDim::drawDimLeader()
98 {
99         if (cadToolBar != NULL && actionHandler != NULL)
100                 actionHandler->slotDimLeader();
101 }
102
103 void CadToolBarDim::back()
104 {
105         if (cadToolBar != NULL)
106                 cadToolBar->back();
107 }