1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface file for wxDC, wxBrush, wxPen, wxFont, etc.
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
18 #include <wx/metafile.h>
19 #include <wx/imaglist.h>
25 //----------------------------------------------------------------------
28 %include my_typemaps.i
30 // Import some definitions of other classes, etc.
34 //---------------------------------------------------------------------------
38 wxBitmap(const wxString& name, long type);
42 void Create(int width, int height, int depth = -1);
46 wxPalette* GetPalette();
49 bool LoadFile(const wxString& name, long flags);
51 bool SaveFile(const wxString& name, int type, wxPalette* palette = NULL);
52 void SetDepth(int depth);
53 void SetHeight(int height);
54 void SetMask(wxMask* mask);
56 void SetPalette(wxPalette& palette);
58 void SetWidth(int width);
61 %new wxBitmap* wxEmptyBitmap(int width, int height, int depth=-1);
62 wxBitmap* wxNoRefBitmap(char* name, long flags);
65 %new wxBitmap* wxBitmapFromData(char* data, long type,
66 int width, int height, int depth = 1);
69 %{ // Alternate 'constructor'
70 wxBitmap* wxEmptyBitmap(int width, int height, int depth=-1) {
71 return new wxBitmap(width, height, depth);
74 // This one won't own the reference, so Python
75 // won't call the dtor, this is good for
76 // toolbars and such where the parent will
78 wxBitmap* wxNoRefBitmap(char* name, long flags) {
79 return new wxBitmap(name, flags);
83 wxBitmap* wxBitmapFromData(char* data, long type,
84 int width, int height, int depth = 1) {
85 return new wxBitmap((void*)data, type, width, height, depth);
90 //---------------------------------------------------------------------------
94 wxMask(const wxBitmap& bitmap);
98 %new wxMask* wxMaskColour(const wxBitmap& bitmap, const wxColour& colour);
100 wxMask* wxMaskColour(const wxBitmap& bitmap, const wxColour& colour) {
101 return new wxMask(bitmap, colour);
106 //---------------------------------------------------------------------------
109 class wxIcon : public wxBitmap {
111 wxIcon(const wxString& name, long flags,
112 int desiredWidth = -1, int desiredHeight = -1);
118 bool LoadFile(const wxString& name, long flags);
120 void SetDepth(int depth);
121 void SetHeight(int height);
122 void SetWidth(int width);
126 //---------------------------------------------------------------------------
128 class wxCursor : public wxBitmap {
131 wxCursor(const wxString& cursorName, long flags, int hotSpotX=0, int hotSpotY=0);
137 %name(wxStockCursor) %new wxCursor* wxPyStockCursor(int id);
138 %{ // Alternate 'constructor'
139 wxCursor* wxPyStockCursor(int id) {
140 return new wxCursor(id);
144 //----------------------------------------------------------------------
148 // I'll do it this way to use long-lived objects and not have to
149 // worry about when python may delete the object.
151 wxFont( int pointSize, int family, int style, int weight,
152 int underline=FALSE, char* faceName = "") {
154 return wxTheFontList->FindOrCreateFont(pointSize, family, style, weight,
155 underline, faceName);
161 wxString GetFaceName();
168 bool GetUnderlined();
170 void SetFaceName(const wxString& faceName);
171 void SetFamily(int family);
172 void SetPointSize(int pointSize);
173 void SetStyle(int style);
174 void SetUnderlined(bool underlined);
175 void SetWeight(int weight);
178 //----------------------------------------------------------------------
182 wxColour(unsigned char red=0, unsigned char green=0, unsigned char blue=0);
185 unsigned char Green();
186 unsigned char Blue();
188 void Set(unsigned char red, unsigned char green, unsigned char blue);
191 PyObject* rv = PyTuple_New(3);
192 PyTuple_SetItem(rv, 0, PyInt_FromLong(self->Red()));
193 PyTuple_SetItem(rv, 1, PyInt_FromLong(self->Green()));
194 PyTuple_SetItem(rv, 2, PyInt_FromLong(self->Blue()));
200 %new wxColour* wxNamedColour(const wxString& colorName);
201 %{ // Alternate 'constructor'
202 wxColour* wxNamedColour(const wxString& colorName) {
203 return new wxColour(colorName);
208 //----------------------------------------------------------------------
210 typedef unsigned long wxDash;
214 // I'll do it this way to use long-lived objects and not have to
215 // worry about when python may delete the object.
217 wxPen(wxColour* colour, int width=1, int style=wxSOLID) {
218 return wxThePenList->FindOrCreatePen(*colour, width, style);
224 wxColour& GetColour();
230 void SetCap(int cap_style);
231 void SetColour(wxColour& colour);
232 void SetJoin(int join_style);
233 void SetStyle(int style);
234 void SetWidth(int width);
237 // **** This one needs to return a list of ints (wxDash)
238 int GetDashes(wxDash **dashes);
239 wxBitmap* GetStipple();
240 void SetDashes(int LCOUNT, wxDash* LIST);
241 void SetStipple(wxBitmap& stipple);
245 //----------------------------------------------------------------------
249 // I'll do it this way to use long-lived objects and not have to
250 // worry about when python may delete the object.
252 wxBrush(wxColour* colour, int style=wxSOLID) {
253 return wxTheBrushList->FindOrCreateBrush(*colour, style);
258 wxColour& GetColour();
259 wxBitmap * GetStipple();
262 void SetColour(wxColour &colour);
263 void SetStipple(wxBitmap& bitmap);
264 void SetStyle(int style);
267 //----------------------------------------------------------------------
273 // wxDC(); **** abstract base class, can't instantiate.
278 bool Blit(long xdest, long ydest,
279 long width, long height,
280 wxDC *source, long xsrc, long ysrc,
281 int logicalFunc = wxCOPY, int useMask = FALSE);
282 // bool Blit(const wxPoint& destPt, const wxSize& sz,
283 // wxDC *source, const wxPoint& srcPt,
284 // int logicalFunc = wxCOPY, int useMask = FALSE);
287 void CrossHair(long x, long y);
288 void DestroyClippingRegion();
289 long DeviceToLogicalX(long x);
290 long DeviceToLogicalXRel(long x);
291 long DeviceToLogicalY(long y);
292 long DeviceToLogicalYRel(long y);
293 void DrawArc(long x1, long y1, long x2, long y2, long xc, long yc);
294 void DrawCircle(long x, long y, long radius);
295 void DrawEllipse(long x, long y, long width, long height);
296 void DrawEllipticArc(long x, long y, long width, long height, long start, long end);
297 void DrawIcon(const wxIcon& icon, long x, long y);
298 void DrawLine(long x1, long y1, long x2, long y2);
299 void DrawLines(int LCOUNT, wxPoint* LIST, long xoffset=0, long yoffset=0);
300 void DrawPolygon(int LCOUNT, wxPoint* LIST, long xoffset=0, long yoffset=0,
301 int fill_style=wxODDEVEN_RULE);
302 void DrawPoint(long x, long y);
303 void DrawRectangle(long x, long y, long width, long height);
304 void DrawRoundedRectangle(long x, long y, long width, long height, long radius=20);
305 void DrawSpline(int LCOUNT, wxPoint* LIST);
306 void DrawText(const wxString& text, long x, long y);
310 void FloodFill(long x, long y, const wxColour& colour, int style=wxFLOOD_SURFACE);
311 wxBrush& GetBackground();
313 long GetCharHeight();
315 void GetClippingBox(long *OUTPUT, long *OUTPUT,
316 long *OUTPUT, long *OUTPUT);
318 int GetLogicalFunction();
320 bool GetOptimization();
323 %new wxColour* GetPixel(long x, long y) {
324 wxColour* wc = new wxColour();
325 self->GetPixel(x, y, wc);
329 %name(GetSizeTuple)void GetSize(int* OUTPUT, int* OUTPUT);
331 wxColour& GetTextBackground();
332 void GetTextExtent(const wxString& string, long *OUTPUT, long *OUTPUT);
333 %name(GetFullTextExtent)void GetTextExtent(const wxString& string,
334 long *OUTPUT, long *OUTPUT, long *OUTPUT, long* OUTPUT,
335 const wxFont* font = NULL);
336 wxColour& GetTextForeground();
337 long LogicalToDeviceX(long x);
338 long LogicalToDeviceXRel(long x);
339 long LogicalToDeviceY(long y);
340 long LogicalToDeviceYRel(long y);
346 void SetDeviceOrigin(long x, long y);
347 void SetBackground(const wxBrush& brush);
348 void SetBackgroundMode(int mode);
349 void SetClippingRegion(long x, long y, long width, long height);
350 void SetPalette(const wxPalette& colourMap);
351 void SetBrush(const wxBrush& brush);
352 void SetFont(const wxFont& font);
353 void SetLogicalFunction(int function);
354 void SetMapMode(int mode);
355 void SetOptimization(bool optimize);
356 void SetPen(const wxPen& pen);
357 void SetTextBackground(const wxColour& colour);
358 void SetTextForeground(const wxColour& colour);
359 void SetUserScale(double x_scale, double y_scale);
360 bool StartDoc(const wxString& message);
364 // Don't need this one anymore as wxWindows has one...
366 // // This one is my own creation...
367 // void DrawBitmap(wxBitmap& bitmap, long x, long y, bool swapPalette=TRUE) {
368 // wxMemoryDC* memDC = new wxMemoryDC;
369 // memDC->SelectObject(bitmap);
372 // self->SetPalette(*bitmap.GetPalette());
374 // self->Blit(x, y, bitmap.GetWidth(), bitmap.GetHeight(), memDC,
375 // 0, 0, self->GetLogicalFunction());
376 // memDC->SelectObject(wxNullBitmap);
381 void DrawBitmap(const wxBitmap& bitmap, long x, long y,
382 int useMask = FALSE);
387 //----------------------------------------------------------------------
389 class wxMemoryDC : public wxDC {
393 void SelectObject(const wxBitmap& bitmap);
396 %new wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC);
397 %{ // Alternate 'constructor'
398 wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC) {
399 return new wxMemoryDC(oldDC);
404 //---------------------------------------------------------------------------
406 class wxScreenDC : public wxDC {
410 bool StartDrawingOnTop(wxWindow* window);
411 %name(StartDrawingOnTopRect) bool StartDrawingOnTop(wxRect* rect = NULL);
412 bool EndDrawingOnTop();
415 //---------------------------------------------------------------------------
417 class wxClientDC : public wxDC {
419 wxClientDC(wxWindow* win);
422 //---------------------------------------------------------------------------
424 class wxPaintDC : public wxDC {
426 wxPaintDC(wxWindow* win);
429 //---------------------------------------------------------------------------
431 class wxWindowDC : public wxDC {
433 wxWindowDC(wxWindow* win);
436 //---------------------------------------------------------------------------
439 class wxPostScriptDC : public wxDC {
441 wxPostScriptDC(const wxString& output, bool interactive = TRUE, wxWindow* win = NULL);
445 //---------------------------------------------------------------------------
448 class wxPrinterDC : public wxDC {
450 wxPrinterDC(const wxString& driver, const wxString& device, const wxString& output,
451 bool interactive = TRUE, int orientation = wxPORTRAIT);
455 //---------------------------------------------------------------------------
458 class wxMetaFileDC : public wxDC {
460 wxMetaFileDC(const wxString& filename = wxPyEmptyStr);
465 //---------------------------------------------------------------------------
466 //---------------------------------------------------------------------------
473 extern wxFont *wxNORMAL_FONT;
474 extern wxFont *wxSMALL_FONT;
475 extern wxFont *wxITALIC_FONT;
476 extern wxFont *wxSWISS_FONT;
478 extern wxPen *wxRED_PEN;
479 extern wxPen *wxCYAN_PEN;
480 extern wxPen *wxGREEN_PEN;
481 extern wxPen *wxBLACK_PEN;
482 extern wxPen *wxWHITE_PEN;
483 extern wxPen *wxTRANSPARENT_PEN;
484 extern wxPen *wxBLACK_DASHED_PEN;
485 extern wxPen *wxGREY_PEN;
486 extern wxPen *wxMEDIUM_GREY_PEN;
487 extern wxPen *wxLIGHT_GREY_PEN;
489 extern wxBrush *wxBLUE_BRUSH;
490 extern wxBrush *wxGREEN_BRUSH;
491 extern wxBrush *wxWHITE_BRUSH;
492 extern wxBrush *wxBLACK_BRUSH;
493 extern wxBrush *wxTRANSPARENT_BRUSH;
494 extern wxBrush *wxCYAN_BRUSH;
495 extern wxBrush *wxRED_BRUSH;
496 extern wxBrush *wxGREY_BRUSH;
497 extern wxBrush *wxMEDIUM_GREY_BRUSH;
498 extern wxBrush *wxLIGHT_GREY_BRUSH;
500 extern wxColour *wxBLACK;
501 extern wxColour *wxWHITE;
502 extern wxColour *wxRED;
503 extern wxColour *wxBLUE;
504 extern wxColour *wxGREEN;
505 extern wxColour *wxCYAN;
506 extern wxColour *wxLIGHT_GREY;
508 extern wxCursor *wxSTANDARD_CURSOR;
509 extern wxCursor *wxHOURGLASS_CURSOR;
510 extern wxCursor *wxCROSS_CURSOR;
512 extern wxBitmap wxNullBitmap;
513 extern wxIcon wxNullIcon;
514 extern wxCursor wxNullCursor;
515 extern wxPen wxNullPen;
516 extern wxBrush wxNullBrush;
517 extern wxPalette wxNullPalette;
518 extern wxFont wxNullFont;
519 extern wxColour wxNullColour;
526 //---------------------------------------------------------------------------
530 wxPalette(int LCOUNT, byte* LIST, byte* LIST, byte* LIST);
533 int GetPixel(byte red, byte green, byte blue);
534 bool GetRGB(int pixel, byte* OUTPUT, byte* OUTPUT, byte* OUTPUT);
538 //---------------------------------------------------------------------------
541 wxIMAGELIST_DRAW_NORMAL ,
542 wxIMAGELIST_DRAW_TRANSPARENT,
543 wxIMAGELIST_DRAW_SELECTED,
544 wxIMAGELIST_DRAW_FOCUSED,
552 wxImageList(int width, int height, const bool mask=TRUE, int initialCount=1);
556 int Add(const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
557 %name(AddWithColourMask)int Add(const wxBitmap& bitmap, const wxColour& maskColour);
558 %name(AddIcon)int Add(const wxIcon& icon);
559 bool Replace(int index, const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
560 %name(ReplaceIcon)bool Replace(int index, const wxIcon& icon);
562 int Add(const wxBitmap& bitmap);
563 bool Replace(int index, const wxBitmap& bitmap);
566 bool Draw(int index, wxDC& dc, int x, int x, int flags = wxIMAGELIST_DRAW_NORMAL,
567 const bool solidBackground = FALSE);
570 bool Remove(int index);
575 //---------------------------------------------------------------------------