]> Shamusworld >> Repos - architektonas/blob - src/forms/cadtoolbarinfo.cpp
98daa80c0f8c7fdd1b69e628653eeb2fc72ca0c8
[architektonas] / src / forms / cadtoolbarinfo.cpp
1 // cadtoolbarinfo.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 "cadtoolbarinfo.h"
16
17 #include "cadtoolbar.h"
18 #include "qg_actionhandler.h"
19 #include "rs_debug.h"
20
21 CadToolBarInfo::CadToolBarInfo(QWidget * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/):
22         QWidget(parent, flags), actionHandler(NULL), cadToolBar(NULL)
23 {
24         ui.setupUi(this);
25 }
26
27 CadToolBarInfo::~CadToolBarInfo()
28 {
29 }
30
31 void CadToolBarInfo::mousePressEvent(QMouseEvent * e)
32 {
33         if (e->button() == Qt::RightButton && cadToolBar != NULL)
34         {
35                 cadToolBar->back();
36                 e->accept();
37         }
38 }
39
40 void CadToolBarInfo::contextMenuEvent(QContextMenuEvent *e) {
41         e->accept();
42 }
43
44 void CadToolBarInfo::setCadToolBar(CadToolBar * tb)
45 {
46         cadToolBar = tb;
47
48         if (tb != NULL)
49                 actionHandler = tb->getActionHandler();
50         else
51                 RS_DEBUG->print(RS_Debug::D_ERROR,
52                         "CadToolBarInfo::setCadToolBar(): No valid toolbar set.");
53 }
54
55 void CadToolBarInfo::infoDist()
56 {
57         if (cadToolBar != NULL && actionHandler != NULL)
58                 actionHandler->slotInfoDist();
59 }
60
61 void CadToolBarInfo::infoDist2()
62 {
63         if (cadToolBar != NULL && actionHandler != NULL)
64                 actionHandler->slotInfoDist2();
65 }
66
67 void CadToolBarInfo::infoAngle()
68 {
69         if (cadToolBar != NULL && actionHandler != NULL)
70                 actionHandler->slotInfoAngle();
71 }
72
73 void CadToolBarInfo::infoTotalLength()
74 {
75         if (cadToolBar != NULL && actionHandler != NULL)
76                 actionHandler->slotInfoTotalLength();
77 }
78
79 void CadToolBarInfo::infoArea()
80 {
81         if (cadToolBar != NULL && actionHandler != NULL)
82                 actionHandler->slotInfoArea();
83 }
84
85 void CadToolBarInfo::back()
86 {
87         if (cadToolBar != NULL)
88                 cadToolBar->back();
89 }