blob: f2a006be48fe0dd721a4f77c646899c6a2673971 (
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
|
/* ============================================================
*
* Copyright 2004-2005 by Gilles Caulier (original work as digikam curveswidget)
* Copyright 2005 by Casper Boemann (reworked to be generic)
*
* 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, 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.
*
* ============================================================ */
#ifndef KCURVE_H
#define KCURVE_H
// TQt includes.
#include <tqwidget.h>
#include <tqcolor.h>
#include <tqpair.h>
#include <tqsortedlist.h>
#include <koffice_export.h>
class KRITAUI_EXPORT KCurve : public TQWidget
{
Q_OBJECT
public:
KCurve(TQWidget *parent = 0, const char *name = 0, WFlags f = 0);
virtual ~KCurve();
void reset(void);
void setCurveGuide(TQColor color);
void setPixmap(TQPixmap pix);
signals:
void modified(void);
protected:
void keyPressEvent(TQKeyEvent *);
void paintEvent(TQPaintEvent *);
void mousePressEvent (TQMouseEvent * e);
void mouseReleaseEvent ( TQMouseEvent * e );
void mouseMoveEvent ( TQMouseEvent * e );
void leaveEvent ( TQEvent * );
public:
static double getCurveValue(TQPtrList<TQPair<double,double> > &curve, double x);
double getCurveValue(double x);
TQPtrList<TQPair<double,double> > getCurve();
void setCurve(TQPtrList<TQPair<double,double> >inlist);
private:
double m_leftmost;
double m_rightmost;
TQPair<double,double> *m_grab_point;
bool m_dragging;
double m_grabOffsetX;
double m_grabOffsetY;
bool m_readOnlyMode;
bool m_guideVisible;
TQColor m_colorGuide;
TQPtrList<TQPair<double,double> > m_points;
TQPixmap *m_pix;
};
#endif /* KCURVE_H */
|