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);
207 wxString GetFaceName();
214 bool GetUnderlined();
216 wxFontEncoding GetEncoding();
217 void SetFaceName(const wxString& faceName);
218 void SetFamily(int family);
219 void SetPointSize(int pointSize);
220 void SetStyle(int style);
221 void SetUnderlined(bool underlined);
222 void SetWeight(int weight);
223 void SetEncoding(wxFontEncoding encoding);
224 wxString GetFamilyString();
225 wxString GetStyleString();
226 wxString GetWeightString();
230 wxFontEncoding wxFont_GetDefaultEncoding() {
231 return wxFont::GetDefaultEncoding();
234 void wxFont_SetDefaultEncoding(wxFontEncoding encoding) {
235 wxFont::SetDefaultEncoding(encoding);
239 //----------------------------------------------------------------------
243 wxColour(unsigned char red=0, unsigned char green=0, unsigned char blue=0);
246 unsigned char Green();
247 unsigned char Blue();
249 void Set(unsigned char red, unsigned char green, unsigned char blue);
252 PyObject* rv = PyTuple_New(3);
253 PyTuple_SetItem(rv, 0, PyInt_FromLong(self->Red()));
254 PyTuple_SetItem(rv, 1, PyInt_FromLong(self->Green()));
255 PyTuple_SetItem(rv, 2, PyInt_FromLong(self->Blue()));
261 %new wxColour* wxNamedColour(const wxString& colorName);
262 %{ // Alternate 'constructor'
263 wxColour* wxNamedColour(const wxString& colorName) {
264 return new wxColour(colorName);
269 //----------------------------------------------------------------------
271 typedef unsigned long wxDash;
275 // I'll do it this way to use long-lived objects and not have to
276 // worry about when python may delete the object.
278 wxPen(wxColour* colour, int width=1, int style=wxSOLID) {
279 return wxThePenList->FindOrCreatePen(*colour, width, style);
285 wxColour& GetColour();
291 void SetCap(int cap_style);
292 void SetColour(wxColour& colour);
293 void SetJoin(int join_style);
294 void SetStyle(int style);
295 void SetWidth(int width);
298 // **** This one needs to return a list of ints (wxDash)
299 int GetDashes(wxDash **dashes);
300 wxBitmap* GetStipple();
301 void SetDashes(int LCOUNT, wxDash* LIST);
302 void SetStipple(wxBitmap& stipple);
306 //----------------------------------------------------------------------
310 // I'll do it this way to use long-lived objects and not have to
311 // worry about when python may delete the object.
313 wxBrush(wxColour* colour, int style=wxSOLID) {
314 return wxTheBrushList->FindOrCreateBrush(*colour, style);
319 wxColour& GetColour();
320 wxBitmap * GetStipple();
323 void SetColour(wxColour &colour);
324 void SetStipple(wxBitmap& bitmap);
325 void SetStyle(int style);
328 //----------------------------------------------------------------------
334 // wxDC(); **** abstract base class, can't instantiate.
339 bool Blit(long xdest, long ydest,
340 long width, long height,
341 wxDC *source, long xsrc, long ysrc,
342 int logicalFunc = wxCOPY, int useMask = FALSE);
343 // bool Blit(const wxPoint& destPt, const wxSize& sz,
344 // wxDC *source, const wxPoint& srcPt,
345 // int logicalFunc = wxCOPY, int useMask = FALSE);
348 void CrossHair(long x, long y);
349 void DestroyClippingRegion();
350 long DeviceToLogicalX(long x);
351 long DeviceToLogicalXRel(long x);
352 long DeviceToLogicalY(long y);
353 long DeviceToLogicalYRel(long y);
354 void DrawArc(long x1, long y1, long x2, long y2, long xc, long yc);
355 void DrawCircle(long x, long y, long radius);
356 void DrawEllipse(long x, long y, long width, long height);
357 void DrawEllipticArc(long x, long y, long width, long height, long start, long end);
358 void DrawIcon(const wxIcon& icon, long x, long y);
359 void DrawLine(long x1, long y1, long x2, long y2);
360 void DrawLines(int LCOUNT, wxPoint* LIST, long xoffset=0, long yoffset=0);
361 void DrawPolygon(int LCOUNT, wxPoint* LIST, long xoffset=0, long yoffset=0,
362 int fill_style=wxODDEVEN_RULE);
363 void DrawPoint(long x, long y);
364 void DrawRectangle(long x, long y, long width, long height);
365 void DrawRoundedRectangle(long x, long y, long width, long height, long radius=20);
366 void DrawSpline(int LCOUNT, wxPoint* LIST);
367 void DrawText(const wxString& text, long x, long y);
371 void FloodFill(long x, long y, const wxColour& colour, int style=wxFLOOD_SURFACE);
372 wxBrush& GetBackground();
374 long GetCharHeight();
376 void GetClippingBox(long *OUTPUT, long *OUTPUT,
377 long *OUTPUT, long *OUTPUT);
379 int GetLogicalFunction();
381 bool GetOptimization();
384 %new wxColour* GetPixel(long x, long y) {
385 wxColour* wc = new wxColour();
386 self->GetPixel(x, y, wc);
390 %name(GetSizeTuple)void GetSize(int* OUTPUT, int* OUTPUT);
392 wxColour& GetTextBackground();
393 void GetTextExtent(const wxString& string, long *OUTPUT, long *OUTPUT);
394 %name(GetFullTextExtent)void GetTextExtent(const wxString& string,
395 long *OUTPUT, long *OUTPUT, long *OUTPUT, long* OUTPUT,
396 const wxFont* font = NULL);
397 wxColour& GetTextForeground();
398 long LogicalToDeviceX(long x);
399 long LogicalToDeviceXRel(long x);
400 long LogicalToDeviceY(long y);
401 long LogicalToDeviceYRel(long y);
407 void SetDeviceOrigin(long x, long y);
408 void SetBackground(const wxBrush& brush);
409 void SetBackgroundMode(int mode);
410 void SetClippingRegion(long x, long y, long width, long height);
411 void SetPalette(const wxPalette& colourMap);
412 void SetBrush(const wxBrush& brush);
413 void SetFont(const wxFont& font);
414 void SetLogicalFunction(int function);
415 void SetMapMode(int mode);
416 void SetOptimization(bool optimize);
417 void SetPen(const wxPen& pen);
418 void SetTextBackground(const wxColour& colour);
419 void SetTextForeground(const wxColour& colour);
420 void SetUserScale(double x_scale, double y_scale);
421 bool StartDoc(const wxString& message);
425 // Don't need this one anymore as wxWindows has one...
427 // // This one is my own creation...
428 // void DrawBitmap(wxBitmap& bitmap, long x, long y, bool swapPalette=TRUE) {
429 // wxMemoryDC* memDC = new wxMemoryDC;
430 // memDC->SelectObject(bitmap);
433 // self->SetPalette(*bitmap.GetPalette());
435 // self->Blit(x, y, bitmap.GetWidth(), bitmap.GetHeight(), memDC,
436 // 0, 0, self->GetLogicalFunction());
437 // memDC->SelectObject(wxNullBitmap);
442 void DrawBitmap(const wxBitmap& bitmap, long x, long y,
443 int useMask = FALSE);
448 //----------------------------------------------------------------------
450 class wxMemoryDC : public wxDC {
454 void SelectObject(const wxBitmap& bitmap);
457 %new wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC);
458 %{ // Alternate 'constructor'
459 wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC) {
460 return new wxMemoryDC(oldDC);
465 //---------------------------------------------------------------------------
467 class wxScreenDC : public wxDC {
471 bool StartDrawingOnTop(wxWindow* window);
472 %name(StartDrawingOnTopRect) bool StartDrawingOnTop(wxRect* rect = NULL);
473 bool EndDrawingOnTop();
476 //---------------------------------------------------------------------------
478 class wxClientDC : public wxDC {
480 wxClientDC(wxWindow* win);
483 //---------------------------------------------------------------------------
485 class wxPaintDC : public wxDC {
487 wxPaintDC(wxWindow* win);
490 //---------------------------------------------------------------------------
492 class wxWindowDC : public wxDC {
494 wxWindowDC(wxWindow* win);
497 //---------------------------------------------------------------------------
500 class wxPostScriptDC : public wxDC {
502 wxPostScriptDC(const wxString& output, bool interactive = TRUE, wxWindow* win = NULL);
506 //---------------------------------------------------------------------------
509 class wxPrinterDC : public wxDC {
511 wxPrinterDC(const wxString& driver, const wxString& device, const wxString& output,
512 bool interactive = TRUE, int orientation = wxPORTRAIT);
516 //---------------------------------------------------------------------------
519 class wxMetaFileDC : public wxDC {
521 wxMetaFileDC(const wxString& filename = wxPyEmptyStr);
526 //---------------------------------------------------------------------------
527 //---------------------------------------------------------------------------
534 extern wxFont *wxNORMAL_FONT;
535 extern wxFont *wxSMALL_FONT;
536 extern wxFont *wxITALIC_FONT;
537 extern wxFont *wxSWISS_FONT;
539 extern wxPen *wxRED_PEN;
540 extern wxPen *wxCYAN_PEN;
541 extern wxPen *wxGREEN_PEN;
542 extern wxPen *wxBLACK_PEN;
543 extern wxPen *wxWHITE_PEN;
544 extern wxPen *wxTRANSPARENT_PEN;
545 extern wxPen *wxBLACK_DASHED_PEN;
546 extern wxPen *wxGREY_PEN;
547 extern wxPen *wxMEDIUM_GREY_PEN;
548 extern wxPen *wxLIGHT_GREY_PEN;
550 extern wxBrush *wxBLUE_BRUSH;
551 extern wxBrush *wxGREEN_BRUSH;
552 extern wxBrush *wxWHITE_BRUSH;
553 extern wxBrush *wxBLACK_BRUSH;
554 extern wxBrush *wxTRANSPARENT_BRUSH;
555 extern wxBrush *wxCYAN_BRUSH;
556 extern wxBrush *wxRED_BRUSH;
557 extern wxBrush *wxGREY_BRUSH;
558 extern wxBrush *wxMEDIUM_GREY_BRUSH;
559 extern wxBrush *wxLIGHT_GREY_BRUSH;
561 extern wxColour *wxBLACK;
562 extern wxColour *wxWHITE;
563 extern wxColour *wxRED;
564 extern wxColour *wxBLUE;
565 extern wxColour *wxGREEN;
566 extern wxColour *wxCYAN;
567 extern wxColour *wxLIGHT_GREY;
569 extern wxCursor *wxSTANDARD_CURSOR;
570 extern wxCursor *wxHOURGLASS_CURSOR;
571 extern wxCursor *wxCROSS_CURSOR;
573 extern wxBitmap wxNullBitmap;
574 extern wxIcon wxNullIcon;
575 extern wxCursor wxNullCursor;
576 extern wxPen wxNullPen;
577 extern wxBrush wxNullBrush;
578 extern wxPalette wxNullPalette;
579 extern wxFont wxNullFont;
580 extern wxColour wxNullColour;
587 //---------------------------------------------------------------------------
591 wxPalette(int LCOUNT, byte* LIST, byte* LIST, byte* LIST);
594 int GetPixel(byte red, byte green, byte blue);
595 bool GetRGB(int pixel, byte* OUTPUT, byte* OUTPUT, byte* OUTPUT);
599 //---------------------------------------------------------------------------
602 wxIMAGELIST_DRAW_NORMAL ,
603 wxIMAGELIST_DRAW_TRANSPARENT,
604 wxIMAGELIST_DRAW_SELECTED,
605 wxIMAGELIST_DRAW_FOCUSED,
613 wxImageList(int width, int height, const bool mask=TRUE, int initialCount=1);
617 int Add(const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
618 %name(AddWithColourMask)int Add(const wxBitmap& bitmap, const wxColour& maskColour);
619 %name(AddIcon)int Add(const wxIcon& icon);
620 bool Replace(int index, const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
621 %name(ReplaceIcon)bool Replace(int index, const wxIcon& icon);
623 int Add(const wxBitmap& bitmap);
624 bool Replace(int index, const wxBitmap& bitmap);
627 bool Draw(int index, wxDC& dc, int x, int x, int flags = wxIMAGELIST_DRAW_NORMAL,
628 const bool solidBackground = FALSE);
631 bool Remove(int index);
636 //---------------------------------------------------------------------------