summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/kernel/tqbitmap.cpp
blob: e44b37e61c10e7f27fa270e4296795bf2a4ebc49 (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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
/****************************************************************************
**
** Implementation of TQBitmap class
**
** Created : 941020
**
** Copyright (C) 2010 Timothy Pearson and (C) 1992-2008 Trolltech ASA.
**
** This file is part of the kernel module of the TQt GUI Toolkit.
**
** This file may be used under the terms of the GNU General
** Public License versions 2.0 or 3.0 as published by the Free
** Software Foundation and appearing in the files LICENSE.GPL2
** and LICENSE.GPL3 included in the packaging of this file.
** Alternatively you may (at your option) use any later version
** of the GNU General Public License if such license has been
** publicly approved by Trolltech ASA (or its successors, if any)
** and the KDE Free TQt Foundation.
**
** Please review the following information to ensure GNU General
** Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/.
** If you are unsure which license is appropriate for your use, please
** review the following information:
** http://trolltech.com/products/qt/licenses/licensing/licensingoverview
** or contact the sales department at sales@trolltech.com.
**
** This file may be used under the terms of the Q Public License as
** defined by Trolltech ASA and appearing in the file LICENSE.TQPL
** included in the packaging of this file.  Licensees holding valid TQt
** Commercial licenses may use this file in accordance with the TQt
** Commercial License Agreement provided with the Software.
**
** This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE. Trolltech reserves all rights not granted
** herein.
**
**********************************************************************/

#include "tqbitmap.h"
#include "tqimage.h"

#ifdef USE_QT4

TQBitmap::TQBitmap() : QBitmap() {
}

TQBitmap::TQBitmap( int w, int h,  bool clear, TQPixmap::Optimization o ) : QBitmap( w, h ) {
	TQ_UNUSED(o);
	if (clear)
		QBitmap::clear();
}

TQBitmap::TQBitmap( const QSize &s, bool clear, TQPixmap::Optimization o ) : QBitmap( s ) {
	TQ_UNUSED(o);
	if (clear)
		QBitmap::clear();
}

TQBitmap::TQBitmap( int w, int h,  const uchar *bits, bool isXbitmap ) : QBitmap( QBitmap::fromData ( QSize(w, h), bits, (isXbitmap)?QImage::Format_MonoLSB:QImage::Format_Mono ) ) {
}

TQBitmap::TQBitmap( const QSize &s, const uchar *bits, bool isXbitmap ) : QBitmap( QBitmap::fromData ( s, bits, (isXbitmap)?QImage::Format_MonoLSB:QImage::Format_Mono ) ) {
}

TQBitmap::TQBitmap( const QBitmap &b ) : QBitmap( b ) {
}

#ifndef TQT_NO_IMAGEIO
TQBitmap::TQBitmap( const QString &fileName, const char *format ) : QBitmap( fileName, format ) {
}
#endif

QImage TQBitmap::convertToImage() const {
	return toImage();
}

bool TQBitmap::convertFromImage(const QImage &img, int flags) {
	return QPixmap::convertFromImage(img, (Qt::ImageConversionFlag)flags);
}

TQBitmap TQBitmap::xForm(const QMatrix &matrix) const {
	return transformed(QTransform(matrix));
}

void TQBitmap::resize(const QSize &s) {
	resize_helper(s);
}

void TQBitmap::resize(int width, int height) {
	resize_helper(QSize(width, height));
}

// void TQBitmap::resize_helper(const QSize &s)
// {
//     int w = s.width();
//     int h = s.height();
//     if (w < 1 || h < 1) {
//         *this = TQBitmap();
//         return;
//     }
// 
//     *this = TQBitmap(copy(0, 0, w, h));
// }

void TQBitmap::resize_helper(const QSize s)
{
    int w = s.width();
    int h = s.height();

    if (w < 1 || h < 1) {
        *this = TQBitmap();
        return;
    }

    if (size() == s)
        return;

    TQBitmap pm(QSize(w, h));
    if (!isNull()) {
        // Copy old bitmap
        pm.fill(Qt::color0);
        QPainter p(&pm);
        p.setBrush(Qt::color1);
        p.drawPixmap(0, 0, *this, 0, 0, qMin(width(), w), qMin(height(), h));
        p.end();
    }

    // Mask too....
    if (!QBitmap::mask().isNull()) {
        TQBitmap m = QBitmap::mask();
        if (m.size() != QSize(w,h)) {
            TQBitmap pmr(QSize(w, h));
            pmr.fill(Qt::color0);
            QPainter pr(&pmr);
            pr.setBrush(Qt::color1);
            pr.drawPixmap(0, 0, m, 0, 0, qMin(m.width(), w), qMin(m.height(), h));
            pr.end();
            pm.setMask(pmr);
        }
        else {
            pm.setMask(m);
        }
    }

    // [FIXME]
    // Note that the Xorg pixmap and/or gc (if any) is not created via the above process
    // Therefore resize is more of a copy operation than a true resize
    #warning TQPixmap::resize() partially implemented

    *this = pm;
}

// This is the only correct way to return a pointer to an object returned by another function
const TQBitmap *TQBitmap::mask() const {
	const QBitmap& ptrRef = QBitmap::mask();
	if (ptrRef.isNull() == true) {
		return 0;
	}
	return static_cast<const TQBitmap*>(&ptrRef);
}

TQBitmap TQBitmap::operator=( const TQPixmap &pixmap )
{
	return TQBitmap(QBitmap::operator=(pixmap));
}

TQBitmap &TQBitmap::operator=( const TQImage &image )
{
	convertFromImage( image );
	return *this;
}

#else // USE_QT4

/*!
    \class TQBitmap tqbitmap.h
    \brief The TQBitmap class provides monochrome (1-bit depth) pixmaps.

    \ingroup graphics
    \ingroup images
    \ingroup shared

    The TQBitmap class is a monochrome off-screen paint tqdevice used
    mainly for creating custom TQCursor and TQBrush objects, in
    TQPixmap::setMask() and for TQRegion.

    A TQBitmap is a TQPixmap with a \link TQPixmap::depth() depth\endlink
    of 1. If a pixmap with a depth greater than 1 is assigned to a
    bitmap, the bitmap will be dithered automatically. A TQBitmap is
    guaranteed to always have the depth 1, unless it is
    TQPixmap::isNull() which has depth 0.

    When drawing in a TQBitmap (or TQPixmap with depth 1), we recommend
    using the  TQColor objects \c TQt::color0 and \c TQt::color1.
    Painting with \c color0 sets the bitmap bits to 0, and painting
    with \c color1 sets the bits to 1. For a bitmap, 0-bits indicate
    background (or transparent) and 1-bits indicate foreground (or
    opaque). Using the \c black and \c white TQColor objects make no
    sense because the TQColor::pixel() value is not necessarily 0 for
    black and 1 for white.

    The TQBitmap can be transformed (translated, scaled, sheared or
    rotated) using xForm().

    Just like the TQPixmap class, TQBitmap is optimized by the use of
    \link shclass.html implicit sharing\endlink, so it is very
    efficient to pass TQBitmap objects as arguments.

    \sa TQPixmap, TQPainter::drawPixmap(), bitBlt(), \link shclass.html Shared Classes\endlink
*/


/*!
    Constructs a null bitmap.

    \sa TQPixmap::isNull()
*/

TQBitmap::TQBitmap()
{
    data->bitmap = TRUE;
}


/*!
    Constructs a bitmap with width \a w and height \a h.

    The contents of the bitmap is uninitialized if \a clear is FALSE;
    otherwise it is filled with pixel value 0 (the TQColor \c
    TQt::color0).

    The optional \a optimization argument specifies the optimization
    setting for the bitmap. The default optimization should be used in
    most cases. Games and other pixmap-intensive applications may
    benefit from setting this argument; see \l{TQPixmap::Optimization}.

    \sa TQPixmap::setOptimization(), TQPixmap::setDefaultOptimization()
*/

TQBitmap::TQBitmap( int w, int h, bool clear,
		  TQPixmap::Optimization optimization )
    : TQPixmap( w, h, 1, optimization )
{
    data->bitmap = TRUE;
    if ( clear )
	fill( TQt::color0 );
}


/*!
    \overload

    Constructs a bitmap with the size \a size.

    The contents of the bitmap is uninitialized if \a clear is FALSE;
    otherwise it is filled with pixel value 0 (the TQColor \c
    TQt::color0).

    The optional \a optimization argument specifies the optimization
    setting for the bitmap. The default optimization should be used in
    most cases. Games and other pixmap-intensive applications may
    benefit from setting this argument; see \l{TQPixmap::Optimization}.
*/

TQBitmap::TQBitmap( const TQSize &size, bool clear,
		  TQPixmap::Optimization optimization )
    : TQPixmap( size, 1, optimization )
{
    data->bitmap = TRUE;
    if ( clear )
	fill( TQt::color0 );
}


/*!
    Constructs a bitmap with width \a w and height \a h and sets the
    contents to \a bits.

    The \a isXbitmap flag should be TRUE if \a bits was generated by
    the X11 bitmap program. The X bitmap bit order is little endian.
    The TQImage documentation discusses bit order of monochrome images.

    Example (creates an arrow bitmap):
    \code
	uchar arrow_bits[] = { 0x3f, 0x1f, 0x0f, 0x1f, 0x3b, 0x71, 0xe0, 0xc0 };
	TQBitmap bm( 8, 8, arrow_bits, TRUE );
    \endcode
*/

TQBitmap::TQBitmap( int w, int h, const uchar *bits, bool isXbitmap )
    : TQPixmap( w, h, bits, isXbitmap )
{
    data->bitmap = TRUE;
}


/*!
    \overload

    Constructs a bitmap with the size \a size and sets the contents to
    \a bits.

    The \a isXbitmap flag should be TRUE if \a bits was generated by
    the X11 bitmap program. The X bitmap bit order is little endian.
    The TQImage documentation discusses bit order of monochrome images.
*/

TQBitmap::TQBitmap( const TQSize &size, const uchar *bits, bool isXbitmap )
    : TQPixmap( size.width(), size.height(), bits, isXbitmap )
{
    data->bitmap = TRUE;
}


/*!
    Constructs a bitmap that is a copy of \a bitmap.
*/

TQBitmap::TQBitmap( const TQBitmap &bitmap )
    : TQPixmap( bitmap )
{
}

#ifndef TQT_NO_IMAGEIO
/*!
    Constructs a bitmap from the file \a fileName. If the file does
    not exist or is of an unknown format, the bitmap becomes a null
    bitmap.

    The parameters \a fileName and \a format are passed on to
    TQPixmap::load(). Dithering will be performed if the file format
    uses more than 1 bit per pixel.

    \sa TQPixmap::isNull(), TQPixmap::load(), TQPixmap::loadFromData(),
    TQPixmap::save(), TQPixmap::imageFormat()
*/

TQBitmap::TQBitmap( const TQString& fileName, const char *format )
    : TQPixmap() // Will set bitmap to null bitmap, explicit call for clarity
{
    data->bitmap = TRUE;
    load( fileName, format, Mono );
}
#endif

/*!
    Assigns the bitmap \a bitmap to this bitmap and returns a
    reference to this bitmap.
*/

TQBitmap &TQBitmap::operator=( const TQBitmap &bitmap )
{
    TQPixmap::operator=(bitmap);
#if defined(TQT_CHECK_STATE)
    TQ_ASSERT( data->bitmap );
#endif
    return *this;
}


/*!
    \overload

    Assigns the pixmap \a pixmap to this bitmap and returns a
    reference to this bitmap.

    Dithering will be performed if the pixmap has a TQPixmap::depth()
    greater than 1.
*/

TQBitmap &TQBitmap::operator=( const TQPixmap &pixmap )
{
    if ( pixmap.isNull() ) {			// a null pixmap
	TQBitmap bm( 0, 0, FALSE, pixmap.optimization() );
	TQBitmap::operator=(bm);
    } else if ( pixmap.depth() == 1 ) {		// 1-bit pixmap
	if ( pixmap.isTQBitmap() ) {		// another TQBitmap
	    TQPixmap::operator=(pixmap);		// shallow assignment
	} else {				// not a TQBitmap, but 1-bit
	    TQBitmap bm( pixmap.size(), FALSE, pixmap.optimization() );
	    bitBlt( &bm, 0,0, &pixmap, 0,0,pixmap.width(),pixmap.height() );
	    TQBitmap::operator=(bm);
	}
    } else {					// n-bit depth pixmap
	TQImage image;
	image = pixmap;				// convert pixmap to image
	*this = image;				// will dither image
    }
    return *this;
}


/*!
    \overload

    Converts the image \a image to a bitmap and assigns the result to
    this bitmap. Returns a reference to the bitmap.

    Dithering will be performed if the image has a TQImage::depth()
    greater than 1.
*/

TQBitmap &TQBitmap::operator=( const TQImage &image )
{
    convertFromImage( image );
    return *this;
}


#ifndef TQT_NO_PIXMAP_TRANSFORMATION
/*!
    Returns a transformed copy of this bitmap by using \a matrix.

    This function does exactly the same as TQPixmap::xForm(), except
    that it returns a TQBitmap instead of a TQPixmap.

    \sa TQPixmap::xForm()
*/

TQBitmap TQBitmap::xForm( const TQWMatrix &matrix ) const
{
    TQPixmap pm = TQPixmap::xForm( matrix );
    TQBitmap bm;
    // Here we fake the pixmap to think it's a TQBitmap. With this trick,
    // the TQBitmap::operator=(const TQPixmap&) will just refer the
    // pm.data and we do not need to perform a bitBlt.
    pm.data->bitmap = TRUE;
    bm = pm;
    return bm;
}
#endif // TQT_NO_TRANSFORMATIONS

#endif // USE_QT4