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
|
/* ============================================================
*
* This file is a part of digiKam project
* http://www.digikam.org
*
* Date : 2005-02-14
* Description : a widget to insert a text over an image.
*
* Copyright (C) 2005-2007 by Gilles Caulier <caulier dot gilles at gmail dot com>
* Copyright (C) 2006-2007 by Marcel Wiesweg <marcel dot wiesweg at gmx dot de>
*
* 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 INSERTTEXTWIDGET_H
#define INSERTTEXTWIDGET_H
// TQt includes.
#include <tqwidget.h>
#include <tqimage.h>
#include <tqrect.h>
#include <tqsize.h>
#include <tqpixmap.h>
#include <tqstring.h>
#include <tqfont.h>
#include <tqcolor.h>
// KDE includes.
#include <kurl.h>
// Digikam includes.
#include "dimg.h"
class TQPixmap;
namespace Digikam
{
class ImageIface;
}
namespace DigikamInsertTextImagesPlugin
{
enum Action
{
ALIGN_LEFT=0,
ALIGN_RIGHT,
ALIGN_CENTER,
ALIGN_BLOCK,
BORDER_TEXT,
TRANSPARENT_TEXT
};
enum TextRotation
{
ROTATION_NONE=0,
ROTATION_90,
ROTATION_180,
ROTATION_270
};
enum BorderMode
{
BORDER_NONE,
BORDER_SUPPORT,
BORDER_NORMAL
};
class InsertTextWidget : public TQWidget
{
TQ_OBJECT
public:
InsertTextWidget(int w, int h, TQWidget *parent=0);
~InsertTextWidget();
Digikam::ImageIface* imageIface();
Digikam::DImg makeInsertText(void);
void setText(TQString text, TQFont font, TQColor color, int alignMode,
bool border, bool transparent, int rotation);
void resetEdit(void);
void setPositionHint(TQRect hint);
TQRect getPositionHint();
protected:
void paintEvent(TQPaintEvent *e);
void resizeEvent(TQResizeEvent * e);
void mousePressEvent(TQMouseEvent * e);
void mouseReleaseEvent(TQMouseEvent * e);
void mouseMoveEvent(TQMouseEvent * e);
void makePixmap(void);
TQRect composeImage(Digikam::DImg *image, TQPainter *destPainter,
int x, int y,
TQFont font, float pointSize, int textRotation, TQColor textColor,
int alignMode, const TQString &textString,
bool transparentBackground, TQColor backgroundColor,
BorderMode borderMode, int borderWidth, int spacing);
private:
bool m_currentMoving;
bool m_textBorder;
bool m_textTransparent;
int m_alignMode;
int m_textRotation;
uchar *m_data;
int m_w;
int m_h;
int m_xpos;
int m_ypos;
int m_transparency;
TQPixmap *m_pixmap;
TQRect m_rect;
TQRect m_textRect;
TQString m_textString;
TQFont m_textFont;
TQColor m_textColor;
TQColor m_backgroundColor;
TQRect m_positionHint;
Digikam::ImageIface *m_iface;
};
} // NameSpace DigikamInsertTextImagesPlugin
#endif /* INSERTTEXTWIDGET_H */
|