1 // actionmodifyexplodetext.cpp
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 06/04/2010 Added this text. :-)
17 #include "actionmodifyexplodetext.h"
19 #include "modification.h"
24 ActionModifyExplodeText::ActionModifyExplodeText(EntityContainer & container,
25 GraphicView & graphicView): ActionInterface("Blocks Explode",
26 container, graphicView)
30 ActionModifyExplodeText::~ActionModifyExplodeText()
34 /*virtual*/ RS2::ActionType ActionModifyExplodeText::rtti()
36 return RS2::ActionModifyExplodeText;
39 void ActionModifyExplodeText::init(int status)
41 ActionInterface::init(status);
47 void ActionModifyExplodeText::trigger()
49 Modification m(*container, graphicView);
50 m.explodeTextIntoLetters();