]> Shamusworld >> Repos - architektonas/blob - src/forms/cadtoolbarpoints.cpp
89758ab9c576dcf8b6e04666f56ef4f939f5c7e1
[architektonas] / src / forms / cadtoolbarpoints.cpp
1 // cadtoolbarpoints.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 "cadtoolbarpoints.h"
16
17 #include "cadtoolbar.h"
18 #include "qg_actionhandler.h"
19 #include "rs_debug.h"
20
21 CadToolBarPoints::CadToolBarPoints(QWidget * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/):
22         QWidget(parent, flags), actionHandler(NULL), cadToolBar(NULL)
23 {
24         ui.setupUi(this);
25 }
26
27 CadToolBarPoints::~CadToolBarPoints()
28 {
29 }
30
31 void CadToolBarPoints::mousePressEvent(QMouseEvent * e)
32 {
33         if (e->button() == Qt::RightButton && cadToolBar != NULL)
34         {
35                 cadToolBar->back();
36                 e->accept();
37         }
38 }
39
40 void CadToolBarPoints::contextMenuEvent(QContextMenuEvent * e)
41 {
42         e->accept();
43 }
44
45 void CadToolBarPoints::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, "QG_CadToolBarPoints::setCadToolBar(): No valid toolbar set.");
53 }
54
55 void CadToolBarPoints::drawPoint()
56 {
57         if (cadToolBar != NULL && actionHandler != NULL)
58                 actionHandler->slotDrawPoint();
59 }
60
61 void CadToolBarPoints::back()
62 {
63         if (cadToolBar != NULL)
64                 cadToolBar->back();
65 }