1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Common GDI classes
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "gdicmn.h"
17 #define XtDisplay XTDISPLAY
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/gdicmn.h"
31 #include "wx/bitmap.h"
33 #include "wx/cursor.h"
35 #include "wx/palette.h"
39 #include "wx/settings.h"
40 #include "wx/hashmap.h"
46 #include "wx/msw/wrapwin.h"
51 #pragma message disable nosimpint
55 #pragma message enable nosimpint
64 #include "wx/mac/private.h"
65 #include "wx/mac/uma.h"
68 #if wxUSE_EXTENDED_RTTI
72 template<> void wxStringReadValue(const wxString
&s
, wxPoint
&data
)
74 wxSscanf(s
, wxT("%d,%d"), &data
.x
, &data
.y
) ;
77 template<> void wxStringWriteValue(wxString
&s
, const wxPoint
&data
)
79 s
= wxString::Format(wxT("%d,%d"), data
.x
, data
.y
) ;
82 wxCUSTOM_TYPE_INFO(wxPoint
, wxToStringConverter
<wxPoint
> , wxFromStringConverter
<wxPoint
>)
84 template<> void wxStringReadValue(const wxString
&s
, wxSize
&data
)
86 wxSscanf(s
, wxT("%d,%d"), &data
.x
, &data
.y
) ;
89 template<> void wxStringWriteValue(wxString
&s
, const wxSize
&data
)
91 s
= wxString::Format(wxT("%d,%d"), data
.x
, data
.y
) ;
94 wxCUSTOM_TYPE_INFO(wxSize
, wxToStringConverter
<wxSize
> , wxFromStringConverter
<wxSize
>)
98 IMPLEMENT_ABSTRACT_CLASS(wxDCBase
, wxObject
)
100 wxRect::wxRect(const wxPoint
& point1
, const wxPoint
& point2
)
104 width
= point2
.x
- point1
.x
;
105 height
= point2
.y
- point1
.y
;
122 wxRect::wxRect(const wxPoint
& point
, const wxSize
& size
)
124 x
= point
.x
; y
= point
.y
;
125 width
= size
.x
; height
= size
.y
;
128 bool wxRect::operator==(const wxRect
& rect
) const
130 return ((x
== rect
.x
) &&
132 (width
== rect
.width
) &&
133 (height
== rect
.height
));
136 wxRect
& wxRect::operator += (const wxRect
& rect
)
138 *this = (*this + rect
);
142 wxRect
wxRect::operator + (const wxRect
& rect
) const
144 int x1
= wxMin(this->x
, rect
.x
);
145 int y1
= wxMin(this->y
, rect
.y
);
146 int y2
= wxMax(y
+height
, rect
.height
+rect
.y
);
147 int x2
= wxMax(x
+width
, rect
.width
+rect
.x
);
148 return wxRect(x1
, y1
, x2
-x1
, y2
-y1
);
151 wxRect
& wxRect::Inflate(wxCoord dx
, wxCoord dy
)
158 // check that we didn't make the rectangle invalid by accident (you almost
159 // never want to have negative coords and never want negative size)
165 // what else can we do?
174 bool wxRect::Inside(int cx
, int cy
) const
176 return ( (cx
>= x
) && (cy
>= y
)
177 && ((cy
- y
) < height
)
178 && ((cx
- x
) < width
)
182 wxRect
& wxRect::Intersect(const wxRect
& rect
)
191 if ( x2
> rect
.GetRight() )
192 x2
= rect
.GetRight();
193 if ( y2
> rect
.GetBottom() )
194 y2
= rect
.GetBottom();
199 if ( width
<= 0 || height
<= 0 )
208 bool wxRect::Intersects(const wxRect
& rect
) const
210 wxRect r
= Intersect(rect
);
212 // if there is no intersection, both width and height are 0
216 // ============================================================================
218 // ============================================================================
220 WX_DECLARE_STRING_HASH_MAP( wxColour
*, wxStringToColourHashMap
);
222 // ----------------------------------------------------------------------------
223 // wxColourDatabase ctor/dtor
224 // ----------------------------------------------------------------------------
226 wxColourDatabase::wxColourDatabase ()
228 // will be created on demand in Initialize()
232 wxColourDatabase::~wxColourDatabase ()
236 WX_CLEAR_HASH_MAP(wxStringToColourHashMap
, *m_map
);
242 delete [] m_palTable
;
246 // Colour database stuff
247 void wxColourDatabase::Initialize()
251 // already initialized
255 m_map
= new wxStringToColourHashMap
;
257 static const struct wxColourDesc
264 {wxT("AQUAMARINE"),112, 219, 147},
265 {wxT("BLACK"),0, 0, 0},
266 {wxT("BLUE"), 0, 0, 255},
267 {wxT("BLUE VIOLET"), 159, 95, 159},
268 {wxT("BROWN"), 165, 42, 42},
269 {wxT("CADET BLUE"), 95, 159, 159},
270 {wxT("CORAL"), 255, 127, 0},
271 {wxT("CORNFLOWER BLUE"), 66, 66, 111},
272 {wxT("CYAN"), 0, 255, 255},
273 {wxT("DARK GREY"), 47, 47, 47}, // ?
275 {wxT("DARK GREEN"), 47, 79, 47},
276 {wxT("DARK OLIVE GREEN"), 79, 79, 47},
277 {wxT("DARK ORCHID"), 153, 50, 204},
278 {wxT("DARK SLATE BLUE"), 107, 35, 142},
279 {wxT("DARK SLATE GREY"), 47, 79, 79},
280 {wxT("DARK TURQUOISE"), 112, 147, 219},
281 {wxT("DIM GREY"), 84, 84, 84},
282 {wxT("FIREBRICK"), 142, 35, 35},
283 {wxT("FOREST GREEN"), 35, 142, 35},
284 {wxT("GOLD"), 204, 127, 50},
285 {wxT("GOLDENROD"), 219, 219, 112},
286 {wxT("GREY"), 128, 128, 128},
287 {wxT("GREEN"), 0, 255, 0},
288 {wxT("GREEN YELLOW"), 147, 219, 112},
289 {wxT("INDIAN RED"), 79, 47, 47},
290 {wxT("KHAKI"), 159, 159, 95},
291 {wxT("LIGHT BLUE"), 191, 216, 216},
292 {wxT("LIGHT GREY"), 192, 192, 192},
293 {wxT("LIGHT STEEL BLUE"), 143, 143, 188},
294 {wxT("LIME GREEN"), 50, 204, 50},
295 {wxT("LIGHT MAGENTA"), 255, 0, 255},
296 {wxT("MAGENTA"), 255, 0, 255},
297 {wxT("MAROON"), 142, 35, 107},
298 {wxT("MEDIUM AQUAMARINE"), 50, 204, 153},
299 {wxT("MEDIUM GREY"), 100, 100, 100},
300 {wxT("MEDIUM BLUE"), 50, 50, 204},
301 {wxT("MEDIUM FOREST GREEN"), 107, 142, 35},
302 {wxT("MEDIUM GOLDENROD"), 234, 234, 173},
303 {wxT("MEDIUM ORCHID"), 147, 112, 219},
304 {wxT("MEDIUM SEA GREEN"), 66, 111, 66},
305 {wxT("MEDIUM SLATE BLUE"), 127, 0, 255},
306 {wxT("MEDIUM SPRING GREEN"), 127, 255, 0},
307 {wxT("MEDIUM TURQUOISE"), 112, 219, 219},
308 {wxT("MEDIUM VIOLET RED"), 219, 112, 147},
309 {wxT("MIDNIGHT BLUE"), 47, 47, 79},
310 {wxT("NAVY"), 35, 35, 142},
311 {wxT("ORANGE"), 204, 50, 50},
312 {wxT("ORANGE RED"), 255, 0, 127},
313 {wxT("ORCHID"), 219, 112, 219},
314 {wxT("PALE GREEN"), 143, 188, 143},
315 {wxT("PINK"), 188, 143, 234},
316 {wxT("PLUM"), 234, 173, 234},
317 {wxT("PURPLE"), 176, 0, 255},
318 {wxT("RED"), 255, 0, 0},
319 {wxT("SALMON"), 111, 66, 66},
320 {wxT("SEA GREEN"), 35, 142, 107},
321 {wxT("SIENNA"), 142, 107, 35},
322 {wxT("SKY BLUE"), 50, 153, 204},
323 {wxT("SLATE BLUE"), 0, 127, 255},
324 {wxT("SPRING GREEN"), 0, 255, 127},
325 {wxT("STEEL BLUE"), 35, 107, 142},
326 {wxT("TAN"), 219, 147, 112},
327 {wxT("THISTLE"), 216, 191, 216},
328 {wxT("TURQUOISE"), 173, 234, 234},
329 {wxT("VIOLET"), 79, 47, 79},
330 {wxT("VIOLET RED"), 204, 50, 153},
331 {wxT("WHEAT"), 216, 216, 191},
332 {wxT("WHITE"), 255, 255, 255},
333 {wxT("YELLOW"), 255, 255, 0},
334 {wxT("YELLOW GREEN"), 153, 204, 50},
339 for ( n
= 0; n
< WXSIZEOF(wxColourTable
); n
++ )
341 const wxColourDesc
& cc
= wxColourTable
[n
];
342 (*m_map
)[cc
.name
] = new wxColour(cc
.r
, cc
.g
, cc
.b
);
346 m_palTable
= new long[n
];
347 for ( n
= 0; n
< WXSIZEOF(wxColourTable
); n
++ )
349 const wxColourDesc
& cc
= wxColourTable
[n
];
350 m_palTable
[n
] = OS2RGB(cc
.r
,cc
.g
,cc
.b
);
356 // ----------------------------------------------------------------------------
357 // wxColourDatabase operations
358 // ----------------------------------------------------------------------------
360 void wxColourDatabase::AddColour(const wxString
& name
, const wxColour
& colour
)
364 // canonicalize the colour names before using them as keys: they should be
366 wxString colName
= name
;
369 // ... and we also allow both grey/gray
370 wxString colNameAlt
= colName
;
371 if ( !colNameAlt
.Replace(_T("GRAY"), _T("GREY")) )
373 // but in this case it is not necessary so avoid extra search below
377 wxStringToColourHashMap::iterator it
= m_map
->find(colName
);
378 if ( it
== m_map
->end() && !colNameAlt
.empty() )
379 it
= m_map
->find(colNameAlt
);
380 if ( it
!= m_map
->end() )
382 *(it
->second
) = colour
;
386 (*m_map
)[name
] = new wxColour(colour
);
390 wxColour
wxColourDatabase::Find(const wxString
& colour
) const
392 wxColourDatabase
* const self
= wxConstCast(this, wxColourDatabase
);
395 // first look among the existing colours
397 // make the comparaison case insensitive and also match both grey and gray
398 wxString colName
= colour
;
400 wxString colNameAlt
= colName
;
401 if ( !colNameAlt
.Replace(_T("GRAY"), _T("GREY")) )
404 wxStringToColourHashMap::iterator it
= m_map
->find(colName
);
405 if ( it
== m_map
->end() && !colNameAlt
.empty() )
406 it
= m_map
->find(colNameAlt
);
407 if ( it
!= m_map
->end() )
408 return *(it
->second
);
410 // if we didn't find it, query the system, maybe it knows about it
411 #if defined(__WXGTK__) || defined(__X__)
412 wxColour col
= wxColour::CreateByName(colour
);
417 self
->AddColour(colour
, col
);
422 // TODO: move this to wxColour::CreateByName()
426 Display
*display
= XtDisplay((Widget
) wxTheApp
->GetTopLevelWidget()) ;
429 Display
* display
= (Display
*) wxGetDisplay();
431 /* MATTHEW: [4] Use wxGetMainColormap */
432 if (!XParseColor(display
, (Colormap
) wxTheApp
->GetMainColormap((WXDisplay
*) display
), colour
.ToAscii() ,&xcolour
))
436 unsigned char r
= (unsigned char)(xcolour
.red
);
437 unsigned char g
= (unsigned char)(xcolour
.green
);
438 unsigned char b
= (unsigned char)(xcolour
.blue
);
440 unsigned char r
= (unsigned char)(xcolour
.red
>> 8);
441 unsigned char g
= (unsigned char)(xcolour
.green
>> 8);
442 unsigned char b
= (unsigned char)(xcolour
.blue
>> 8);
445 wxColour
col(r
, g
, b
);
446 AddColour(colour
, col
);
449 #else // other platform
454 wxString
wxColourDatabase::FindName(const wxColour
& colour
) const
456 wxColourDatabase
* const self
= wxConstCast(this, wxColourDatabase
);
459 typedef wxStringToColourHashMap::iterator iterator
;
461 for ( iterator it
= m_map
->begin(), en
= m_map
->end(); it
!= en
; ++it
)
463 if ( *(it
->second
) == colour
)
467 return wxEmptyString
;
470 // ----------------------------------------------------------------------------
471 // deprecated wxColourDatabase methods
472 // ----------------------------------------------------------------------------
474 wxColour
*wxColourDatabase::FindColour(const wxString
& name
)
476 // using a static variable here is not the most elegant solution but unless
477 // we want to make wxStringToColourHashMap public (i.e. move it to the
478 // header) so that we could have a member function returning
479 // wxStringToColourHashMap::iterator, there is really no good way to do it
482 // and knowing that this function is going to disappear in the next release
483 // anyhow I don't want to waste time on this
484 static wxColour s_col
;
493 // ============================================================================
495 // ============================================================================
497 void wxInitializeStockLists()
499 wxTheColourDatabase
= new wxColourDatabase
;
501 wxTheBrushList
= new wxBrushList
;
502 wxThePenList
= new wxPenList
;
503 wxTheFontList
= new wxFontList
;
504 wxTheBitmapList
= new wxBitmapList
;
507 void wxInitializeStockObjects ()
513 // wxFontPool = new XFontPool;
516 // why under MSW fonts shouldn't have the standard system size?
519 static const int sizeFont = 10;
523 #if defined(__WXMAC__)
530 GetThemeFont(kThemeSystemFont
, GetApplicationScript() , fontName
, &fontSize
, &fontStyle
) ;
531 sizeFont
= fontSize
;
532 wxNORMAL_FONT
= new wxFont (fontSize
, wxMODERN
, wxNORMAL
, wxNORMAL
, false , wxMacMakeStringFromPascal(fontName
) );
533 #elif defined(__WXPM__)
534 static const int sizeFont
= 12;
536 wxNORMAL_FONT
= new wxFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
537 static const int sizeFont
= wxNORMAL_FONT
->GetPointSize();
540 #if defined(__WXPM__)
542 // Basic OS/2 has a fairly limited number of fonts and these are as good
543 // as I can do to get something that looks halfway "wx" normal
545 wxNORMAL_FONT
= new wxFont (sizeFont
, wxMODERN
, wxNORMAL
, wxBOLD
);
546 wxSMALL_FONT
= new wxFont (sizeFont
- 4, wxSWISS
, wxNORMAL
, wxNORMAL
); /* Helv */
547 wxITALIC_FONT
= new wxFont (sizeFont
, wxROMAN
, wxITALIC
, wxNORMAL
);
548 wxSWISS_FONT
= new wxFont (sizeFont
, wxSWISS
, wxNORMAL
, wxNORMAL
); /* Helv */
549 #elif defined(__WXMAC__)
550 wxSWISS_FONT
= new wxFont (sizeFont
, wxSWISS
, wxNORMAL
, wxNORMAL
); /* Helv */
551 wxITALIC_FONT
= new wxFont (sizeFont
, wxROMAN
, wxITALIC
, wxNORMAL
);
552 GetThemeFont(kThemeSmallSystemFont
, GetApplicationScript() , fontName
, &fontSize
, &fontStyle
) ;
553 wxSMALL_FONT
= new wxFont (fontSize
, wxSWISS
, wxNORMAL
, wxNORMAL
, false , wxMacMakeStringFromPascal( fontName
) );
555 wxSMALL_FONT
= new wxFont (sizeFont
- 2, wxSWISS
, wxNORMAL
, wxNORMAL
);
556 wxITALIC_FONT
= new wxFont (sizeFont
, wxROMAN
, wxITALIC
, wxNORMAL
);
557 wxSWISS_FONT
= new wxFont (sizeFont
, wxSWISS
, wxNORMAL
, wxNORMAL
);
560 wxRED_PEN
= new wxPen (wxT("RED"), 1, wxSOLID
);
561 wxCYAN_PEN
= new wxPen (wxT("CYAN"), 1, wxSOLID
);
562 wxGREEN_PEN
= new wxPen (wxT("GREEN"), 1, wxSOLID
);
563 wxBLACK_PEN
= new wxPen (wxT("BLACK"), 1, wxSOLID
);
564 wxWHITE_PEN
= new wxPen (wxT("WHITE"), 1, wxSOLID
);
565 wxTRANSPARENT_PEN
= new wxPen (wxT("BLACK"), 1, wxTRANSPARENT
);
566 wxBLACK_DASHED_PEN
= new wxPen (wxT("BLACK"), 1, wxSHORT_DASH
);
567 wxGREY_PEN
= new wxPen (wxT("GREY"), 1, wxSOLID
);
568 wxMEDIUM_GREY_PEN
= new wxPen (wxT("MEDIUM GREY"), 1, wxSOLID
);
569 wxLIGHT_GREY_PEN
= new wxPen (wxT("LIGHT GREY"), 1, wxSOLID
);
571 wxBLUE_BRUSH
= new wxBrush (wxT("BLUE"), wxSOLID
);
572 wxGREEN_BRUSH
= new wxBrush (wxT("GREEN"), wxSOLID
);
573 wxWHITE_BRUSH
= new wxBrush (wxT("WHITE"), wxSOLID
);
574 wxBLACK_BRUSH
= new wxBrush (wxT("BLACK"), wxSOLID
);
575 wxTRANSPARENT_BRUSH
= new wxBrush (wxT("BLACK"), wxTRANSPARENT
);
576 wxCYAN_BRUSH
= new wxBrush (wxT("CYAN"), wxSOLID
);
577 wxRED_BRUSH
= new wxBrush (wxT("RED"), wxSOLID
);
578 wxGREY_BRUSH
= new wxBrush (wxT("GREY"), wxSOLID
);
579 wxMEDIUM_GREY_BRUSH
= new wxBrush (wxT("MEDIUM GREY"), wxSOLID
);
580 wxLIGHT_GREY_BRUSH
= new wxBrush (wxT("LIGHT GREY"), wxSOLID
);
582 wxBLACK
= new wxColour (wxT("BLACK"));
583 wxWHITE
= new wxColour (wxT("WHITE"));
584 wxRED
= new wxColour (wxT("RED"));
585 wxBLUE
= new wxColour (wxT("BLUE"));
586 wxGREEN
= new wxColour (wxT("GREEN"));
587 wxCYAN
= new wxColour (wxT("CYAN"));
588 wxLIGHT_GREY
= new wxColour (wxT("LIGHT GREY"));
590 wxSTANDARD_CURSOR
= new wxCursor (wxCURSOR_ARROW
);
591 wxHOURGLASS_CURSOR
= new wxCursor (wxCURSOR_WAIT
);
592 wxCROSS_CURSOR
= new wxCursor (wxCURSOR_CROSS
);
595 void wxDeleteStockObjects ()
597 wxDELETE(wxNORMAL_FONT
);
598 wxDELETE(wxSMALL_FONT
);
599 wxDELETE(wxITALIC_FONT
);
600 wxDELETE(wxSWISS_FONT
);
603 wxDELETE(wxCYAN_PEN
);
604 wxDELETE(wxGREEN_PEN
);
605 wxDELETE(wxBLACK_PEN
);
606 wxDELETE(wxWHITE_PEN
);
607 wxDELETE(wxTRANSPARENT_PEN
);
608 wxDELETE(wxBLACK_DASHED_PEN
);
609 wxDELETE(wxGREY_PEN
);
610 wxDELETE(wxMEDIUM_GREY_PEN
);
611 wxDELETE(wxLIGHT_GREY_PEN
);
613 wxDELETE(wxBLUE_BRUSH
);
614 wxDELETE(wxGREEN_BRUSH
);
615 wxDELETE(wxWHITE_BRUSH
);
616 wxDELETE(wxBLACK_BRUSH
);
617 wxDELETE(wxTRANSPARENT_BRUSH
);
618 wxDELETE(wxCYAN_BRUSH
);
619 wxDELETE(wxRED_BRUSH
);
620 wxDELETE(wxGREY_BRUSH
);
621 wxDELETE(wxMEDIUM_GREY_BRUSH
);
622 wxDELETE(wxLIGHT_GREY_BRUSH
);
630 wxDELETE(wxLIGHT_GREY
);
632 wxDELETE(wxSTANDARD_CURSOR
);
633 wxDELETE(wxHOURGLASS_CURSOR
);
634 wxDELETE(wxCROSS_CURSOR
);
637 void wxDeleteStockLists()
639 wxDELETE(wxTheBrushList
);
640 wxDELETE(wxThePenList
);
641 wxDELETE(wxTheFontList
);
642 wxDELETE(wxTheBitmapList
);
645 // ============================================================================
646 // wxTheXXXList stuff (semi-obsolete)
647 // ============================================================================
649 wxBitmapList::wxBitmapList()
653 wxBitmapList::~wxBitmapList ()
655 wxList::compatibility_iterator node
= GetFirst ();
658 wxBitmap
*bitmap
= (wxBitmap
*) node
->GetData ();
659 wxList::compatibility_iterator next
= node
->GetNext ();
660 if (bitmap
->GetVisible())
666 // Pen and Brush lists
667 wxPenList::~wxPenList ()
669 wxList::compatibility_iterator node
= GetFirst ();
672 wxPen
*pen
= (wxPen
*) node
->GetData ();
673 wxList::compatibility_iterator next
= node
->GetNext ();
674 if (pen
->GetVisible())
680 void wxPenList::AddPen (wxPen
* pen
)
685 void wxPenList::RemovePen (wxPen
* pen
)
690 wxPen
*wxPenList::FindOrCreatePen (const wxColour
& colour
, int width
, int style
)
692 for (wxList::compatibility_iterator node
= GetFirst (); node
; node
= node
->GetNext ())
694 wxPen
*each_pen
= (wxPen
*) node
->GetData ();
696 each_pen
->GetVisible() &&
697 each_pen
->GetWidth () == width
&&
698 each_pen
->GetStyle () == style
&&
699 each_pen
->GetColour ().Red () == colour
.Red () &&
700 each_pen
->GetColour ().Green () == colour
.Green () &&
701 each_pen
->GetColour ().Blue () == colour
.Blue ())
705 wxPen
*pen
= new wxPen (colour
, width
, style
);
708 // don't save the invalid pens in the list
716 // we'll delete it ourselves later
717 pen
->SetVisible(TRUE
);
722 wxBrushList::~wxBrushList ()
724 wxList::compatibility_iterator node
= GetFirst ();
727 wxBrush
*brush
= (wxBrush
*) node
->GetData ();
728 wxList::compatibility_iterator next
= node
->GetNext ();
729 if (brush
&& brush
->GetVisible())
735 void wxBrushList::AddBrush (wxBrush
* brush
)
740 wxBrush
*wxBrushList::FindOrCreateBrush (const wxColour
& colour
, int style
)
742 for (wxList::compatibility_iterator node
= GetFirst (); node
; node
= node
->GetNext ())
744 wxBrush
*each_brush
= (wxBrush
*) node
->GetData ();
746 each_brush
->GetVisible() &&
747 each_brush
->GetStyle () == style
&&
748 each_brush
->GetColour ().Red () == colour
.Red () &&
749 each_brush
->GetColour ().Green () == colour
.Green () &&
750 each_brush
->GetColour ().Blue () == colour
.Blue ())
754 wxBrush
*brush
= new wxBrush (colour
, style
);
758 // don't put the brushes we failed to create into the list
766 // we'll delete it ourselves later
767 brush
->SetVisible(TRUE
);
772 void wxBrushList::RemoveBrush (wxBrush
* brush
)
774 DeleteObject (brush
);
777 wxFontList::~wxFontList ()
779 wxList::compatibility_iterator node
= GetFirst ();
782 // Only delete objects that are 'visible', i.e.
783 // that have been created using FindOrCreate...,
784 // where the pointers are expected to be shared
785 // (and therefore not deleted by any one part of an app).
786 wxFont
*font
= (wxFont
*) node
->GetData ();
787 wxList::compatibility_iterator next
= node
->GetNext ();
788 if (font
->GetVisible())
794 void wxFontList::AddFont (wxFont
* font
)
799 void wxFontList::RemoveFont (wxFont
* font
)
804 wxFont
*wxFontList::FindOrCreateFont(int pointSize
,
809 const wxString
& facename
,
810 wxFontEncoding encoding
)
812 wxFont
*font
= (wxFont
*)NULL
;
813 wxList::compatibility_iterator node
;
814 for ( node
= GetFirst(); node
; node
= node
->GetNext() )
816 font
= (wxFont
*)node
->GetData();
817 if ( font
->GetVisible() &&
819 font
->GetPointSize () == pointSize
&&
820 font
->GetStyle () == style
&&
821 font
->GetWeight () == weight
&&
822 font
->GetUnderlined () == underline
)
824 int fontFamily
= font
->GetFamily();
826 #if defined(__WXGTK__)
827 // under GTK the default family is wxSWISS, so looking for a font
828 // with wxDEFAULT family should return a wxSWISS one instead of
829 // creating a new one
830 bool same
= (fontFamily
== family
) ||
831 (fontFamily
== wxSWISS
&& family
== wxDEFAULT
);
833 // VZ: but why elsewhere do we require an exact match? mystery...
834 bool same
= fontFamily
== family
;
837 // empty facename matches anything at all: this is bad because
838 // depending on which fonts are already created, we might get back
839 // a different font if we create it with empty facename, but it is
840 // still better than never matching anything in the cache at all
842 if ( same
&& !!facename
)
844 const wxString
& fontFace
= font
->GetFaceName();
846 // empty facename matches everything
847 same
= !fontFace
|| fontFace
== facename
;
850 if ( same
&& (encoding
!= wxFONTENCODING_DEFAULT
) )
852 // have to match the encoding too
853 same
= font
->GetEncoding() == encoding
;
865 // font not found, create the new one
866 font
= new wxFont(pointSize
, family
, style
, weight
,
867 underline
, facename
, encoding
);
871 // and mark it as being cacheable
872 font
->SetVisible(TRUE
);
878 void wxBitmapList::AddBitmap(wxBitmap
*bitmap
)
883 void wxBitmapList::RemoveBitmap(wxBitmap
*bitmap
)
885 DeleteObject(bitmap
);
888 wxSize
wxGetDisplaySize()
891 wxDisplaySize(& x
, & y
);
895 wxRect
wxGetClientDisplayRect()
897 int x
, y
, width
, height
;
898 wxClientDisplayRect(&x
, &y
, &width
, &height
); // call plat-specific version
899 return wxRect(x
, y
, width
, height
);
902 wxSize
wxGetDisplaySizeMM()
905 wxDisplaySizeMM(& x
, & y
);
909 wxResourceCache::~wxResourceCache ()
911 wxList::compatibility_iterator node
= GetFirst ();
913 wxObject
*item
= (wxObject
*)node
->GetData();
916 node
= node
->GetNext ();