• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/

Lines Matching refs:brush

265     wxCairoBrushData( wxGraphicsRenderer* renderer, const wxBrush &brush );
588 wxCairoBrushData::wxCairoBrushData( wxGraphicsRenderer* renderer, const wxBrush &brush )
593 m_red = brush.GetColour().Red()/255.0;
594 m_green = brush.GetColour().Green()/255.0;
595 m_blue = brush.GetColour().Blue()/255.0;
596 m_alpha = brush.GetColour().Alpha()/255.0;
598 if ( brush.GetStyle() == wxSOLID)
600 m_brush = new SolidBrush( Color( brush.GetColour().Alpha() , brush.GetColour().Red() ,
601 brush.GetColour().Green() , brush.GetColour().Blue() ) );
603 else if ( brush.IsHatch() )
606 switch( brush.GetStyle() )
628 m_brush = new HatchBrush(style,Color( brush.GetColour().Alpha() , brush.GetColour().Red() ,
629 brush.GetColour().Green() , brush.GetColour().Blue() ), Color.Transparent );
633 wxBitmap* bmp = brush.GetStipple();
1428 virtual wxGraphicsBrush CreateBrush(const wxBrush& brush ) ;
1430 // sets the brush to a linear gradient, starting at (x1,y1) with color c1 to (x2,y2) with color c2
1434 // sets the brush to a radial gradient originating at (xo,yc) with color oColor and ends on a circle around (xc,yc)
1544 wxGraphicsBrush wxCairoRenderer::CreateBrush(const wxBrush& brush )
1546 if ( !brush.Ok() || brush.GetStyle() == wxTRANSPARENT )
1551 p.SetRefData(new wxCairoBrushData( this, brush ));
1556 // sets the brush to a linear gradient, starting at (x1,y1) with color c1 to (x2,y2) with color c2
1567 // sets the brush to a radial gradient originating at (xo,yc) with color oColor and ends on a circle around (xc,yc)