This is the verbatim text of the qpen.h include file. It is is provided only for illustration; the copyright remains with Troll Tech


/****************************************************************************
** $Id: qpen.h,v 2.1 1996/11/22 18:31:53 agulbra Exp $
**
** Definition of QPen class
**
** Created : 940112
**
** Copyright (C) 1994-1996 by Troll Tech AS.  All rights reserved.
**
*****************************************************************************/

#ifndef QPEN_H
#define QPEN_H

#include "qcolor.h"
#include "qshared.h"


enum PenStyle { NoPen, SolidLine, DashLine,     // pen style
                DotLine, DashDotLine, DashDotDotLine };


class QPen
{
friend class QPainter;
public:
    QPen();
    QPen( PenStyle );
    QPen( const QColor &color, uint width=0, PenStyle style=SolidLine );
    QPen( const QPen & );
   ~QPen();
    QPen &operator=( const QPen & );

    PenStyle    style() const           { return data->style; }
    void        setStyle( PenStyle );
    uint        width() const           { return data->width; }
    void        setWidth( uint );
    const QColor &color() const         { return data->color; }
    void        setColor( const QColor & );

    bool        operator==( const QPen &p ) const;
    bool        operator!=( const QPen &p ) const
                                        { return !(operator==(p)); }

private:
    QPen        copy()  const;
    void        detach();
    void        init( const QColor &, uint, PenStyle );
    struct QPenData : public QShared {          // pen data
        PenStyle  style;
        uint      width;
        QColor    color;
    } *data;
};


/*****************************************************************************
  QPen stream functions
 *****************************************************************************/

QDataStream &operator<<( QDataStream &, const QPen & );
QDataStream &operator>>( QDataStream &, QPen & );


#endif // QPEN_H


Generated at 17:29, 1997/04/07 for Qt version 1.2 by the webmaster at Troll Tech