Searched refs:brush (Results 1 - 25 of 139) sorted by relevance

123456

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk1/
H A Ddcmemory.cpp83 wxBrush brush( brushOrig );
86 (brush != *wxTRANSPARENT_BRUSH) )
88 brush.SetColour( brush.GetColour() == *wxWHITE ? *wxBLACK : *wxWHITE);
91 wxWindowDC::SetBrush( brush );
96 wxBrush brush(brushOrig);
100 (brush != *wxTRANSPARENT_BRUSH) )
102 brush.SetColour( brush.GetColour() == *wxWHITE ? *wxBLACK : *wxWHITE );
105 wxWindowDC::SetBackground( brush );
[all...]
H A Dbrush.cpp2 // Name: src/gtk1/brush.cpp
5 // Id: $Id: brush.cpp 42776 2006-10-30 22:03:53Z VZ $
13 #include "wx/brush.h"
94 bool wxBrush::operator == ( const wxBrush& brush ) const
96 if (m_refData == brush.m_refData) return true;
98 if (!m_refData || !brush.m_refData) return false;
100 return ( *(wxBrushRefData*)m_refData == *(wxBrushRefData*)brush.m_refData );
107 wxFAIL_MSG( wxT("invalid brush") );
118 wxFAIL_MSG( wxT("invalid brush") );
129 wxFAIL_MSG( wxT("invalid brush") );
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/cocoa/
H A Dbrush.h2 // Name: wx/cocoa/brush.h
7 // RCS-ID: $Id: brush.h 41751 2006-10-08 21:56:55Z VZ $
45 bool operator == (const wxBrush& brush) const
46 { return m_refData == brush.m_refData; }
47 bool operator != (const wxBrush& brush) const
48 { return m_refData != brush.m_refData; }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk/
H A Ddcmemory.cpp86 wxBrush brush( brushOrig );
89 (brush != *wxTRANSPARENT_BRUSH) )
91 brush.SetColour( brush.GetColour() == *wxWHITE ? *wxBLACK : *wxWHITE);
94 wxWindowDC::SetBrush( brush );
99 wxBrush brush(brushOrig);
103 (brush != *wxTRANSPARENT_BRUSH) )
105 brush.SetColour( brush.GetColour() == *wxWHITE ? *wxBLACK : *wxWHITE );
108 wxWindowDC::SetBackground( brush );
[all...]
H A Dbrush.cpp2 // Name: src/gtk/brush.cpp
5 // Id: $Id: brush.cpp 42776 2006-10-30 22:03:53Z VZ $
13 #include "wx/brush.h"
93 bool wxBrush::operator == ( const wxBrush& brush ) const
95 if (m_refData == brush.m_refData) return true;
97 if (!m_refData || !brush.m_refData) return false;
99 return ( *(wxBrushRefData*)m_refData == *(wxBrushRefData*)brush.m_refData );
106 wxFAIL_MSG( wxT("invalid brush") );
117 wxFAIL_MSG( wxT("invalid brush") );
128 wxFAIL_MSG( wxT("invalid brush") );
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Dbrush.cpp2 // Name: src/mac/carbon/brush.cpp
7 // RCS-ID: $Id: brush.cpp 44818 2007-03-15 09:40:24Z JS $
14 #include "wx/brush.h"
33 bool operator == ( const wxBrushRefData& brush ) const
35 return m_style == brush.m_style &&
36 m_stipple.IsSameAs(brush.m_stipple) &&
37 m_colour == brush.m_colour &&
38 m_macBrushKind == brush.m_macBrushKind &&
39 m_macThemeBrush == brush.m_macThemeBrush &&
40 m_macThemeBackground == brush
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/x11/
H A Dbrush.h2 // Name: wx/x11/brush.h
7 // RCS-ID: $Id: brush.h 41751 2006-10-08 21:56:55Z VZ $
41 bool operator == ( const wxBrush& brush ) const;
42 bool operator != (const wxBrush& brush) const { return !(*this == brush); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/dfb/
H A Dbrush.h2 // Name: wx/dfb/brush.h
6 // RCS-ID: $Id: brush.h 41751 2006-10-08 21:56:55Z VZ $
40 bool operator==(const wxBrush& brush) const;
41 bool operator!=(const wxBrush& brush) const { return !(*this == brush); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/gtk/
H A Dbrush.h2 // Name: wx/gtk/brush.h
5 // Id: $Id: brush.h 41751 2006-10-08 21:56:55Z VZ $
32 bool operator == ( const wxBrush& brush ) const;
33 bool operator != (const wxBrush& brush) const { return !(*this == brush); }
H A Ddcmemory.h32 virtual void SetBrush( const wxBrush &brush );
33 virtual void SetBackground( const wxBrush &brush );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/gtk1/
H A Dbrush.h2 // Name: wx/gtk1/brush.h
5 // Id: $Id: brush.h 41751 2006-10-08 21:56:55Z VZ $
42 bool operator == ( const wxBrush& brush ) const;
43 bool operator != (const wxBrush& brush) const { return !(*this == brush); }
H A Ddcmemory.h40 virtual void SetBrush( const wxBrush &brush );
41 virtual void SetBackground( const wxBrush &brush );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Dbrush.h2 // Name: wx/msw/brush.h
7 // RCS-ID: $Id: brush.h 53135 2008-04-12 02:31:04Z VZ $
38 bool operator==(const wxBrush& brush) const;
39 bool operator!=(const wxBrush& brush) const { return !(*this == brush); }
48 // return the HBRUSH for this brush
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/palmos/
H A Dbrush.h2 // Name: wx/palmos/brush.h
7 // RCS-ID: $Id: brush.h 41751 2006-10-08 21:56:55Z VZ $
38 bool operator==(const wxBrush& brush) const;
39 bool operator!=(const wxBrush& brush) const { return !(*this == brush); }
48 // return the HBRUSH for this brush
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mgl/
H A Ddcmemory.cpp67 void wxMemoryDC::SetBrush(const wxBrush &brush) argument
71 if ( GetDepth() == 1 && *wxTRANSPARENT_BRUSH != brush )
73 if ( *wxWHITE_BRUSH == brush )
80 wxDC::SetBrush(brush);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/classic/
H A Dbrush.h2 // Name: wx/mac/classic/brush.h
7 // RCS-ID: $Id: brush.h 41751 2006-10-08 21:56:55Z VZ $
47 bool operator == (const wxBrush& brush) const
48 { return m_refData == brush.m_refData; }
49 bool operator != (const wxBrush& brush) const
50 { return m_refData != brush.m_refData; }
65 // Useful helper: create the brush resource
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mgl/
H A Dbrush.h2 // Name: wx/mgl/brush.h
5 // Id: $Id: brush.h 41751 2006-10-08 21:56:55Z VZ $
37 bool operator == (const wxBrush& brush) const;
38 bool operator != (const wxBrush& brush) const;
H A Ddcmemory.h39 virtual void SetBrush(const wxBrush &brush);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/carbon/
H A Dbrush.h2 // Name: wx/mac/carbon/brush.h
7 // RCS-ID: $Id: brush.h 42752 2006-10-30 19:26:48Z VZ $
47 bool operator == (const wxBrush& brush) const;
48 bool operator != (const wxBrush& brush) const
49 { return !(*this == brush); }
64 // Useful helper: create the brush resource
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dbrush.tex2 %% 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}}
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/x11/
H A Dbrush.cpp2 // Name: src/x11/brush.cpp
7 // RCS-ID: $Id: brush.cpp 42777 2006-10-30 22:06:21Z VZ $
15 #include "wx/brush.h"
95 bool wxBrush::operator == ( const wxBrush& brush ) const
97 if (m_refData == brush.m_refData) return true;
99 if (!m_refData || !brush.m_refData) return false;
101 return ( *(wxBrushRefData*)m_refData == *(wxBrushRefData*)brush.m_refData );
108 wxFAIL_MSG( wxT("invalid brush") );
119 wxFAIL_MSG( wxT("invalid brush") );
130 wxFAIL_MSG( wxT("invalid brush") );
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DColorFrameCtrl.h29 #include <wx/brush.h> // Needed for wxBrush
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dgdicmn.cpp25 #include "wx/brush.h"
509 wxBrush* brush = wx_static_cast(wxBrush*, ms_stockObject[item]); local
510 if (brush == NULL)
515 brush = new wxBrush(*GetColour(COLOUR_BLACK), wxSOLID);
518 brush = new wxBrush(*GetColour(COLOUR_BLUE), wxSOLID);
521 brush = new wxBrush(*GetColour(COLOUR_CYAN), wxSOLID);
524 brush = new wxBrush(*GetColour(COLOUR_GREEN), wxSOLID);
527 brush = new wxBrush(wxColour(wxT("GREY")), wxSOLID);
530 brush = new wxBrush(*GetColour(COLOUR_LIGHTGREY), wxSOLID);
533 brush
746 wxBrush * const brush = (wxBrush *) node->GetData (); local
751 wxBrush* brush = NULL; local
[all...]
H A Danimatecmn.cpp25 #include "wx/brush.h"
70 wxBrush brush(GetBackgroundColour());
73 dc.SetBackground(brush);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Ddcmemory.cpp151 wxBrush brush(dc.GetBrush());
153 if (brush.Ok() && brush.GetStyle() != wxTRANSPARENT)
155 HBRUSH hBrush = (HBRUSH) brush.GetResourceHandle() ;

Completed in 320 milliseconds

123456