X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbase%2Frs_actioninterface.cpp;h=7a885f8f85f770b40868d69497ce4737a2fcc35d;hb=27d4a138d23453e93a833e9347444b828a971cb4;hp=9d4f4e55ef90afae8b304dfe2aab0147b21b9155;hpb=16ce54abf01ca3032e42a5bb11a4afcf9014dcca;p=architektonas diff --git a/src/base/rs_actioninterface.cpp b/src/base/rs_actioninterface.cpp index 9d4f4e5..7a885f8 100644 --- a/src/base/rs_actioninterface.cpp +++ b/src/base/rs_actioninterface.cpp @@ -14,6 +14,11 @@ #include "rs_actioninterface.h" +#include "commands.h" +#include "rs_debug.h" +#include "rs_entitycontainer.h" +#include "graphicview.h" + /** * Constructor. * @@ -31,7 +36,7 @@ * be reset to the one given here. */ RS_ActionInterface::RS_ActionInterface(const char * name, - RS_EntityContainer & container, RS_GraphicView & graphicView): + RS_EntityContainer & container, GraphicView & graphicView): RS_Snapper(container, graphicView) { RS_DEBUG->print("RS_ActionInterface::RS_ActionInterface: Setting up action: \"%s\"", name); @@ -60,9 +65,9 @@ RS_ActionInterface::RS_ActionInterface(const char * name, */ RS_ActionInterface::~RS_ActionInterface() { -//JLH: Only it isn't pure virtual... // would be pure virtual now: // hideOptions(); +//JLH: Only it isn't pure virtual... } /** @@ -158,7 +163,8 @@ void RS_ActionInterface::keyReleaseEvent(QKeyEvent * e) * This function can be overwritten by the implementing action. * The default implementation does nothing. */ -void RS_ActionInterface::coordinateEvent(RS_CoordinateEvent *) +//void RS_ActionInterface::coordinateEvent(RS_CoordinateEvent *) +void RS_ActionInterface::coordinateEvent(Vector *) { }