Äîêóìåíò âçÿò èç êýøà ïîèñêîâîé ìàøèíû. Àäðåñ
îðèãèíàëüíîãî äîêóìåíòà
: http://rtm-cs.sinp.msu.ru/manual/qt/qpen.html
Äàòà èçìåíåíèÿ: Sun Jul 12 02:58:58 1998 Äàòà èíäåêñèðîâàíèÿ: Mon Oct 1 19:50:21 2012 Êîäèðîâêà: |
The QPen class defines how a QPainter should draw lines and outlines of shapes. More...
#include <qpen.h>
A pen has a style, a width and a color.
The pen style defines the line type. The default pen style is SolidPen.
Setting the style to NoPen
tells the painter to not draw lines or
outlines.
The pen width defines the line width. The default line width is 0, which draws a 1-pixel line very fast, but with lower presicion than with a line width of 1. Setting the line width to 1 or more draws lines that are precise, but drawing is slower.
The pen color defines the color of lines and text. The default line color is black. The QColor documentation lists predefined colors.
Use the QBrush class for specifying fill styles.
Example:
QPainter painter; QPen pen( red, 2 ); // red solid line, 2 pixel width painter.begin( &anyPaintDevice ); // paint something painter.setPen( pen ); // set the red, fat pen painter.drawRect( 40,30, 200,100 ); // draw rectangle painter.setPen( blue ); // set blue pen, 0 pixel width painter.drawLine( 40,30, 240,130 ); // draw diagonal in rectangle painter.end(); // painting done
See the setStyle() function for a complete list of pen styles.
See also: QPainter and QPainter::setPen().
Examples: tictac/tictac.cpp desktop/desktop.cpp progress/progress.cpp
Constructs a default black solid line pen with 0 width.
Constructs a pen black with 0 width and a specified style.
See also: setStyle().
Constructs a pen with a specified color, width and style.
See also: setWidth(), setStyle() and setColor().
Constructs a pen which is a copy of p.
Destroys the pen.
Returns the pen color.
See also: setColor().
Returns TRUE if the pen is different from p, or FALSE if the pens are equal.
Two pens are different if they have different styles, widths or colors.
See also: operator==().
Assigns c to this pen and returns a reference to this pen.
Returns TRUE if the pen is equal to p, or FALSE if the pens are different.
Two pens are equal if they have equal styles, widths and colors.
See also: operator!=().
Sets the pen color to c.
See also: color().
Examples: progress/progress.cpp
Sets the pen style to s.
The pen styles are:
NoPen
no outline is drawn.
SolidLine
solid line (default).
DashLine
- - - (dashes) line.
DotLine
* * * (dots) line.
DashDotLine
- * - * line.
DashDotDotLine
- ** - ** line.
See also: style().
Sets the pen width to w.
See also: width().
Examples: progress/progress.cpp
Returns the pen style.
See also: setStyle().
Returns the pen width.
See also: setWidth().
Writes a pen to the stream and returns a reference to the stream.
The serialization format is:
Reads a pen from the stream and returns a reference to the stream.
Search the documentation, FAQ, qt-interest archive and more (uses
www.troll.no):
This file is part of the Qt toolkit, copyright © 1995-98 Troll Tech, all rights reserved.
It was generated from the following files:
Copyright © 1998 Troll Tech | Trademarks | Qt version 1.40
|