]> git.saurik.com Git - wxWidgets.git/blame - src/common/bmpbase.cpp
fixed typo in he check in SetSizeHints()
[wxWidgets.git] / src / common / bmpbase.cpp
CommitLineData
a04eec87
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: bitmap.cpp
3// Purpose: wxBitmapBase
4// Author: VaclavSlavik
5// Created: 2001/04/11
6// RCS-ID: $Id$
7// Copyright: (c) 2001, Vaclav Slavik
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifdef __GNUG__
12#pragma implementation "bitmapbase.h"
13#endif
14
9d4ca3aa
VS
15// For compilers that support precompilation, includes "wx.h".
16#include "wx/wxprec.h"
17
18#ifdef __BORLANDC__
19 #pragma hdrstop
20#endif
21
1bc822df 22#if defined(__WXMGL__) || defined(__WXMAC__) || defined(__WXMOTIF__)
ee058011 23
a04eec87
VS
24#include "wx/setup.h"
25#include "wx/utils.h"
26#include "wx/palette.h"
27#include "wx/bitmap.h"
28#include "wx/icon.h"
29#include "wx/log.h"
30#include "wx/image.h"
31#include "wx/module.h"
32
33IMPLEMENT_ABSTRACT_CLASS(wxBitmapBase, wxGDIObject)
34IMPLEMENT_ABSTRACT_CLASS(wxBitmapHandlerBase,wxObject)
35
36wxList wxBitmapBase::sm_handlers;
37
38void wxBitmapBase::AddHandler(wxBitmapHandlerBase *handler)
39{
40 sm_handlers.Append(handler);
41}
42
43void wxBitmapBase::InsertHandler(wxBitmapHandlerBase *handler)
44{
45 sm_handlers.Insert(handler);
46}
47
48bool wxBitmapBase::RemoveHandler(const wxString& name)
49{
50 wxBitmapHandler *handler = FindHandler(name);
51 if ( handler )
52 {
53 sm_handlers.DeleteObject(handler);
54 return TRUE;
55 }
56 else
57 return FALSE;
58}
59
60wxBitmapHandler *wxBitmapBase::FindHandler(const wxString& name)
61{
1bc822df 62 wxList::Node *node = sm_handlers.GetFirst();
a04eec87
VS
63 while ( node )
64 {
1bc822df 65 wxBitmapHandler *handler = (wxBitmapHandler *)node->GetData();
a04eec87
VS
66 if ( handler->GetName() == name )
67 return handler;
1bc822df 68 node = node->GetNext();
a04eec87
VS
69 }
70 return NULL;
71}
72
73wxBitmapHandler *wxBitmapBase::FindHandler(const wxString& extension, wxBitmapType bitmapType)
74{
1bc822df 75 wxList::Node *node = sm_handlers.GetFirst();
a04eec87
VS
76 while ( node )
77 {
1bc822df 78 wxBitmapHandler *handler = (wxBitmapHandler *)node->GetData();
a04eec87
VS
79 if ( handler->GetExtension() == extension &&
80 (bitmapType == -1 || handler->GetType() == bitmapType) )
81 return handler;
1bc822df 82 node = node->GetNext();
a04eec87
VS
83 }
84 return NULL;
85}
86
87wxBitmapHandler *wxBitmapBase::FindHandler(wxBitmapType bitmapType)
88{
1bc822df 89 wxList::Node *node = sm_handlers.GetFirst();
a04eec87
VS
90 while ( node )
91 {
1bc822df 92 wxBitmapHandler *handler = (wxBitmapHandler *)node->GetData();
a04eec87
VS
93 if (handler->GetType() == bitmapType)
94 return handler;
1bc822df 95 node = node->GetNext();
a04eec87
VS
96 }
97 return NULL;
98}
99
100void wxBitmapBase::CleanUpHandlers()
101{
1bc822df 102 wxList::Node *node = sm_handlers.GetFirst();
a04eec87
VS
103 while ( node )
104 {
1bc822df
MB
105 wxBitmapHandler *handler = (wxBitmapHandler *)node->GetData();
106 wxList::Node *next = node->GetNext();
a04eec87
VS
107 delete handler;
108 delete node;
109 node = next;
110 }
111}
112
a04eec87
VS
113class wxBitmapBaseModule: public wxModule
114{
115DECLARE_DYNAMIC_CLASS(wxBitmapBaseModule)
116public:
117 wxBitmapBaseModule() {}
118 bool OnInit() { wxBitmap::InitStandardHandlers(); return TRUE; };
119 void OnExit() { wxBitmap::CleanUpHandlers(); };
120};
121
122IMPLEMENT_DYNAMIC_CLASS(wxBitmapBaseModule, wxModule)
ee058011 123
1bc822df 124#endif // defined(__WXMGL__) || defined(__WXMAC__) || defined(__WXMOTIF__)
ee058011 125