]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/xpmhand.h
Fixes for 16-bit compilation
[wxWidgets.git] / include / wx / msw / xpmhand.h
CommitLineData
2fd284a4
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: xpmhand.h
3// Purpose: XPM bitmap handler
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma interface "xpmhand.h"
14#endif
15
16#ifndef _WX_XPMHAND_H_
17#define _WX_XPMHAND_H_
18
19class WXDLLEXPORT wxXPMFileHandler: public wxBitmapHandler
20{
21 DECLARE_DYNAMIC_CLASS(wxXPMFileHandler)
22public:
23 inline wxXPMFileHandler(void)
24 {
25 m_name = "XPM bitmap file";
26 m_extension = "xpm";
27 m_type = wxBITMAP_TYPE_XPM;
28 };
29
30 virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
31 int desiredWidth = -1, int desiredHeight = -1);
32 virtual bool SaveFile(wxBitmap *bitmap, const wxString& name, int type, const wxPalette *palette = NULL);
33};
34
35class WXDLLEXPORT wxXPMDataHandler: public wxBitmapHandler
36{
37 DECLARE_DYNAMIC_CLASS(wxXPMDataHandler)
38public:
39 inline wxXPMDataHandler(void)
40 {
41 m_name = "XPM bitmap data";
42 m_extension = "xpm";
43 m_type = wxBITMAP_TYPE_XPM_DATA;
44 };
45
46 virtual bool Create(wxBitmap *bitmap, void *data, long flags, int width, int height, int depth = 1);
47};
48
49#endif
50 // _WX_XPMHAND_H_
51