]> git.saurik.com Git - wxWidgets.git/blame - include/wx/cocoa/bitmap.h
wxColour -> NSColor conversion.
[wxWidgets.git] / include / wx / cocoa / bitmap.h
CommitLineData
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
18class WXDLLIMPEXP_FWD_CORE wxBitmap;
19class WXDLLIMPEXP_FWD_CORE wxIcon;
20class WXDLLIMPEXP_FWD_CORE wxCursor;
21class WXDLLIMPEXP_FWD_CORE wxImage;
22class 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.
53a2db12 29class WXDLLIMPEXP_CORE wxMask: public wxObject
a24aff65
DE
30{
31 DECLARE_DYNAMIC_CLASS(wxMask)
a24aff65 32public:
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 58protected:
016b0643 59 WX_NSBitmapImageRep m_cocoaNSBitmapImageRep;
a24aff65
DE
60};
61
732d8c74 62
d135b1a5
DE
63// ========================================================================
64// wxBitmap
65// ========================================================================
732d8c74 66
53a2db12 67class WXDLLIMPEXP_CORE wxBitmap: public wxGDIObject
a24aff65 68{
d135b1a5
DE
69// ------------------------------------------------------------------------
70// initialization
71// ------------------------------------------------------------------------
a24aff65 72public:
d135b1a5
DE
73 // Platform-specific default constructor
74 wxBitmap();
d135b1a5
DE
75 // Initialize with raw data.
76 wxBitmap(const char bits[], int width, int height, int depth = 1);
77 // Initialize with XPM data
452418c4 78 wxBitmap(const char* const* bits);
d135b1a5 79 // Load a file or resource
cbea3ec6 80 wxBitmap(const wxString& name, wxBitmapType type = wxBITMAP_DEFAULT_TYPE);
d381b7df
DE
81 // Construct from Cocoa's NSImage
82 wxBitmap(NSImage* cocoaNSImage);
83 // Construct from Cocoa's NSBitmapImageRep
84 wxBitmap(NSBitmapImageRep* cocoaNSBitmapImageRep);
d135b1a5 85 // Constructor for generalised creation from data
452418c4 86 wxBitmap(const void* data, wxBitmapType type, int width, int height, int depth = 1);
d135b1a5 87 // If depth is omitted, will create a bitmap compatible with the display
732d8c74
FM
88 wxBitmap(int width, int height, int depth = -1)
89 { (void)Create(width, height, depth); }
90 wxBitmap(const wxSize& sz, int depth = -1)
91 { (void)Create(sz, depth); }
d135b1a5
DE
92 // Convert from wxImage:
93 wxBitmap(const wxImage& image, int depth = -1)
732d8c74 94 { CreateFromImage(image, depth); }
b5df4fc7
DE
95 // Convert from wxIcon
96 wxBitmap(const wxIcon& icon) { CopyFromIcon(icon); }
97
d135b1a5 98 // destructor
d3c7fc99 99 virtual ~wxBitmap();
1b88201f 100
d135b1a5
DE
101// ------------------------------------------------------------------------
102// Implementation
103// ------------------------------------------------------------------------
a24aff65 104public:
d135b1a5
DE
105 // Initialize from wxImage
106 bool CreateFromImage(const wxImage& image, int depth=-1);
107
732d8c74
FM
108 virtual bool Create(int width, int height, int depth = wxBITMAP_SCREEN_DEPTH);
109 virtual bool Create(const wxSize& sz, int depth = wxBITMAP_SCREEN_DEPTH)
110 { return Create(sz.GetWidth(), sz.GetHeight(), depth); }
111
e82b00a7
DE
112 bool Create(NSImage* cocoaNSImage);
113 bool Create(NSBitmapImageRep* cocoaNSBitmapImageRep);
452418c4 114 virtual bool Create(const void* data, wxBitmapType type, int width, int height, int depth = 1);
cbea3ec6 115 virtual bool LoadFile(const wxString& name, wxBitmapType type = wxBITMAP_DEFAULT_TYPE);
d135b1a5
DE
116 virtual bool SaveFile(const wxString& name, wxBitmapType type, const wxPalette *cmap = NULL) const;
117
118 // copies the contents and mask of the given (colour) icon to the bitmap
119 virtual bool CopyFromIcon(const wxIcon& icon);
120
121 wxImage ConvertToImage() const;
122
123 // get the given part of bitmap
124 wxBitmap GetSubBitmap( const wxRect& rect ) const;
125
d135b1a5
DE
126 int GetWidth() const;
127 int GetHeight() const;
128 int GetDepth() const;
129 int GetQuality() const;
130 void SetWidth(int w);
131 void SetHeight(int h);
132 void SetDepth(int d);
133 void SetQuality(int q);
134 void SetOk(bool isOk);
135
b60c6e97
DE
136 // raw bitmap access support functions
137 void *GetRawData(wxPixelDataBase& data, int bpp);
138 void UngetRawData(wxPixelDataBase& data);
139
d135b1a5
DE
140 wxPalette* GetPalette() const;
141 void SetPalette(const wxPalette& palette);
142
143 wxMask *GetMask() const;
144 void SetMask(wxMask *mask) ;
145
e86f2cc8 146 wxBitmapType GetBitmapType() const;
1b88201f 147
d135b1a5
DE
148 // wxCocoa
149 WX_NSBitmapImageRep GetNSBitmapImageRep();
ab13160e 150 void SetNSBitmapImageRep(WX_NSBitmapImageRep bitmapImageRep);
9c54e4ae 151 WX_NSImage GetNSImage(bool useMask) const;
d135b1a5
DE
152
153 static void InitStandardHandlers() { }
154 static void CleanUpHandlers() { }
8f884a0d
VZ
155
156protected:
157 wxGDIRefData *CreateGDIRefData() const;
158 wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
159
160 DECLARE_DYNAMIC_CLASS(wxBitmap)
a24aff65 161};
d135b1a5 162
452418c4 163
8f884a0d 164#endif // __WX_COCOA_BITMAP_H__