/*
 *  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$
        QBrush()
    $CATEGORY$
        Harbour Bindings for Qt
    $SUBCATEGORY$
        GUI
    $EXTERNALLINK$
        http://doc.trolltech.com/4.5/qbrush.html
    $ONELINER$
        Creates a new QBrush object.
    $INHERITS$

    $SYNTAX$
        QBrush():new( ... )
        QBrush():from( pPtr_OR_oObj_of_type_QBrush )
        QBrush():configure( pPtr_OR_oObj_of_type_QBrush )
    $ARGUMENTS$

    $RETURNS$
        An instance of the object of type QBrush
    $METHODS$
        :color()                                            -> pQColor
        :isOpaque()                                         -> lBool
        :matrix()                                           -> pQMatrix
        :setColor( pColor )                                 -> NIL
        :setColor_1( nColor )                               -> NIL
        :setMatrix( pMatrix )                               -> NIL
        :setStyle( nStyle )                                 -> NIL
        :setTexture( pPixmap )                              -> NIL
        :setTextureImage( pImage )                          -> NIL
        :setTransform( pMatrix )                            -> NIL
        :style()                                            -> nQt::BrushStyle
        :texture()                                          -> pQPixmap
        :textureImage()                                     -> pQImage
        :transform()                                        -> pQTransform

    $DESCRIPTION$

    $EXAMPLES$
        oBrush := QBrush():new()
        oBrush := QBrush():new( pQBrush )
        oBrush := QBrush():new( nQt_GlobalColor )
        oBrush := QBrush():new( nQt_GlobalColor, nQt_BrushStyle )
        oBrush := QBrush():new( pQColor, nQt_BrushStyle )
        oBrush := QBrush():new( pQColor, pQPixmap )
        oBrush := QBrush():new( nQt_GlobalColor, pQPixmap )
        oBrush := QBrush():new( "QPixmap"  , pQPixmap )
        oBrush := QBrush():new( "QImage"   , pQImage )
        oBrush := QBrush():new( "QGradient", pQGradient )
        oBrush := QBrush():new( "QColor"   , pQColor, [ nQt_BrushStyle = Qt_SolidPattern ] )

    $TESTS$

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

    $END$
 */
