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 //----------------------------------------------------------------------
149 wxFONTENCODING_SYSTEM = -1, // system default
150 wxFONTENCODING_DEFAULT, // current default encoding
152 // ISO8859 standard defines a number of single-byte charsets
153 wxFONTENCODING_ISO8859_1, // West European (Latin1)
154 wxFONTENCODING_ISO8859_2, // Central and East European (Latin2)
155 wxFONTENCODING_ISO8859_3, // Esperanto (Latin3)
156 wxFONTENCODING_ISO8859_4, // Baltic languages (Estonian) (Latin4)
157 wxFONTENCODING_ISO8859_5, // Cyrillic
158 wxFONTENCODING_ISO8859_6, // Arabic
159 wxFONTENCODING_ISO8859_7, // Greek
160 wxFONTENCODING_ISO8859_8, // Hebrew
161 wxFONTENCODING_ISO8859_9, // Turkish (Latin5)
162 wxFONTENCODING_ISO8859_10, // Variation of Latin4 (Latin6)
163 wxFONTENCODING_ISO8859_11, // Thai
164 wxFONTENCODING_ISO8859_12, // doesn't exist currently, but put it
165 // here anyhow to make all ISO8859
166 // consecutive numbers
167 wxFONTENCODING_ISO8859_13, // Latin7
168 wxFONTENCODING_ISO8859_14, // Latin8
169 wxFONTENCODING_ISO8859_15, // Latin9 (a.k.a. Latin0, includes euro)
171 // Cyrillic charset soup (see http://czyborra.com/charsets/cyrillic.html)
172 wxFONTENCODING_KOI8, // we don't support any of KOI8 variants
173 wxFONTENCODING_ALTERNATIVE, // same as MS-DOS CP866
174 wxFONTENCODING_BULGARIAN, // used under Linux in Bulgaria
176 // what would we do without Microsoft? They have their own encodings
178 wxFONTENCODING_CP437, // original MS-DOS codepage
179 wxFONTENCODING_CP850, // CP437 merged with Latin1
180 wxFONTENCODING_CP852, // CP437 merged with Latin2
181 wxFONTENCODING_CP855, // another cyrillic encoding
182 wxFONTENCODING_CP866, // and another one
184 wxFONTENCODING_CP1250, // WinLatin2
185 wxFONTENCODING_CP1251, // WinCyrillic
186 wxFONTENCODING_CP1252, // WinLatin1
193 // I'll do it this way to use long-lived objects and not have to
194 // worry about when python may delete the object.
196 wxFont( int pointSize, int family, int style, int weight,
197 int underline=FALSE, char* faceName = "",
198 wxFontEncoding encoding=wxFONTENCODING_DEFAULT) {
200 return wxTheFontList->FindOrCreateFont(pointSize, family, style, weight,
201 underline, faceName, encoding);
208 wxString GetFaceName();
215 bool GetUnderlined();
217 wxFontEncoding GetEncoding();
218 void SetFaceName(const wxString& faceName);
219 void SetFamily(int family);
220 void SetPointSize(int pointSize);
221 void SetStyle(int style);
222 void SetUnderlined(bool underlined);
223 void SetWeight(int weight);
224 void SetEncoding(wxFontEncoding encoding);
225 wxString GetFamilyString();
226 wxString GetStyleString();
227 wxString GetWeightString();
231 wxFontEncoding wxFont_GetDefaultEncoding() {
232 return wxFont::GetDefaultEncoding();
235 void wxFont_SetDefaultEncoding(wxFontEncoding encoding) {
236 wxFont::SetDefaultEncoding(encoding);
240 //----------------------------------------------------------------------
244 wxColour(unsigned char red=0, unsigned char green=0, unsigned char blue=0);
247 unsigned char Green();
248 unsigned char Blue();
250 void Set(unsigned char red, unsigned char green, unsigned char blue);
253 PyObject* rv = PyTuple_New(3);
254 PyTuple_SetItem(rv, 0, PyInt_FromLong(self->Red()));
255 PyTuple_SetItem(rv, 1, PyInt_FromLong(self->Green()));
256 PyTuple_SetItem(rv, 2, PyInt_FromLong(self->Blue()));
262 %new wxColour* wxNamedColour(const wxString& colorName);
263 %{ // Alternate 'constructor'
264 wxColour* wxNamedColour(const wxString& colorName) {
265 return new wxColour(colorName);
270 //----------------------------------------------------------------------
272 typedef unsigned long wxDash;
276 // I'll do it this way to use long-lived objects and not have to
277 // worry about when python may delete the object.
279 wxPen(wxColour* colour, int width=1, int style=wxSOLID) {
280 return wxThePenList->FindOrCreatePen(*colour, width, style);
286 wxColour& GetColour();
292 void SetCap(int cap_style);
293 void SetColour(wxColour& colour);
294 void SetJoin(int join_style);
295 void SetStyle(int style);
296 void SetWidth(int width);
299 // **** This one needs to return a list of ints (wxDash)
300 int GetDashes(wxDash **dashes);
301 wxBitmap* GetStipple();
302 void SetDashes(int LCOUNT, wxDash* LIST);
303 void SetStipple(wxBitmap& stipple);
307 //----------------------------------------------------------------------
311 // I'll do it this way to use long-lived objects and not have to
312 // worry about when python may delete the object.
314 wxBrush(wxColour* colour, int style=wxSOLID) {
315 return wxTheBrushList->FindOrCreateBrush(*colour, style);
320 wxColour& GetColour();
321 wxBitmap * GetStipple();
324 void SetColour(wxColour &colour);
325 void SetStipple(wxBitmap& bitmap);
326 void SetStyle(int style);
329 //----------------------------------------------------------------------
335 // wxDC(); **** abstract base class, can't instantiate.
340 bool Blit(long xdest, long ydest,
341 long width, long height,
342 wxDC *source, long xsrc, long ysrc,
343 int logicalFunc = wxCOPY, int useMask = FALSE);
344 // bool Blit(const wxPoint& destPt, const wxSize& sz,
345 // wxDC *source, const wxPoint& srcPt,
346 // int logicalFunc = wxCOPY, int useMask = FALSE);
349 void CrossHair(long x, long y);
350 void DestroyClippingRegion();
351 long DeviceToLogicalX(long x);
352 long DeviceToLogicalXRel(long x);
353 long DeviceToLogicalY(long y);
354 long DeviceToLogicalYRel(long y);
355 void DrawArc(long x1, long y1, long x2, long y2, long xc, long yc);
356 void DrawCircle(long x, long y, long radius);
357 void DrawEllipse(long x, long y, long width, long height);
358 void DrawEllipticArc(long x, long y, long width, long height, long start, long end);
359 void DrawIcon(const wxIcon& icon, long x, long y);
360 void DrawLine(long x1, long y1, long x2, long y2);
361 void DrawLines(int LCOUNT, wxPoint* LIST, long xoffset=0, long yoffset=0);
362 void DrawPolygon(int LCOUNT, wxPoint* LIST, long xoffset=0, long yoffset=0,
363 int fill_style=wxODDEVEN_RULE);
364 void DrawPoint(long x, long y);
365 void DrawRectangle(long x, long y, long width, long height);
366 void DrawRoundedRectangle(long x, long y, long width, long height, long radius=20);
367 void DrawSpline(int LCOUNT, wxPoint* LIST);
368 void DrawText(const wxString& text, long x, long y);
372 void FloodFill(long x, long y, const wxColour& colour, int style=wxFLOOD_SURFACE);
373 wxBrush& GetBackground();
375 long GetCharHeight();
377 void GetClippingBox(long *OUTPUT, long *OUTPUT,
378 long *OUTPUT, long *OUTPUT);
380 int GetLogicalFunction();
382 bool GetOptimization();
385 %new wxColour* GetPixel(long x, long y) {
386 wxColour* wc = new wxColour();
387 self->GetPixel(x, y, wc);
391 %name(GetSizeTuple)void GetSize(int* OUTPUT, int* OUTPUT);
393 wxColour& GetTextBackground();
394 void GetTextExtent(const wxString& string, long *OUTPUT, long *OUTPUT);
395 %name(GetFullTextExtent)void GetTextExtent(const wxString& string,
396 long *OUTPUT, long *OUTPUT, long *OUTPUT, long* OUTPUT,
397 const wxFont* font = NULL);
398 wxColour& GetTextForeground();
399 long LogicalToDeviceX(long x);
400 long LogicalToDeviceXRel(long x);
401 long LogicalToDeviceY(long y);
402 long LogicalToDeviceYRel(long y);
408 void SetDeviceOrigin(long x, long y);
409 void SetBackground(const wxBrush& brush);
410 void SetBackgroundMode(int mode);
411 void SetClippingRegion(long x, long y, long width, long height);
412 void SetPalette(const wxPalette& colourMap);
413 void SetBrush(const wxBrush& brush);
414 void SetFont(const wxFont& font);
415 void SetLogicalFunction(int function);
416 void SetMapMode(int mode);
417 void SetOptimization(bool optimize);
418 void SetPen(const wxPen& pen);
419 void SetTextBackground(const wxColour& colour);
420 void SetTextForeground(const wxColour& colour);
421 void SetUserScale(double x_scale, double y_scale);
422 bool StartDoc(const wxString& message);
426 // Don't need this one anymore as wxWindows has one...
428 // // This one is my own creation...
429 // void DrawBitmap(wxBitmap& bitmap, long x, long y, bool swapPalette=TRUE) {
430 // wxMemoryDC* memDC = new wxMemoryDC;
431 // memDC->SelectObject(bitmap);
434 // self->SetPalette(*bitmap.GetPalette());
436 // self->Blit(x, y, bitmap.GetWidth(), bitmap.GetHeight(), memDC,
437 // 0, 0, self->GetLogicalFunction());
438 // memDC->SelectObject(wxNullBitmap);
443 void DrawBitmap(const wxBitmap& bitmap, long x, long y,
444 int useMask = FALSE);
449 //----------------------------------------------------------------------
451 class wxMemoryDC : public wxDC {
455 void SelectObject(const wxBitmap& bitmap);
458 %new wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC);
459 %{ // Alternate 'constructor'
460 wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC) {
461 return new wxMemoryDC(oldDC);
466 //---------------------------------------------------------------------------
468 class wxScreenDC : public wxDC {
472 bool StartDrawingOnTop(wxWindow* window);
473 %name(StartDrawingOnTopRect) bool StartDrawingOnTop(wxRect* rect = NULL);
474 bool EndDrawingOnTop();
477 //---------------------------------------------------------------------------
479 class wxClientDC : public wxDC {
481 wxClientDC(wxWindow* win);
484 //---------------------------------------------------------------------------
486 class wxPaintDC : public wxDC {
488 wxPaintDC(wxWindow* win);
491 //---------------------------------------------------------------------------
493 class wxWindowDC : public wxDC {
495 wxWindowDC(wxWindow* win);
498 //---------------------------------------------------------------------------
501 class wxPostScriptDC : public wxDC {
503 wxPostScriptDC(const wxString& output, bool interactive = TRUE, wxWindow* win = NULL);
507 //---------------------------------------------------------------------------
510 class wxPrinterDC : public wxDC {
512 wxPrinterDC(const wxString& driver, const wxString& device, const wxString& output,
513 bool interactive = TRUE, int orientation = wxPORTRAIT);
517 //---------------------------------------------------------------------------
520 class wxMetaFileDC : public wxDC {
522 wxMetaFileDC(const wxString& filename = wxPyEmptyStr);
527 //---------------------------------------------------------------------------
528 //---------------------------------------------------------------------------
535 extern wxFont *wxNORMAL_FONT;
536 extern wxFont *wxSMALL_FONT;
537 extern wxFont *wxITALIC_FONT;
538 extern wxFont *wxSWISS_FONT;
540 extern wxPen *wxRED_PEN;
541 extern wxPen *wxCYAN_PEN;
542 extern wxPen *wxGREEN_PEN;
543 extern wxPen *wxBLACK_PEN;
544 extern wxPen *wxWHITE_PEN;
545 extern wxPen *wxTRANSPARENT_PEN;
546 extern wxPen *wxBLACK_DASHED_PEN;
547 extern wxPen *wxGREY_PEN;
548 extern wxPen *wxMEDIUM_GREY_PEN;
549 extern wxPen *wxLIGHT_GREY_PEN;
551 extern wxBrush *wxBLUE_BRUSH;
552 extern wxBrush *wxGREEN_BRUSH;
553 extern wxBrush *wxWHITE_BRUSH;
554 extern wxBrush *wxBLACK_BRUSH;
555 extern wxBrush *wxTRANSPARENT_BRUSH;
556 extern wxBrush *wxCYAN_BRUSH;
557 extern wxBrush *wxRED_BRUSH;
558 extern wxBrush *wxGREY_BRUSH;
559 extern wxBrush *wxMEDIUM_GREY_BRUSH;
560 extern wxBrush *wxLIGHT_GREY_BRUSH;
562 extern wxColour *wxBLACK;
563 extern wxColour *wxWHITE;
564 extern wxColour *wxRED;
565 extern wxColour *wxBLUE;
566 extern wxColour *wxGREEN;
567 extern wxColour *wxCYAN;
568 extern wxColour *wxLIGHT_GREY;
570 extern wxCursor *wxSTANDARD_CURSOR;
571 extern wxCursor *wxHOURGLASS_CURSOR;
572 extern wxCursor *wxCROSS_CURSOR;
574 extern wxBitmap wxNullBitmap;
575 extern wxIcon wxNullIcon;
576 extern wxCursor wxNullCursor;
577 extern wxPen wxNullPen;
578 extern wxBrush wxNullBrush;
579 extern wxPalette wxNullPalette;
580 extern wxFont wxNullFont;
581 extern wxColour wxNullColour;
588 //---------------------------------------------------------------------------
592 wxPalette(int LCOUNT, byte* LIST, byte* LIST, byte* LIST);
595 int GetPixel(byte red, byte green, byte blue);
596 bool GetRGB(int pixel, byte* OUTPUT, byte* OUTPUT, byte* OUTPUT);
600 //---------------------------------------------------------------------------
603 wxIMAGELIST_DRAW_NORMAL ,
604 wxIMAGELIST_DRAW_TRANSPARENT,
605 wxIMAGELIST_DRAW_SELECTED,
606 wxIMAGELIST_DRAW_FOCUSED,
614 wxImageList(int width, int height, const bool mask=TRUE, int initialCount=1);
618 int Add(const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
619 %name(AddWithColourMask)int Add(const wxBitmap& bitmap, const wxColour& maskColour);
620 %name(AddIcon)int Add(const wxIcon& icon);
621 bool Replace(int index, const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
622 %name(ReplaceIcon)bool Replace(int index, const wxIcon& icon);
624 int Add(const wxBitmap& bitmap);
625 bool Replace(int index, const wxBitmap& bitmap);
628 bool Draw(int index, wxDC& dc, int x, int x, int flags = wxIMAGELIST_DRAW_NORMAL,
629 const bool solidBackground = FALSE);
632 bool Remove(int index);
637 //---------------------------------------------------------------------------