source: trunk/doc/src/snippets/alphachannel.cpp@ 568

Last change on this file since 568 was 561, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.6.1 sources.

File size: 3.3 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the documentation of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include <qapplication.h>
43#include <qlabel.h>
44#include <qpixmap.h>
45#include <qprinter.h>
46#include <qpainter.h>
47#include <qfile.h>
48#include <qdir.h>
49#include <qfileinfo.h>
50#include <QtGui>
51#include <QtCore>
52
53class MyClass : public QWidget
54{
55public:
56 MyClass(QWidget *parent = 0) : QWidget(parent) { }
57
58protected:
59 void paintEvent(QPaintEvent *e)
60 {
61 /*QRadialGradient rg(50, 50, 50, 50, 50);
62 rg.setColorAt(0, QColor::fromRgbF(1, 0, 0, 1));
63 rg.setColorAt(1, QColor::fromRgbF(0, 0, 0, 0));
64 QPainter pmp(&pm);
65 pmp.fillRect(0, 0, 100, 100, rg);
66 pmp.end();*/
67
68 createImage();
69
70 QPainter p(this);
71 p.fillRect(rect(), Qt::white);
72
73 p.drawPixmap(0, 0, pixmap);
74
75 p.drawPixmap(100, 0, channelImage);
76 }
77
78 void createImage()
79 {
80//! [0]
81 pixmap = QPixmap(100, 100);
82 pixmap.fill(Qt::transparent);
83
84 QRadialGradient gradient(50, 50, 50, 50, 50);
85 gradient.setColorAt(0, QColor::fromRgbF(1, 0, 0, 1));
86 gradient.setColorAt(1, QColor::fromRgbF(0, 0, 0, 0));
87 QPainter painter(&pixmap);
88 painter.fillRect(0, 0, 100, 100, gradient);
89
90 channelImage = pixmap.alphaChannel();
91 update();
92//! [0]
93 }
94
95 QPixmap channelImage, pixmap;
96 QSize sizeHint() const { return QSize(500, 500); }
97};
98
99int main(int argc, char **argv)
100{
101 QApplication app(argc, argv);
102
103 MyClass cl;
104 cl.show();
105 QObject::connect(&app, SIGNAL(lastWindowClosed()), &app, SLOT(quit()));
106
107 int ret = app.exec();
108 return ret;
109}
Note: See TracBrowser for help on using the repository browser.