You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegraphics/kolourpaint/kptool.h

423 lines
15 KiB

/*
Copyright (c) 2003,2004,2005 Clarence Dang <dang@kde.org>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __kp_tool_h__
#define __kp_tool_h__
#include <qobject.h>
#include <qpoint.h>
#include <qrect.h>
#include <qsize.h>
#include <qstring.h>
#include <kpdefs.h>
class QIconSet;
class QPixmap;
class KKeySequence;
class KShortcut;
class kpColor;
class kpColorToolBar;
class kpCommandHistory;
class kpDocument;
class kpView;
class kpViewManager;
class kpMainWindow;
class kpToolAction;
class kpToolToolBar;
// Base class for all tools
class kpTool : public QObject
{
Q_OBJECT
public:
kpTool (const QString &text, const QString &description,
int key,
kpMainWindow *mainWindow, const char *name);
virtual ~kpTool ();
private:
void init (const QString &text, const QString &description,
int key,
kpMainWindow *mainWindow, const char *name);
protected:
void createAction ();
int m_key;
kpToolAction *m_action;
signals:
void actionToolTipChanged (const QString &string);
protected slots:
void slotActionToolTipChanged (const QString &string);
public:
QString text () const;
void setText (const QString &text);
static QString toolTipForTextAndShortcut (const QString &text,
const KShortcut &shortcut);
QString toolTip () const;
QString description () const;
void setDescription (const QString &description);
int key () const;
void setKey (int key);
// Given a single <key>, returns a shortcut with <key>
// (disabled when the user is editing text) and as an alternate,
// <some modifiers>+<key>.
static KShortcut shortcutForKey (int key);
KShortcut shortcut () const;
static bool keyIsText (int key);
static bool containsSingleKeyTrigger (const KKeySequence &seq);
static bool containsSingleKeyTrigger (const KShortcut &shortcut,
KShortcut *shortcutWithoutSingleKeyTriggers);
bool singleKeyTriggersEnabled () const;
void enableSingleKeyTriggers (bool enable = true);
const char *name () const;
static QRect neededRect (const QRect &rect, int lineWidth);
static QPixmap neededPixmap (const QPixmap &pixmap, const QRect &boundingRect);
bool hasCurrentPoint () const;
// Returns the position of the cursor relative to the topleft point of
// the current view (viewUnderStartPoint() or viewUnderCursor() otherwise).
//
// If neither viewUnderStartPoint() nor viewUnderCursor()
// (i.e. !hasCurrentPoint()), then it returns KP_INVALID_POINT.
//
// If <zoomToDoc> is set (default), then it returns the position in the
// document. This theoretically == m_currentPoint (when m_currentPoint
// is defined) but I wouldn't bet on it. This function is useful when
// m_currentPoint isn't necessarily defined (outside of beginDraw(),draw()
// and hover()).
//
// If <zoomToDoc> is not set, then it returns an unzoomed view coordinate.
//
// Keep in mind that if viewUnderStartPoint(), this can return coordinates
// outside of the document/view.
QPoint currentPoint (bool zoomToDoc = true) const;
public slots:
// Call this when something below the mouse cursor may have changed
// and/or if the view has moved relative to the cursor (as opposed to
// the cursor moving relative to the view, which would trigger a
// mouseMoveEvent and all would be well without such hacks)
// e.g. when zooming or scrolling the view or when deleting a selection.
//
// This calls hover() or draw() to let the tool know. The Brush Tool
// can then update the position of the Brush Cursor. The Selection
// Tool can update the real cursor. The Line Tool can update the current
// line. The statubar gets correct coordinates. etc. etc.
void somethingBelowTheCursorChanged ();
private:
// Same as above except that you claim you know better than currentPoint()
void somethingBelowTheCursorChanged (const QPoint &currentPoint_,
const QPoint &currentViewPoint_);
public:
// called when the tool is selected
virtual void begin ();
// called when the tool is deselected
virtual void end ();
// set after begin() has been called, unset after end() has been called
bool hasBegun () const { return m_began; }
bool hasBegunDraw () const { return m_beganDraw; }
virtual bool hasBegunShape () const { return hasBegunDraw (); }
// called when user double-left-clicks on Tool Icon (not view)
virtual void globalDraw ();
// called when the user clicks on the Tool Icon even though it's already
// the current tool (used by the selection tools to deselect)
virtual void reselect ();
signals:
// emitted after beginDraw() has been called
void beganDraw (const QPoint &point);
// Emitted just before draw() is called in mouseMoveEvent(). Slots
// connected to this signal should return in <scrolled> whether the
// mouse pos may have changed. Used by drag scrolling.
void movedAndAboutToDraw (const QPoint &currentPoint, const QPoint &lastPoint,
int zoomLevel,
bool *scrolled);
// emitted after endDraw() has been called
void endedDraw (const QPoint &point);
// emitted after cancelShape() has been called
void cancelledShape (const QPoint &point);
public:
QIconSet iconSet (int forceSize = 0) const;
QString iconName () const;
kpToolAction *action ();
signals:
// User clicked on the tool's action - i.e. select this tool
void actionActivated ();
protected slots:
void slotActionActivated ();
protected:
virtual bool returnToPreviousToolAfterEndDraw () const { return false; }
virtual bool careAboutModifierState () const { return false; }
virtual bool careAboutColorsSwapped () const { return false; }
virtual void beginDraw ();
// mouse move without button pressed
// (only m_currentPoint & m_currentViewPoint is defined)
virtual void hover (const QPoint &point);
// this is useful for "instant" tools like the Pen & Eraser
virtual void draw (const QPoint &thisPoint, const QPoint &lastPoint,
const QRect &normalizedRect);
// (m_mouseButton will not change from beginDraw())
virtual void cancelShape ();
virtual void releasedAllButtons ();
virtual void endDraw (const QPoint &thisPoint, const QRect &normalizedRect);
virtual void endShape (const QPoint &thisPoint = QPoint (),
const QRect &normalizedRect = QRect ())
{
endDraw (thisPoint, normalizedRect);
}
kpMainWindow *mainWindow () const;
kpDocument *document () const;
kpViewManager *viewManager () const;
kpToolToolBar *toolToolBar () const;
kpView *viewUnderStartPoint () const { return m_viewUnderStartPoint; }
kpView *viewUnderCursor () const;
kpCommandHistory *commandHistory () const;
kpColor color (int which) const;
kpColor foregroundColor () const;
kpColor backgroundColor () const;
double colorSimilarity () const;
int processedColorSimilarity () const;
protected:
int m_ignoreColorSignals;
protected slots:
void slotColorsSwappedInternal (const kpColor &newForegroundColor,
const kpColor &newBackgroundColor);
void slotForegroundColorChangedInternal (const kpColor &color);
void slotBackgroundColorChangedInternal (const kpColor &color);
void slotColorSimilarityChangedInternal (double similarity, int processedSimilarity);
protected slots: // TODO: there is no reason why these should be slots
virtual void slotColorsSwapped (const kpColor & /*newForegroundColor*/, const kpColor & /*newBackgroundColor*/) {}
virtual void slotForegroundColorChanged (const kpColor & /*color*/) {}
virtual void slotBackgroundColorChanged (const kpColor & /*color*/) {}
virtual void slotColorSimilarityChanged (double /*similarity*/, int /*processedSimilarity*/) {};
protected:
// (only valid in slots connected to the respective signals above)
kpColor oldForegroundColor () const;
kpColor oldBackgroundColor () const;
double oldColorSimilarity () const;
protected:
// returns true if m_currentPoint <= 1 pixel away from m_lastPoint
// or if there was no lastPoint
bool currentPointNextToLast () const; // (includes diagonal adjacency)
bool currentPointCardinallyNextToLast () const; // (only cardinally adjacent i.e. horiz & vert; no diag)
int m_mouseButton; /* 0 = left, 1 = right */
bool m_shiftPressed, m_controlPressed, m_altPressed; // m_altPressed is unreliable
bool m_beganDraw; // set after beginDraw() is called, unset before endDraw() is called
QPoint m_startPoint,
m_currentPoint, m_currentViewPoint,
m_lastPoint;
protected:
friend class kpCommandHistory;
friend class kpMainWindow;
friend class kpToolToolBar;
void beginInternal ();
void endInternal ();
void beginDrawInternal ();
void endDrawInternal (const QPoint &thisPoint, const QRect &normalizedRect,
bool wantEndShape = false);
void cancelShapeInternal ();
void endShapeInternal (const QPoint &thisPoint = QPoint (),
const QRect &normalizedRect = QRect ());
friend class kpView;
// If you're reimplementing any of these, you probably don't know what
// you're doing - reimplement begin(),beginDraw(),draw(),cancelShape(),
// endDraw() etc. instead.
virtual void mousePressEvent (QMouseEvent *e);
virtual void mouseMoveEvent (QMouseEvent *e);
virtual void mouseReleaseEvent (QMouseEvent *e);
virtual void wheelEvent (QWheelEvent *e);
virtual void keyPressEvent (QKeyEvent *e);
virtual void keyReleaseEvent (QKeyEvent *e);
virtual void imStartEvent(QIMEvent *){}
virtual void imComposeEvent(QIMEvent *){}
virtual void imEndEvent(QIMEvent *){}
private:
void keyUpdateModifierState (QKeyEvent *e);
void notifyModifierStateChanged ();
protected:
virtual void setShiftPressed (bool pressed);
virtual void setControlPressed (bool pressed);
virtual void setAltPressed (bool pressed);
virtual void focusInEvent (QFocusEvent *e);
virtual void focusOutEvent (QFocusEvent *e);
virtual void enterEvent (QEvent *e);
virtual void leaveEvent (QEvent *e);
// 0 = left, 1 = right, -1 = other (none, left+right, mid)
static int mouseButton (const Qt::ButtonState &buttonState);
QString m_text, m_description;
const char *m_name;
kpMainWindow *m_mainWindow;
bool m_began;
kpView *m_viewUnderStartPoint;
/*
* User Notifications (Status Bar)
*/
public:
// Returns "(Left|Right) click to cancel." where Left or Right is chosen
// depending on which one is the _opposite_ of <mouseButton>
static QString cancelUserMessage (int mouseButton);
QString cancelUserMessage () const;
QString userMessage () const;
void setUserMessage (const QString &userMessage = QString::null);
QPoint userShapeStartPoint () const;
QPoint userShapeEndPoint () const;
static int calculateLength (int start, int end);
void setUserShapePoints (const QPoint &startPoint = KP_INVALID_POINT,
const QPoint &endPoint = KP_INVALID_POINT,
bool setSize = true);
QSize userShapeSize () const;
int userShapeWidth () const;
int userShapeHeight () const;
void setUserShapeSize (const QSize &size = KP_INVALID_SIZE);
void setUserShapeSize (int width, int height);
signals:
void userMessageChanged (const QString &userMessage);
void userShapePointsChanged (const QPoint &startPoint = KP_INVALID_POINT,
const QPoint &endPoint = KP_INVALID_POINT);
void userShapeSizeChanged (const QSize &size);
void userShapeSizeChanged (int width, int height);
protected:
QString m_userMessage;
QPoint m_userShapeStartPoint, m_userShapeEndPoint;
QSize m_userShapeSize;
public:
// Call this before the user tries to cause the document or selection
// to resize from <oldWidth>x<oldHeight> to <newWidth>x<newHeight>.
// If at least one dimension increases, the new dimensions will take a
// large amount of memory (which causes thrashing, instability) and
// the old dimensions did not take a large amount of memory, ask the
// user if s/he really wants to perform the operation.
//
// Returns true if the operation should proceed, false otherwise.
//
// In order to make the translators' lives possible, this function cannot
// generate the <text>,<caption> nor <continueButtonText> (without
// concantenating sentences and words with tense). However, it is
// recommended that you give them the following values:
//
// e.g.:
// text = i18n ("<qt><p>(Rotating|Skewing) the (image|selection) to"
// " %1x%2 may take a substantial amount of memory."
// " This can reduce system"
// " responsiveness and cause other application resource"
// " problems.</p>").arg (newWidth, newHeight)
//
// "<p>Are you sure want to (rotate|skew) the"
// " (image|selection)?</p></qt>");
// caption = i18n ("Rotate (Image|Selection)?");
// continueButtonText = i18n ("Rotat&e (Image|Selection)");
static bool warnIfBigImageSize (int oldWidth, int oldHeight,
int newWidth, int newHeight,
const QString &text,
const QString &caption,
const QString &continueButtonText,
QWidget *parent);
protected:
// There is no need to maintain binary compatibility at this stage.
// The d-pointer is just so that you can experiment without recompiling
// the kitchen sink.
class kpToolPrivate *d;
};
#endif // __kp_tool_h__