Source Code (Use browser search to find items of interest.)

Class Index

killustrator'WinObjBrushHandle (./koffice/killustrator/share/qwmf.cc:58)

class WinObjBrushHandle: public WinObjHandle
{
public:
  virtual void apply(QPainter& p);
  QBrush brush;
};


killustrator'WinObjBrushHandle::apply() (./koffice/killustrator/share/qwmf.cc:72)

void WinObjBrushHandle::apply(QPainter& p)
{
  QPen pen;
  pen.setColor(brush.color());

  p.setBrush(brush);
  p.setPen(pen);
}