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

Lines Matching refs:brush

2 %% Name:        brush.tex
7 %% RCS-ID: $Id: brush.tex 43567 2006-11-21 09:27:10Z RR $
14 A brush is a drawing tool for filling in areas. It is used for painting
25 <wx/brush.h>
59 application may wish to get a pointer to a brush by using the global
82 Default constructor. The brush will be uninitialised, and \helpref{wxBrush:IsOk}{wxbrushisok} will
87 Constructs a brush from a colour object and style.
91 Constructs a brush from a colour name and style.
95 Constructs a stippled brush using a bitmap.
97 \func{}{wxBrush}{\param{const wxBrush\&}{ brush}}
121 \docparam{brush}{Pointer or reference to a brush to copy.}
127 If a stipple brush is created, the brush style will be set to wxSTIPPLE.
145 wxWidgets cannot know if a pointer to the brush object is stored in an
153 Returns a reference to the brush colour.
164 Gets a pointer to the stipple bitmap. If the brush does not have a wxSTIPPLE style,
176 Returns the brush style, one of:
201 Returns true if the style of the brush is any of hatched fills.
212 Returns true if the brush is initialised. It will return false if the default
213 constructor has been used (for example, the brush is a member of a class, or
221 Sets the brush colour using a reference to a colour object.
225 Sets the brush colour using a colour name from the colour database.
229 Sets the brush colour using red, green and blue values.
269 Sets the brush style.
293 \func{wxBrush\&}{operator $=$}{\param{const wxBrush\& }{brush}}
300 \func{bool}{operator $==$}{\param{const wxBrush\& }{brush}}
308 \func{bool}{operator $!=$}{\param{const wxBrush\& }{brush}}
316 A brush list is a list containing all brushes which have been created.
330 this object to search for a previously created brush of the desired
332 the brush may be a scarce resource, so it can pay to reuse old
339 brush list less useful than it once was. Under Windows, scarce resources
343 working out when it is safe delete a brush, because the reference counting does
344 it for you. For example, you can set a brush in a device context, and then
345 immediately delete the brush you passed, because the brush is `copied'.
347 So you may find it easier to ignore the brush list, and instead create
352 The only compelling use for the brush list is for wxWidgets to keep
367 Constructor. The application should not construct its own brush list:
375 Finds a brush with the specified attributes and returns it, else creates a new brush, adds it
376 to the brush list, and returns it.