]> Shamusworld >> Repos - architektonas/blob - src/actions/actionblocksfreezeall.cpp
86321ee7ff3fd97085a7edbbf8bf5f41bf54621a
[architektonas] / src / actions / actionblocksfreezeall.cpp
1 // actionblocksfreezeall.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/22/2010  Added this text. :-)
13 //
14
15 #include "actionblocksfreezeall.h"
16
17 #include "drawing.h"
18 #include "graphicview.h"
19
20 ActionBlocksFreezeAll::ActionBlocksFreezeAll(bool freeze, RS_EntityContainer & container,
21         GraphicView & graphicView): ActionInterface("Freeze all Blocks", container, graphicView)
22 {
23         this->freeze = freeze;
24 }
25
26 ActionBlocksFreezeAll::~ActionBlocksFreezeAll()
27 {
28 }
29
30 void ActionBlocksFreezeAll::trigger()
31 {
32         RS_DEBUG->print("ActionBlocksFreezeAll::trigger");
33
34         if (graphic)
35                 graphic->freezeAllBlocks(freeze);
36
37         graphicView->redraw();
38         finish();
39 }
40
41 void ActionBlocksFreezeAll::init(int status)
42 {
43         ActionInterface::init(status);
44         trigger();
45 }