]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/_stockobjs.i
default id's where possible
[wxWidgets.git] / wxPython / src / _stockobjs.i
CommitLineData
d14a1e28
RD
1/////////////////////////////////////////////////////////////////////////////
2// Name: _stockobjs.i
3// Purpose: SWIG interface defining "stock" GDI objects
4//
5// Author: Robin Dunn
6//
7// Created: 13-Sept-2003
8// RCS-ID: $Id$
9// Copyright: (c) 2003 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13// Not a %module
14
15
16//---------------------------------------------------------------------------
17%newgroup
18
19
2b9048c5
RD
20// See also wxPy_ReinitStockObjects in helpers.cpp
21%immutable;
22
23wxFont* const wxNORMAL_FONT;
24wxFont* const wxSMALL_FONT;
25wxFont* const wxITALIC_FONT;
26wxFont* const wxSWISS_FONT;
27
28wxPen* const wxRED_PEN;
29wxPen* const wxCYAN_PEN;
30wxPen* const wxGREEN_PEN;
31wxPen* const wxBLACK_PEN;
32wxPen* const wxWHITE_PEN;
33wxPen* const wxTRANSPARENT_PEN;
34wxPen* const wxBLACK_DASHED_PEN;
35wxPen* const wxGREY_PEN;
36wxPen* const wxMEDIUM_GREY_PEN;
37wxPen* const wxLIGHT_GREY_PEN;
38
39wxBrush* const wxBLUE_BRUSH;
40wxBrush* const wxGREEN_BRUSH;
41wxBrush* const wxWHITE_BRUSH;
42wxBrush* const wxBLACK_BRUSH;
43wxBrush* const wxTRANSPARENT_BRUSH;
44wxBrush* const wxCYAN_BRUSH;
45wxBrush* const wxRED_BRUSH;
46wxBrush* const wxGREY_BRUSH;
47wxBrush* const wxMEDIUM_GREY_BRUSH;
48wxBrush* const wxLIGHT_GREY_BRUSH;
49
50wxColour* const wxBLACK;
51wxColour* const wxWHITE;
52wxColour* const wxRED;
53wxColour* const wxBLUE;
54wxColour* const wxGREEN;
55wxColour* const wxCYAN;
56wxColour* const wxLIGHT_GREY;
57
58wxCursor* const wxSTANDARD_CURSOR;
59wxCursor* const wxHOURGLASS_CURSOR;
60wxCursor* const wxCROSS_CURSOR;
61
62
63const wxBitmap wxNullBitmap;
64const wxIcon wxNullIcon;
65const wxCursor wxNullCursor;
66const wxPen wxNullPen;
67const wxBrush wxNullBrush;
68const wxPalette wxNullPalette;
69const wxFont wxNullFont;
70const wxColour wxNullColour;
71
72%mutable;
73
74
75//---------------------------------------------------------------------------
76
d14a1e28
RD
77class wxPenList : public wxObject {
78public:
79
80 void AddPen(wxPen* pen);
81 wxPen* FindOrCreatePen(const wxColour& colour, int width, int style);
82 void RemovePen(wxPen* pen);
83
84 int GetCount();
85};
86
87
88//---------------------------------------------------------------------------
89
90class wxBrushList : public wxObject {
91public:
92
93 void AddBrush(wxBrush *brush);
94 wxBrush * FindOrCreateBrush(const wxColour& colour, int style);
95 void RemoveBrush(wxBrush *brush);
96
97 int GetCount();
98};
99
100//---------------------------------------------------------------------------
101
102class wxColourDatabase : public wxObject {
103public:
104 wxColourDatabase();
105 ~wxColourDatabase();
106
107 // find colour by name or name for the given colour
108 wxColour Find(const wxString& name) const;
109 wxString FindName(const wxColour& colour) const;
110 %pythoncode { FindColour = Find }
111
112 // add a new colour to the database
113 void AddColour(const wxString& name, const wxColour& colour);
114
115 %extend {
116 void Append(const wxString& name, int red, int green, int blue) {
117 self->AddColour(name, wxColour(red, green, blue));
118 }
119 }
120};
121
122//---------------------------------------------------------------------------
123
124class wxFontList : public wxObject {
125public:
126
127 void AddFont(wxFont* font);
128 wxFont * FindOrCreateFont(int point_size, int family, int style, int weight,
dd9f7fea 129 bool underline = False, const wxString& facename = wxPyEmptyString,
d14a1e28
RD
130 wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
131 void RemoveFont(wxFont *font);
132
133 int GetCount();
134};
135
136//---------------------------------------------------------------------------
137%newgroup
138
139
140
141// See also wxPy_ReinitStockObjects in helpers.cpp
142%immutable;
143
d14a1e28
RD
144wxFontList* const wxTheFontList;
145wxPenList* const wxThePenList;
146wxBrushList* const wxTheBrushList;
147wxColourDatabase* const wxTheColourDatabase;
148
149%mutable;
150
151
152//---------------------------------------------------------------------------
153
2b9048c5
RD
154%pythoncode { NullColor = NullColour }
155
156
157
158