summaryrefslogtreecommitdiffstats
path: root/doc/html/picture-example.html
blob: 6734d4a17a7007d3dfda85372a0c82a07011852e (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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/examples/picture/picture.doc:4 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Picture</title>
<style type="text/css"><!--
fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none }
a:visited { color: #672967; text-decoration: none }
body { background: #ffffff; color: black; }
--></style>
</head>
<body>

<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr bgcolor="#E5E5E5">
<td valign=center>
 <a href="index.html">
<font color="#004faf">Home</font></a>
 | <a href="classes.html">
<font color="#004faf">All&nbsp;Classes</font></a>
 | <a href="mainclasses.html">
<font color="#004faf">Main&nbsp;Classes</font></a>
 | <a href="annotated.html">
<font color="#004faf">Annotated</font></a>
 | <a href="groups.html">
<font color="#004faf">Grouped&nbsp;Classes</font></a>
 | <a href="functions.html">
<font color="#004faf">Functions</font></a>
</td>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Picture</h1>

   
<p> 
This example shows how to make a picture, store it to a file, and read it as
a set of drawing commands.
<p> <hr>
<p> Implementation:
<p> <pre>/****************************************************************************
** $Id: qt/picture.cpp   3.3.8   edited Jan 11 14:37 $
**
** Copyright (C) 1992-2007 Trolltech ASA.  All rights reserved.
**
** This file is part of an example program for TQt.  This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/

#include &lt;<a href="qapplication-h.html">qapplication.h</a>&gt;
#include &lt;<a href="qpainter-h.html">qpainter.h</a>&gt;
#include &lt;<a href="qpicture-h.html">qpicture.h</a>&gt;
#include &lt;<a href="qpixmap-h.html">qpixmap.h</a>&gt;
#include &lt;<a href="qwidget-h.html">qwidget.h</a>&gt;
#include &lt;<a href="qmessagebox-h.html">qmessagebox.h</a>&gt;
#include &lt;<a href="qfile-h.html">qfile.h</a>&gt;
#include &lt;ctype.h&gt;


void paintCar( <a href="qpainter.html">TQPainter</a> *p )                    // paint a car
{
    <a href="qpointarray.html">TQPointArray</a> a;
    <a href="qbrush.html">TQBrush</a> brush( TQt::yellow, TQt::SolidPattern );
<a name="x120"></a>    p-&gt;<a href="qpainter.html#setBrush">setBrush</a>( brush );                       // use solid, yellow brush

<a name="x125"></a>    a.setPoints( 5, 50,50, 350,50, 450,120, 450,250, 50,250 );
<a name="x115"></a>    p-&gt;<a href="qpainter.html#drawPolygon">drawPolygon</a>( a );                        // draw car body

    <a href="qfont.html">TQFont</a> f( "courier", 12, TQFont::Bold );
<a name="x121"></a>    p-&gt;<a href="qpainter.html#setFont">setFont</a>( f );

    <a href="qcolor.html">TQColor</a> windowColor( 120, 120, 255 );        // a light blue color
<a name="x108"></a>    brush.<a href="qbrush.html#setColor">setColor</a>( windowColor );              // set this brush color
    p-&gt;<a href="qpainter.html#setBrush">setBrush</a>( brush );                       // set brush
<a name="x116"></a>    p-&gt;<a href="qpainter.html#drawRect">drawRect</a>( 80, 80, 250, 70 );             // car window
<a name="x117"></a>    p-&gt;<a href="qpainter.html#drawText">drawText</a>( 180, 80, 150, 70, TQt::AlignCenter, "--  TQt  --\nTrolltech AS" );

    <a href="qpixmap.html">TQPixmap</a> pixmap;
<a name="x124"></a>    if ( pixmap.<a href="qpixmap.html#load">load</a>("flag.bmp") )              // load and draw image
<a name="x114"></a>        p-&gt;<a href="qpainter.html#drawPixmap">drawPixmap</a>( 100, 85, pixmap );

<a name="x119"></a>    p-&gt;<a href="qpainter.html#setBackgroundMode">setBackgroundMode</a>( TQt::OpaqueMode );     // set opaque mode
    p-&gt;<a href="qpainter.html#setBrush">setBrush</a>( TQt::DiagCrossPattern );        // black diagonal cross pattern
<a name="x112"></a>    p-&gt;<a href="qpainter.html#drawEllipse">drawEllipse</a>( 90, 210, 80, 80 );          // back wheel
    p-&gt;<a href="qpainter.html#setBrush">setBrush</a>( TQt::CrossPattern );            // black cross fill pattern
    p-&gt;<a href="qpainter.html#drawEllipse">drawEllipse</a>( 310, 210, 80, 80 );         // front wheel
}


class PictureDisplay : public <a href="qwidget.html">TQWidget</a>           // picture display widget
{
public:
    PictureDisplay( const char *fileName );
   ~PictureDisplay();
protected:
    void        paintEvent( <a href="qpaintevent.html">TQPaintEvent</a> * );
    void        keyPressEvent( <a href="qkeyevent.html">TQKeyEvent</a> * );
private:
    <a href="qpicture.html">TQPicture</a>   *pict;
    <a href="qstring.html">TQString</a>     name;
};

<a name="f207"></a>PictureDisplay::PictureDisplay( const char *fileName )
{
    pict = new <a href="qpicture.html">TQPicture</a>;
    name = fileName;
<a name="x122"></a>    if ( !pict-&gt;<a href="qpicture.html#load">load</a>(fileName) ) {              // cannot load picture
        delete pict;
        pict = 0;
        name.<a href="qstring.html#sprintf">sprintf</a>( "Not able to load picture: %s", fileName );
    }
}

PictureDisplay::~PictureDisplay()
{
    delete pict;
}

void PictureDisplay::<a href="qwidget.html#paintEvent">paintEvent</a>( <a href="qpaintevent.html">TQPaintEvent</a> * )
{
    <a href="qpainter.html">TQPainter</a> paint( this );                     // paint widget
    if ( pict )
<a name="x113"></a>        paint.<a href="qpainter.html#drawPicture">drawPicture</a>( *pict );             // draw picture
    else
        paint.<a href="qpainter.html#drawText">drawText</a>( <a href="qwidget.html#rect">rect</a>(), AlignCenter, name );
}

<a name="x127"></a>void PictureDisplay::<a href="qwidget.html#keyPressEvent">keyPressEvent</a>( <a href="qkeyevent.html">TQKeyEvent</a> *k )
{
<a name="x109"></a>    switch ( tolower(k-&gt;<a href="qkeyevent.html#ascii">ascii</a>()) ) {
        case 'r':                               // reload
            pict-&gt;<a href="qpicture.html#load">load</a>( name );
            <a href="qwidget.html#update">update</a>();
            break;
        case 'q':                               // quit
<a name="x106"></a>            TQApplication::<a href="qapplication.html#exit">exit</a>();
            break;
    }
}


int main( int argc, char **argv )
{
    <a href="qapplication.html">TQApplication</a> a( argc, argv );               // TQApplication required!

    const char *fileName = "car.pic";           // default picture file name

    if ( argc == 2 )                            // use argument as file name
        fileName = argv[1];

    if ( !TQFile::exists(fileName) ) {
        <a href="qpicture.html">TQPicture</a> pict;                          // our picture
        <a href="qpainter.html">TQPainter</a> paint;                         // our painter

<a name="x111"></a>        paint.<a href="qpainter.html#begin">begin</a>( &amp;pict );                   // begin painting onto picture
        paintCar( &amp;paint );                     // paint!
<a name="x118"></a>        paint.<a href="qpainter.html#end">end</a>();                            // painting done

<a name="x123"></a>        pict.<a href="qpicture.html#save">save</a>( fileName );                  // save picture
<a name="x110"></a>        TQMessageBox::<a href="qmessagebox.html#information">information</a>(0, "TQt Example - Picture", "Saved.  Run me again!");
        return 0;
    } else {
        PictureDisplay test( fileName );        // create picture display
        a.<a href="qapplication.html#setMainWidget">setMainWidget</a>( &amp;test);                // set main widget
        test.<a href="qwidget.html#setCaption">setCaption</a>("TQt Example - Picture");
        test.<a href="qwidget.html#show">show</a>();                            // show it

        return a.<a href="qapplication.html#exec">exec</a>();                        // start event loop
    }
}
</pre>

<p>See also <a href="examples.html">Examples</a>.

<!-- eof -->
<p><address><hr><div align=center>
<table width=100% cellspacing=0 border=0><tr>
<td>Copyright &copy; 2007
<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a>
<td align=right><div align=right>TQt 3.3.8</div>
</table></div></address></body>
</html>