]>
Commit | Line | Data |
---|---|---|
a24aff65 | 1 | ///////////////////////////////////////////////////////////////////////////// |
1b88201f | 2 | // Name: wx/cocoa/bitmap.h |
a24aff65 | 3 | // Purpose: wxBitmap class |
d135b1a5 | 4 | // Author: David Elliott |
a24aff65 | 5 | // Modified by: |
d135b1a5 | 6 | // Created: 2003/07/19 |
a24aff65 | 7 | // RCS-ID: $Id$ |
d135b1a5 | 8 | // Copyright: (c) 2003 David Elliott |
1b88201f | 9 | // Licence: wxWindows licence |
a24aff65 DE |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
d135b1a5 DE |
12 | #ifndef __WX_COCOA_BITMAP_H__ |
13 | #define __WX_COCOA_BITMAP_H__ | |
a24aff65 DE |
14 | |
15 | #include "wx/palette.h" | |
16 | ||
17 | // Bitmap | |
b5dbe15d VS |
18 | class WXDLLIMPEXP_FWD_CORE wxBitmap; |
19 | class WXDLLIMPEXP_FWD_CORE wxIcon; | |
20 | class WXDLLIMPEXP_FWD_CORE wxCursor; | |
21 | class WXDLLIMPEXP_FWD_CORE wxImage; | |
22 | class WXDLLIMPEXP_FWD_CORE wxPixelDataBase; | |
a24aff65 | 23 | |
d135b1a5 DE |
24 | // ======================================================================== |
25 | // wxMask | |
26 | // ======================================================================== | |
d135b1a5 | 27 | |
016b0643 | 28 | // A mask is a 1-bit alpha bitmap used for drawing bitmaps transparently. |
a24aff65 DE |
29 | class WXDLLEXPORT wxMask: public wxObject |
30 | { | |
31 | DECLARE_DYNAMIC_CLASS(wxMask) | |
a24aff65 | 32 | public: |
016b0643 | 33 | wxMask(); |
a24aff65 | 34 | |
016b0643 DE |
35 | // Construct a mask from a bitmap and a colour indicating |
36 | // the transparent area | |
37 | wxMask(const wxBitmap& bitmap, const wxColour& colour); | |
a24aff65 | 38 | |
016b0643 DE |
39 | // Construct a mask from a bitmap and a palette index indicating |
40 | // the transparent area | |
41 | wxMask(const wxBitmap& bitmap, int paletteIndex); | |
a24aff65 | 42 | |
016b0643 DE |
43 | // Construct a mask from a mono bitmap (copies the bitmap). |
44 | wxMask(const wxBitmap& bitmap); | |
a24aff65 | 45 | |
319fe103 DE |
46 | // Copy constructor |
47 | wxMask(const wxMask& src); | |
48 | ||
d3c7fc99 | 49 | virtual ~wxMask(); |
a24aff65 | 50 | |
016b0643 DE |
51 | bool Create(const wxBitmap& bitmap, const wxColour& colour); |
52 | bool Create(const wxBitmap& bitmap, int paletteIndex); | |
53 | bool Create(const wxBitmap& bitmap); | |
a24aff65 | 54 | |
016b0643 DE |
55 | // wxCocoa |
56 | inline WX_NSBitmapImageRep GetNSBitmapImageRep() | |
57 | { return m_cocoaNSBitmapImageRep; } | |
a24aff65 | 58 | protected: |
016b0643 | 59 | WX_NSBitmapImageRep m_cocoaNSBitmapImageRep; |
a24aff65 DE |
60 | }; |
61 | ||
d135b1a5 DE |
62 | // ======================================================================== |
63 | // wxBitmap | |
64 | // ======================================================================== | |
65 | class WXDLLEXPORT wxBitmap: public wxGDIObject | |
a24aff65 | 66 | { |
d135b1a5 DE |
67 | DECLARE_DYNAMIC_CLASS(wxBitmap) |
68 | // ------------------------------------------------------------------------ | |
69 | // initialization | |
70 | // ------------------------------------------------------------------------ | |
a24aff65 | 71 | public: |
d135b1a5 DE |
72 | // Platform-specific default constructor |
73 | wxBitmap(); | |
d135b1a5 DE |
74 | // Initialize with raw data. |
75 | wxBitmap(const char bits[], int width, int height, int depth = 1); | |
76 | // Initialize with XPM data | |
452418c4 | 77 | wxBitmap(const char* const* bits); |
d135b1a5 DE |
78 | // Load a file or resource |
79 | wxBitmap(const wxString& name, wxBitmapType type = wxBITMAP_TYPE_BMP_RESOURCE); | |
80 | // Constructor for generalised creation from data | |
452418c4 | 81 | wxBitmap(const void* data, wxBitmapType type, int width, int height, int depth = 1); |
d135b1a5 DE |
82 | // If depth is omitted, will create a bitmap compatible with the display |
83 | wxBitmap(int width, int height, int depth = -1); | |
84 | // Convert from wxImage: | |
85 | wxBitmap(const wxImage& image, int depth = -1) | |
86 | { CreateFromImage(image, depth); } | |
b5df4fc7 DE |
87 | // Convert from wxIcon |
88 | wxBitmap(const wxIcon& icon) { CopyFromIcon(icon); } | |
89 | ||
d135b1a5 | 90 | // destructor |
d3c7fc99 | 91 | virtual ~wxBitmap(); |
1b88201f | 92 | |
d135b1a5 DE |
93 | // ------------------------------------------------------------------------ |
94 | // Implementation | |
95 | // ------------------------------------------------------------------------ | |
a24aff65 | 96 | public: |
d135b1a5 DE |
97 | // Initialize from wxImage |
98 | bool CreateFromImage(const wxImage& image, int depth=-1); | |
99 | ||
100 | virtual bool Create(int width, int height, int depth = -1); | |
452418c4 | 101 | virtual bool Create(const void* data, wxBitmapType type, int width, int height, int depth = 1); |
d135b1a5 DE |
102 | virtual bool LoadFile(const wxString& name, wxBitmapType type = wxBITMAP_TYPE_BMP_RESOURCE); |
103 | virtual bool SaveFile(const wxString& name, wxBitmapType type, const wxPalette *cmap = NULL) const; | |
104 | ||
105 | // copies the contents and mask of the given (colour) icon to the bitmap | |
106 | virtual bool CopyFromIcon(const wxIcon& icon); | |
107 | ||
108 | wxImage ConvertToImage() const; | |
109 | ||
110 | // get the given part of bitmap | |
111 | wxBitmap GetSubBitmap( const wxRect& rect ) const; | |
112 | ||
b7cacb43 VZ |
113 | bool Ok() const { return IsOk(); } |
114 | bool IsOk() const; | |
d135b1a5 DE |
115 | int GetWidth() const; |
116 | int GetHeight() const; | |
117 | int GetDepth() const; | |
118 | int GetQuality() const; | |
119 | void SetWidth(int w); | |
120 | void SetHeight(int h); | |
121 | void SetDepth(int d); | |
122 | void SetQuality(int q); | |
123 | void SetOk(bool isOk); | |
124 | ||
b60c6e97 DE |
125 | // raw bitmap access support functions |
126 | void *GetRawData(wxPixelDataBase& data, int bpp); | |
127 | void UngetRawData(wxPixelDataBase& data); | |
128 | ||
d135b1a5 DE |
129 | wxPalette* GetPalette() const; |
130 | void SetPalette(const wxPalette& palette); | |
131 | ||
132 | wxMask *GetMask() const; | |
133 | void SetMask(wxMask *mask) ; | |
134 | ||
135 | int GetBitmapType() const; | |
1b88201f | 136 | |
d135b1a5 DE |
137 | // wxObjectRefData |
138 | wxObjectRefData *CreateRefData() const; | |
139 | wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; | |
140 | ||
141 | // wxCocoa | |
142 | WX_NSBitmapImageRep GetNSBitmapImageRep(); | |
ab13160e | 143 | void SetNSBitmapImageRep(WX_NSBitmapImageRep bitmapImageRep); |
9c54e4ae | 144 | WX_NSImage GetNSImage(bool useMask) const; |
d135b1a5 DE |
145 | |
146 | static void InitStandardHandlers() { } | |
147 | static void CleanUpHandlers() { } | |
a24aff65 | 148 | }; |
d135b1a5 | 149 | |
452418c4 PC |
150 | class WXDLLIMPEXP_CORE wxBitmapHandler: public wxBitmapHandlerBase |
151 | { | |
152 | DECLARE_ABSTRACT_CLASS(wxBitmapHandler) | |
153 | }; | |
154 | ||
1b88201f WS |
155 | #endif |
156 | // __WX_COCOA_BITMAP_H__ |