summaryrefslogtreecommitdiffstats
path: root/kolourpaint/kpselection.h
blob: a227fef2af52156097d2edfa88a3fdead2ba6176 (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238

/*
   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 __kpselection_h__
#define __kpselection_h__

#include <tqbitmap.h>
#include <tqdatastream.h>
#include <tqobject.h>
#include <tqpixmap.h>
#include <tqpoint.h>
#include <tqpointarray.h>
#include <tqvaluevector.h>
#include <tqrect.h>
#include <tqstring.h>

#include <kpcolor.h>
#include <kppixmapfx.h>
#include <kpselectiontransparency.h>
#include <kptextstyle.h>


class TQSize;


/*
 * Holds a selection - will also be used for the clipboard
 * so that we can retain the border.
 */
class kpSelection : public TQObject
{
Q_OBJECT
  TQ_OBJECT

public:
    enum Type
    {
        Rectangle,
        Ellipse,
        Points,
        Text
    };

    // (for any)
    kpSelection (const kpSelectionTransparency &transparency = kpSelectionTransparency ());

    // (for Rectangle & Ellipse)
    kpSelection (Type type, const TQRect &rect, const TQPixmap &pixmap = TQPixmap (),
                 const kpSelectionTransparency &transparency = kpSelectionTransparency ());
    kpSelection (Type type, const TQRect &rect, const kpSelectionTransparency &transparency);

    // (for Text)
    kpSelection (const TQRect &rect, const TQValueVector <TQString> &textLines_, const kpTextStyle &textStyle_);

    // (for Points)
    kpSelection (const TQPointArray &points, const TQPixmap &pixmap = TQPixmap (),
                 const kpSelectionTransparency &transparency = kpSelectionTransparency ());
    kpSelection (const TQPointArray &points, const kpSelectionTransparency &transparency);

    kpSelection (const kpSelection &rhs);
    kpSelection &operator= (const kpSelection &rhs);
    friend TQDataStream &operator<< (TQDataStream &stream, const kpSelection &selection);
    friend TQDataStream &operator>> (TQDataStream &stream, kpSelection &selection);
    void readFromStream (TQDataStream &stream,
                         const kpPixmapFX::WarnAboutLossInfo &wali =
                             kpPixmapFX::WarnAboutLossInfo ());
    ~kpSelection ();

private:
    void calculatePoints ();

public:
    Type type () const;
    bool isRectangular () const;
    bool isText () const;
    // returns either i18n ("Selection") or i18n ("Text")
    TQString name () const;

    int size () const;

    TQBitmap maskForOwnType (bool nullForRectangular = false) const;

    // synonyms
    TQPoint topLeft () const;
    TQPoint point () const;

    int x () const;
    int y () const;

    void moveBy (int dx, int dy);
    void moveTo (int dx, int dy);
    void moveTo (const TQPoint &topLeftPoint);

    // synonyms
    TQPointArray points () const;
    TQPointArray pointArray () const;

    TQRect boundingRect () const;
    int width () const;
    int height () const;


    // (for non-rectangular selections, may return false even if
    //  kpView::onSelectionResizeHandle())
    bool contains (const TQPoint &point) const;
    bool contains (int x, int y);


    // (Avoid using for text selections since text selection may
    //  require a background for antialiasing purposes - use paint()
    //  instead, else no antialising)
    TQPixmap *pixmap () const;
    void setPixmap (const TQPixmap &pixmap);

    bool usesBackgroundPixmapToPaint () const;

private:
    void paintOpaqueText (TQPixmap *destPixmap, const TQRect &docRect) const;
    TQPixmap transparentForegroundTextPixmap () const;

public:
    // (<docRect> is the document rectangle that <*destPixmap> represents)
    void paint (TQPixmap *destPixmap, const TQRect &docRect) const;

private:
    void calculateTextPixmap ();

public:
    static TQString textForTextLines (const TQValueVector <TQString> &textLines_);
    TQString text () const;  // textLines() as one long string
    TQValueVector <TQString> textLines () const;
    void setTextLines (const TQValueVector <TQString> &textLines_);

    static int textBorderSize ();
    TQRect textAreaRect () const;
    bool pointIsInTextBorderArea (const TQPoint &globalPoint) const;
    bool pointIsInTextArea (const TQPoint &globalPoint) const;


    void textResize (int width, int height);

    // TODO: Enforce in kpSelection, not just in kpToolSelection & when pasting
    //       (in kpMainWindow).
    //       Be more robust when external enforcement fails.
    static int minimumWidthForTextStyle (const kpTextStyle &);
    static int minimumHeightForTextStyle (const kpTextStyle &);
    static TQSize minimumSizeForTextStyle (const kpTextStyle &);

    static int preferredMinimumWidthForTextStyle (const kpTextStyle &textStyle);
    static int preferredMinimumHeightForTextStyle (const kpTextStyle &textStyle);
    static TQSize preferredMinimumSizeForTextStyle (const kpTextStyle &textStyle);

    int minimumWidth () const;
    int minimumHeight () const;
    TQSize minimumSize () const;

    int textRowForPoint (const TQPoint &globalPoint) const;
    int textColForPoint (const TQPoint &globalPoint) const;
    TQPoint pointForTextRowCol (int row, int col);

    kpTextStyle textStyle () const;
    void setTextStyle (const kpTextStyle &textStyle);

    // TODO: ret val inconstent with pixmap()
    //       - fix when merge with kpTempPixmap
    TQPixmap opaquePixmap () const;  // same as pixmap()

private:
    void calculateTransparencyMask ();

public:
    // Returns opaquePixmap() after applying kpSelectionTransparency
    TQPixmap transparentPixmap () const;

    kpSelectionTransparency transparency () const;
    // Returns whether or not the selection changed due to setting the
    // transparency info.  If <checkTransparentPixmapChanged> is set,
    // it will try harder to return false (although the check is
    // expensive).
    bool setTransparency (const kpSelectionTransparency &transparency,
                          bool checkTransparentPixmapChanged = false);

private:
    void flipPoints (bool horiz, bool vert);

public:
    void flip (bool horiz, bool vert);

signals:
    void changed (const TQRect &docRect);

private:
    // OPT: use implicit sharing

    Type m_type;
    TQRect m_rect;
    TQPointArray m_points;
    TQPixmap *m_pixmap;

    TQValueVector <TQString> m_textLines;
    kpTextStyle m_textStyle;

    kpSelectionTransparency m_transparency;
    TQBitmap m_transparencyMask;

private:
    // 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 kpSelectionPrivate *d;
};

#endif  // __kpselection_h__