/*
 *  hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
 *  Please do not modify this document as it is subject to change in future.
 *  Pritpal Bedi <bedipritpal@hotmail.com>
 */

/*  $DOC$
    $TEMPLATE$
        Class
    $NAME$
        QPen()
    $CATEGORY$
        Harbour Bindings for Qt
    $SUBCATEGORY$
        GUI
    $EXTERNALLINK$
        http://doc.trolltech.com/4.5/qpen.html
    $ONELINER$
        Creates a new QPen object.
    $INHERITS$

    $SYNTAX$
        QPen():new( ... )
        QPen():from( pPtr_OR_oObj_of_type_QPen )
        QPen():configure( pPtr_OR_oObj_of_type_QPen )
    $ARGUMENTS$

    $RETURNS$
        An instance of the object of type QPen
    $METHODS$
        :brush()                                            -> pQBrush
        :capStyle()                                         -> nQt::PenCapStyle
        :color()                                            -> pQColor
        :dashOffset()                                       -> nQreal
        :isCosmetic()                                       -> lBool
        :isSolid()                                          -> lBool
        :joinStyle()                                        -> nQt::PenJoinStyle
        :miterLimit()                                       -> nQreal
        :setBrush( pBrush )                                 -> NIL
        :setCapStyle( nStyle )                              -> NIL
        :setColor( pColor )                                 -> NIL
        :setCosmetic( lCosmetic )                           -> NIL
        :setDashOffset( nOffset )                           -> NIL
        :setJoinStyle( nStyle )                             -> NIL
        :setMiterLimit( nLimit )                            -> NIL
        :setStyle( nStyle )                                 -> NIL
        :setWidth( nWidth )                                 -> NIL
        :setWidthF( nWidth )                                -> NIL
        :style()                                            -> nQt::PenStyle
        :width()                                            -> nInt
        :widthF()                                           -> nQreal

    $DESCRIPTION$

    $EXAMPLES$
        oPen := QPen():new()
        oPen := QPen():new( pQPen_other )
        oPen := QPen():new( nQt_PenStyle )
        oPen := QPen():new( "QColor", pQColor )
        oPen := QPen():new( pQBrush, nWidth, [ nQt_PenStyle = Qt_SolidLine ], ;
                                             [ nQt_CapStyle = Qt_SquareCap ], ;
                                             [ nQt_PenJointStyle = Qt_BevelJoin ] )
        /* TODO
         * oPen := QPen():new( pQPen )
         */

    $TESTS$

    $STATUS$
        R
    $COMPLIANCE$
        Not Clipper Compatible
    $PLATFORMS$
        Windows, Linux, MacOS, OS2
    $VERSION$
        4.5.3
    $FILES$
        Prg Source   : contrib/hbqt/qtgui/TQPen.prg
        C++ Wrappers : contrib/hbqt/qtgui/QPen.cpp
        Library      : hbqtgui
    $SEEALSO$

    $END$
 */
