Source Code (Use browser search to find items of interest.)
Class Index
kpresenter'WinObjBrushHandle (./koffice/kpresenter/qwmf.cc:58)
class WinObjBrushHandle: public WinObjHandle
{
public:
virtual void apply( QPainter& p );
QBrush brush;
virtual ~WinObjBrushHandle() {};
};
kpresenter'WinObjBrushHandle::~WinObjBrushHandle() (./koffice/kpresenter/qwmf.cc:63)
virtual ~WinObjBrushHandle() {};
};
kpresenter'WinObjBrushHandle::apply() (./koffice/kpresenter/qwmf.cc:74)
void WinObjBrushHandle::apply( QPainter& p )
{
QPen pen;
pen.setColor( brush.color() );
p.setBrush( brush );
p.setPen( pen );
}