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
10 // JLH = James L. Hammons <jlhamm@acm.org>
13 // --- ---------- -----------------------------------------------------------
14 // JLH 05/10/2010 Created this file. :-)
17 #include "cadtoolbarsnap.h"
19 #include "cadtoolbar.h"
20 #include "createqtactions.h"
22 CadToolBarSnap::CadToolBarSnap(CadToolBar * parent, Qt::WindowFlags flags/*= 0*/):
23 QWidget((QWidget *)parent, flags)
25 QGridLayout * gridLayout = new QGridLayout(this);
26 gridLayout->setSpacing(0);
27 gridLayout->setContentsMargins(0, 0, 0, 0);
29 gridLayout->addWidget(parent->CreateBackButton(this), 0, 0, 1, 2);
31 gridLayout->addWidget(parent->CreateToolButton(actionSnapFree), 1, 0, 1, 1);
32 gridLayout->addWidget(parent->CreateToolButton(actionSnapGrid), 1, 1, 1, 1);
33 gridLayout->addWidget(parent->CreateToolButton(actionSnapEndpoint), 2, 0, 1, 1);
34 gridLayout->addWidget(parent->CreateToolButton(actionSnapOnEntity), 2, 1, 1, 1);
35 gridLayout->addWidget(parent->CreateToolButton(actionSnapCenter), 3, 0, 1, 1);
36 gridLayout->addWidget(parent->CreateToolButton(actionSnapMiddle), 3, 1, 1, 1);
37 gridLayout->addWidget(parent->CreateToolButton(actionSnapDist), 4, 0, 1, 1);
38 gridLayout->addWidget(parent->CreateToolButton(actionSnapIntersection), 4, 1, 1, 1);
39 gridLayout->addWidget(parent->CreateToolButton(actionSnapIntersectionManual), 5, 0, 1, 1);
41 gridLayout->addWidget(parent->CreateToolButton(actionRestrictNothing), 7, 0, 1, 1);
42 gridLayout->addWidget(parent->CreateToolButton(actionRestrictOrthogonal), 7, 1, 1, 1);
43 gridLayout->addWidget(parent->CreateToolButton(actionRestrictHorizontal), 8, 0, 1, 1);
44 gridLayout->addWidget(parent->CreateToolButton(actionRestrictVertical), 8, 1, 1, 1);
46 gridLayout->addWidget(parent->CreateToolButton(actionSetRelativeZero), 10, 0, 1, 1);
47 gridLayout->addWidget(parent->CreateToolButton(actionLockRelativeZero), 10, 1, 1, 1);
50 CadToolBarSnap::~CadToolBarSnap()