summaryrefslogtreecommitdiffstats
path: root/karbon/tools/vgradienttool.h
blob: 19117c844019ddb7f5aaab8d58c9f6b0c9f9cab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* This file is part of the KDE project
   Copyright (C) 2001, 2002, 2003 The Karbon Developers

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library 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
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#ifndef __VGRADIENTTOOL_H__
#define __VGRADIENTTOOL_H__

#include <kdialogbase.h>

#include "vtool.h"
#include "vgradient.h"
#include "KoRect.h"

class VGradientTabWidget;

class VGradientTool : public VTool
{
	TQ_OBJECT
  

public:
	VGradientTool( KarbonView *view );
	virtual ~VGradientTool();

	virtual void activate();
	virtual void deactivate();

	virtual void setup(TDEActionCollection *collection);
	virtual TQString uiname() { return i18n( "Gradient Tool" ); }
	virtual TQString statusText();

	virtual TQString contextHelp();
	virtual bool showDialog() const;

	virtual void draw( VPainter* painter );

protected:

	virtual void draw();
	virtual void mouseButtonRelease();
	virtual void mouseButtonPress();
	virtual void mouseDragRelease();
	virtual void mouseDrag();
	virtual void cancel();
	virtual void setCursor() const;
	virtual bool keyReleased( TQt::Key key );

	/**
	 * Determines the actual gradient to be edited.
	 *
	 * @param gradient the found gradient
	 * @return true if gradient was found, else false
	 */
	bool getGradient( VGradient &gradient );

	bool getOpacity( double &opacity );

protected slots:
	void targetChanged();

private:
	enum { normal, moveOrigin, moveVector, moveCenter, createNew } m_state;

	class VGradientOptionsWidget : public KDialogBase
	{
	public:
		VGradientOptionsWidget( VGradient& gradient );
		VGradientTabWidget *gradientWidget() { return m_gradientWidget; }
	private:
		VGradientTabWidget *m_gradientWidget;
	};
	VGradient            m_gradient; /**< the actual gradient */
	KoPoint              m_current;  /**< the current position when dragging */
	KoPoint              m_fixed;    /**< the fixed point when only dragging one point of the gradient vector */
	VGradientOptionsWidget*  m_optionsWidget; /**< the options dialog, for editing gradients */
	KoRect               m_origin;   /**< the handle of the gradient origin */
	KoRect               m_vector;   /**< the handle of the gradient vector */
	KoRect               m_center;   /**< the handle of the radial gradient focal point */
	int                  m_handleSize; /**< the handle's size */
	bool                 m_active;   /**< holds active state of the tool, which is used for drawing of the gradient vector */
};

#endif