/* * kis_tool_transform.h - part of Chalk * * Copyright (c) 2004 Boudewijn Rempt * Copyright (c) 2005 Casper Boemann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef KIS_TOOL_TRANSFORM_H_ #define KIS_TOOL_TRANSFORM_H_ #include #include #include #include #include class KisTransaction; class WdgToolTransform; class KisID; class KisFilterStrategy; /** * Transform tool * */ class KisToolTransform : public KisToolNonPaint, KisCommandHistoryListener { typedef KisToolNonPaint super; Q_OBJECT public: KisToolTransform(); virtual ~KisToolTransform(); virtual TQWidget* createOptionWidget(TQWidget* parent); virtual TQWidget* optionWidget(); virtual void setup(KActionCollection *collection); virtual enumToolType toolType() { return TOOL_TRANSFORM; } virtual TQ_UINT32 priority() { return 3; } virtual void paint(KisCanvasPainter& gc); virtual void paint(KisCanvasPainter& gc, const TQRect& rc); virtual void buttonPress(KisButtonPressEvent *e); virtual void move(KisMoveEvent *e); virtual void buttonRelease(KisButtonReleaseEvent *e); void setScaleX(double sx) { m_scaleX = sx; } void setScaleY(double sy) { m_scaleY = sy; } void setTranslateX(double tx) { m_translateX = tx; } void setTranslateY(double ty) { m_translateY = ty; } void setAngle(double a) { m_a = a; } void paintOutline(); public: void notifyCommandAdded(KCommand *); void notifyCommandExecuted(KCommand *); public: virtual void deactivate(); private: void paintOutline(KisCanvasPainter& gc, const TQRect& rc); void transform(); void recalcOutline(); double rotX(double x, double y) { return m_cosa*x - m_sina*y;}; double rotY(double x, double y) { return m_sina*x + m_cosa*y;}; double invrotX(double x, double y) { return m_cosa*x + m_sina*y;}; double invrotY(double x, double y) { return -m_sina*x + m_cosa*y;}; int det(TQPoint v,TQPoint w); int distsq(TQPoint v,TQPoint w); void setFunctionalCursor(); void initHandles(); private slots: void slotLayerActivated(KisLayerSP); void slotSetFilter(const KisID &); void setStartX(int x) { m_startPos.setX(x); } void setStartY(int y) { m_startPos.setY(y); } void setEndX(int x) { m_endPos.setX(x); } void setEndY(int y) { m_endPos.setY(y); } protected slots: virtual void activate(); private: enum function {ROTATE,MOVE,TOPLEFTSCALE,TOPSCALE,TOPRIGHTSCALE,RIGHTSCALE, BOTTOMRIGHTSCALE, BOTTOMSCALE,BOTTOMLEFTSCALE, LEFTSCALE}; TQCursor m_sizeCursors[8]; function m_function; TQPoint m_startPos; TQPoint m_endPos; bool m_selecting; bool m_actualyMoveWhileSelected; TQPoint m_topleft; TQPoint m_topright; TQPoint m_bottomleft; TQPoint m_bottomright; double m_scaleX; double m_scaleY; double m_translateX; double m_translateY; TQPoint m_clickoffset; double m_org_cenX; double m_org_cenY; double m_cosa; double m_sina; double m_a; double m_clickangle; KisFilterStrategy *m_filter; WdgToolTransform *m_optWidget; KisPaintDeviceSP m_origDevice; KisSelectionSP m_origSelection; bool m_wasPressed; }; class KisToolTransformFactory : public KisToolFactory { typedef KisToolFactory super; public: KisToolTransformFactory() : super() {}; virtual ~KisToolTransformFactory(){}; virtual KisTool * createTool(KActionCollection * ac) { KisTool * t = new KisToolTransform(); TQ_CHECK_PTR(t); t->setup(ac); return t; } virtual KisID id() { return KisID("transform", i18n("Transform Tool")); } }; #endif // KIS_TOOL_TRANSFORM_H_