]> git.saurik.com Git - wxWidgets.git/blame - src/palmos/brush.cpp
don't compile this file at all in Motif2 build
[wxWidgets.git] / src / palmos / brush.cpp
CommitLineData
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"
32#endif // WX_PRECOMP
33
34// ----------------------------------------------------------------------------
35// private classes
36// ----------------------------------------------------------------------------
37
38// ============================================================================
39// wxBrush implementation
40// ============================================================================
41
42IMPLEMENT_DYNAMIC_CLASS(wxBrush, wxGDIObject)
43
44// ----------------------------------------------------------------------------
45// wxBrush ctors/dtor
46// ----------------------------------------------------------------------------
47
48wxBrush::wxBrush()
49{
50}
51
52wxBrush::wxBrush(const wxColour& col, int style)
53{
54}
55
56wxBrush::wxBrush(const wxBitmap& stipple)
57{
58}
59
60wxBrush::~wxBrush()
61{
62}
63
64// ----------------------------------------------------------------------------
65// wxBrush house keeping stuff
66// ----------------------------------------------------------------------------
67
68wxBrush& wxBrush::operator=(const wxBrush& brush)
69{
70 return *this;
71}
72
73bool wxBrush::operator==(const wxBrush& brush) const
74{
46562151 75 return false;
ffecfa5a
JS
76}
77
78wxObjectRefData *wxBrush::CreateRefData() const
79{
80 return NULL;
81}
82
83wxObjectRefData *wxBrush::CloneRefData(const wxObjectRefData *data) const
84{
85 return NULL;
86}
87
88// ----------------------------------------------------------------------------
89// wxBrush accessors
90// ----------------------------------------------------------------------------
91
92wxColour wxBrush::GetColour() const
93{
94 return wxNullColour;
95}
96
97int wxBrush::GetStyle() const
98{
99 return -1;
100}
101
102wxBitmap *wxBrush::GetStipple() const
103{
104 return NULL;
105}
106
107WXHANDLE wxBrush::GetResourceHandle() const
108{
109 return (WXHANDLE)0;
110}
111
112// ----------------------------------------------------------------------------
113// wxBrush setters
114// ----------------------------------------------------------------------------
115
116void wxBrush::SetColour(const wxColour& col)
117{
118}
119
46562151 120void wxBrush::SetColour(const unsigned char r, const unsigned char g, const unsigned char b)
ffecfa5a
JS
121{
122}
123
124void wxBrush::SetStyle(int style)
125{
126}
127
128void wxBrush::SetStipple(const wxBitmap& stipple)
129{
130}