]>
Commit | Line | Data |
---|---|---|
ffecfa5a JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/palmos/brush.cpp | |
3 | // Purpose: wxBrush | |
e2731512 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/13/04 | |
e2731512 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
ffecfa5a JS |
16 | // ---------------------------------------------------------------------------- |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // For compilers that support precompilation, includes "wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #ifndef WX_PRECOMP | |
28 | #include "wx/list.h" | |
29 | #include "wx/utils.h" | |
30 | #include "wx/app.h" | |
31 | #include "wx/brush.h" | |
15495b26 | 32 | #include "wx/colour.h" |
ffecfa5a JS |
33 | #endif // WX_PRECOMP |
34 | ||
35 | // ---------------------------------------------------------------------------- | |
36 | // private classes | |
37 | // ---------------------------------------------------------------------------- | |
38 | ||
39 | // ============================================================================ | |
40 | // wxBrush implementation | |
41 | // ============================================================================ | |
42 | ||
43 | IMPLEMENT_DYNAMIC_CLASS(wxBrush, wxGDIObject) | |
44 | ||
45 | // ---------------------------------------------------------------------------- | |
46 | // wxBrush ctors/dtor | |
47 | // ---------------------------------------------------------------------------- | |
48 | ||
49 | wxBrush::wxBrush() | |
50 | { | |
51 | } | |
52 | ||
53 | wxBrush::wxBrush(const wxColour& col, int style) | |
54 | { | |
55 | } | |
56 | ||
57 | wxBrush::wxBrush(const wxBitmap& stipple) | |
58 | { | |
59 | } | |
60 | ||
61 | wxBrush::~wxBrush() | |
62 | { | |
63 | } | |
64 | ||
65 | // ---------------------------------------------------------------------------- | |
66 | // wxBrush house keeping stuff | |
67 | // ---------------------------------------------------------------------------- | |
68 | ||
ffecfa5a JS |
69 | bool wxBrush::operator==(const wxBrush& brush) const |
70 | { | |
46562151 | 71 | return false; |
ffecfa5a JS |
72 | } |
73 | ||
74 | wxObjectRefData *wxBrush::CreateRefData() const | |
75 | { | |
76 | return NULL; | |
77 | } | |
78 | ||
79 | wxObjectRefData *wxBrush::CloneRefData(const wxObjectRefData *data) const | |
80 | { | |
81 | return NULL; | |
82 | } | |
83 | ||
84 | // ---------------------------------------------------------------------------- | |
85 | // wxBrush accessors | |
86 | // ---------------------------------------------------------------------------- | |
87 | ||
88 | wxColour wxBrush::GetColour() const | |
89 | { | |
90 | return wxNullColour; | |
91 | } | |
92 | ||
93 | int wxBrush::GetStyle() const | |
94 | { | |
95 | return -1; | |
96 | } | |
97 | ||
98 | wxBitmap *wxBrush::GetStipple() const | |
99 | { | |
100 | return NULL; | |
101 | } | |
102 | ||
103 | WXHANDLE wxBrush::GetResourceHandle() const | |
104 | { | |
105 | return (WXHANDLE)0; | |
106 | } | |
107 | ||
108 | // ---------------------------------------------------------------------------- | |
109 | // wxBrush setters | |
110 | // ---------------------------------------------------------------------------- | |
111 | ||
15495b26 | 112 | void wxBrush::SetColour(const wxColour& WXUNUSED(col)) |
ffecfa5a JS |
113 | { |
114 | } | |
115 | ||
15495b26 | 116 | void wxBrush::SetColour(unsigned char WXUNUSED(r), unsigned char WXUNUSED(g), unsigned char WXUNUSED(b)) |
ffecfa5a JS |
117 | { |
118 | } | |
119 | ||
15495b26 | 120 | void wxBrush::SetStyle(int WXUNUSED(style)) |
ffecfa5a JS |
121 | { |
122 | } | |
123 | ||
15495b26 | 124 | void wxBrush::SetStipple(const wxBitmap& WXUNUSED(stipple)) |
ffecfa5a JS |
125 | { |
126 | } |