]> git.saurik.com Git - wxWidgets.git/blame - src/palmos/gdiimage.cpp
added new files which were generated by bakefile but were not in cvs for some reason
[wxWidgets.git] / src / palmos / gdiimage.cpp
CommitLineData
ffecfa5a 1///////////////////////////////////////////////////////////////////////////////
e2731512 2// Name: src/palmos/gdiimage.cpp
ffecfa5a 3// Purpose: wxGDIImage implementation
e2731512 4// Author: William Osborne - minimal working wxPalmOS port
ffecfa5a
JS
5// Modified by:
6// Created: 10/13/04
e2731512 7// RCS-ID: $Id$
ffecfa5a
JS
8// Copyright: (c) William Osborne
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
ffecfa5a
JS
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
27#ifndef WX_PRECOMP
28 #include "wx/string.h"
29 #include "wx/log.h"
30#endif // WX_PRECOMP
31
32#include "wx/app.h"
33
34#include "wx/bitmap.h"
35#include "wx/palmos/gdiimage.h"
36
37#if wxUSE_WXDIB
38#include "wx/palmos/dib.h"
39#endif
40
41#include "wx/file.h"
42
43#include "wx/listimpl.cpp"
44WX_DEFINE_LIST(wxGDIImageHandlerList);
45
46// ----------------------------------------------------------------------------
47// auxiliary functions
48// ----------------------------------------------------------------------------
49
50// ----------------------------------------------------------------------------
51// private classes
52// ----------------------------------------------------------------------------
53
54// ============================================================================
55// implementation
56// ============================================================================
57
58wxGDIImageHandlerList wxGDIImage::ms_handlers;
59
60// ----------------------------------------------------------------------------
61// wxGDIImage functions forwarded to wxGDIImageRefData
62// ----------------------------------------------------------------------------
63
64bool wxGDIImage::FreeResource(bool WXUNUSED(force))
65{
66 return false;
67}
68
69WXHANDLE wxGDIImage::GetResourceHandle() const
70{
71 return NULL;
72}
73
74// ----------------------------------------------------------------------------
75// wxGDIImage handler stuff
76// ----------------------------------------------------------------------------
77
78void wxGDIImage::AddHandler(wxGDIImageHandler *handler)
79{
80}
81
82void wxGDIImage::InsertHandler(wxGDIImageHandler *handler)
83{
84}
85
86bool wxGDIImage::RemoveHandler(const wxString& name)
87{
88 return false;
89}
90
91wxGDIImageHandler *wxGDIImage::FindHandler(const wxString& name)
92{
93 return NULL;
94}
95
96wxGDIImageHandler *wxGDIImage::FindHandler(const wxString& extension,
97 long type)
98{
99 return NULL;
100}
101
102wxGDIImageHandler *wxGDIImage::FindHandler(long type)
103{
104 return NULL;
105}
106
107void wxGDIImage::CleanUpHandlers()
108{
109}
110
111void wxGDIImage::InitStandardHandlers()
112{
113}
114
115