]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actioninfoinside.h
Major refactoring of actions: Moved implementation from header files
[architektonas] / src / actions / rs_actioninfoinside.h
index 1494e440d8541d897a8d0b9514e8271dea52dbc0..a1f1a0821c23b93ba8a02a9713afa9590355e7fd 100644 (file)
@@ -1,60 +1,30 @@
-/****************************************************************************
-** $Id: rs_actioninfoinside.h 1062 2004-01-16 21:51:20Z andrew $
-**
-** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.
-**
-** This file is part of the qcadlib Library project.
-**
-** This file may be distributed and/or modified under the terms of the
-** GNU General Public License version 2 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file.
-**
-** Licensees holding valid qcadlib Professional Edition licenses may use 
-** this file in accordance with the qcadlib Commercial License
-** Agreement provided with the Software.
-**
-** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
-** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-**
-** See http://www.ribbonsoft.com for further details.
-**
-** Contact info@ribbonsoft.com if any conditions of this licensing are
-** not clear to you.
-**
-**********************************************************************/
-
 #ifndef RS_ACTIONINFOINSIDE_H
 #define RS_ACTIONINFOINSIDE_H
 
 #include "rs_actioninterface.h"
 
-
 /**
  * This action class can handle user events for checking if
  * a given point is inside or outside the selected contour.
  *
  * @author Andrew Mustun
  */
-class RS_ActionInfoInside : public RS_ActionInterface {
-       //Q_OBJECT
-public:
-    RS_ActionInfoInside(RS_EntityContainer& container,
-                       RS_GraphicView& graphicView);
-    ~RS_ActionInfoInside();
-       
-       static QAction* createGUIAction(RS2::ActionType /*type*/, QObject* /*parent*/);
+class RS_ActionInfoInside: public RS_ActionInterface
+{
+       public:
+               RS_ActionInfoInside(RS_EntityContainer & container, RS_GraphicView & graphicView);
+               ~RS_ActionInfoInside();
 
-    virtual void trigger();
-    virtual void mouseMoveEvent(QMouseEvent* e);
-    virtual void mouseReleaseEvent(QMouseEvent* e);
-    virtual void updateMouseButtonHints();
-    virtual void updateMouseCursor();
-    virtual void updateToolBar();
+               virtual void trigger();
+               virtual void mouseMoveEvent(QMouseEvent * e);
+               virtual void mouseReleaseEvent(QMouseEvent * e);
+               virtual void updateMouseButtonHints();
+               virtual void updateMouseCursor();
+               virtual void updateToolBar();
 
-private:
-    Vector pt;
-       RS_EntityContainer* contour;
+       private:
+               Vector pt;
+               RS_EntityContainer * contour;
 };
 
 #endif