]>
Commit | Line | Data |
---|---|---|
4bb6408c JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: bmpbuttn.cpp | |
3 | // Purpose: wxBitmapButton | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
dfe1eee3 | 9 | // Licence: wxWindows licence |
4bb6408c JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "bmpbuttn.h" | |
14 | #endif | |
15 | ||
bcd055ae JJ |
16 | #ifdef __VMS |
17 | #define XtScreen XTSCREEN | |
18 | #endif | |
19 | ||
f6045f99 GD |
20 | #include "wx/defs.h" |
21 | ||
4bb6408c JS |
22 | #include "wx/bmpbuttn.h" |
23 | ||
338dd992 JJ |
24 | #ifdef __VMS__ |
25 | #pragma message disable nosimpint | |
26 | #endif | |
a4294b78 JS |
27 | #include <Xm/PushBG.h> |
28 | #include <Xm/PushB.h> | |
338dd992 JJ |
29 | #ifdef __VMS__ |
30 | #pragma message enable nosimpint | |
31 | #endif | |
a4294b78 JS |
32 | |
33 | #include "wx/motif/private.h" | |
34 | ||
35 | // Implemented in button.cpp | |
36 | void wxButtonCallback (Widget w, XtPointer clientData, XtPointer ptr); | |
37 | ||
38 | Pixmap XCreateInsensitivePixmap( Display *display, Pixmap pixmap ); | |
39 | ||
4bb6408c | 40 | IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton, wxButton) |
4bb6408c | 41 | |
a4294b78 JS |
42 | wxBitmapButton::wxBitmapButton() |
43 | { | |
44 | m_marginX = wxDEFAULT_BUTTON_MARGIN; m_marginY = wxDEFAULT_BUTTON_MARGIN; | |
45 | m_insensPixmap = (WXPixmap) 0; | |
46 | } | |
47 | ||
4bb6408c | 48 | bool wxBitmapButton::Create(wxWindow *parent, wxWindowID id, const wxBitmap& bitmap, |
2d120f83 JS |
49 | const wxPoint& pos, |
50 | const wxSize& size, long style, | |
51 | const wxValidator& validator, | |
52 | const wxString& name) | |
4bb6408c JS |
53 | { |
54 | m_buttonBitmap = bitmap; | |
321db4b6 JS |
55 | m_buttonBitmapOriginal = bitmap; |
56 | m_buttonBitmapSelected = bitmap; | |
57 | m_buttonBitmapSelectedOriginal = bitmap; | |
dfe1eee3 | 58 | |
4bb6408c JS |
59 | SetName(name); |
60 | SetValidator(validator); | |
61 | parent->AddChild(this); | |
dfe1eee3 | 62 | |
47bc1060 JS |
63 | m_backgroundColour = parent->GetBackgroundColour() ; |
64 | m_foregroundColour = parent->GetForegroundColour() ; | |
4bb6408c JS |
65 | m_windowStyle = style; |
66 | m_marginX = 0; | |
67 | m_marginY = 0; | |
dfe1eee3 | 68 | |
2d120f83 | 69 | /* |
4bb6408c JS |
70 | int x = pos.x; |
71 | int y = pos.y; | |
72 | int width = size.x; | |
73 | int height = size.y; | |
2d120f83 | 74 | */ |
dfe1eee3 | 75 | |
4bb6408c JS |
76 | if (id == -1) |
77 | m_windowId = NewControlId(); | |
78 | else | |
79 | m_windowId = id; | |
dfe1eee3 | 80 | |
a4294b78 | 81 | Widget parentWidget = (Widget) parent->GetClientWidget(); |
dfe1eee3 | 82 | |
2d120f83 JS |
83 | /* |
84 | * Patch Note (important) | |
85 | * There is no major reason to put a defaultButtonThickness here. | |
86 | * Not requesting it give the ability to put wxButton with a spacing | |
87 | * as small as requested. However, if some button become a DefaultButton, | |
88 | * other buttons are no more aligned -- This is why we set | |
89 | * defaultButtonThickness of ALL buttons belonging to the same wxPanel, | |
90 | * in the ::SetDefaultButton method. | |
91 | */ | |
a4294b78 | 92 | Widget buttonWidget = XtVaCreateManagedWidget ("button", |
dfe1eee3 | 93 | |
2d120f83 | 94 | // Gadget causes problems for default button operation. |
a4294b78 | 95 | #if wxUSE_GADGETS |
2d120f83 | 96 | xmPushButtonGadgetClass, parentWidget, |
a4294b78 | 97 | #else |
2d120f83 | 98 | xmPushButtonWidgetClass, parentWidget, |
a4294b78 | 99 | #endif |
2d120f83 JS |
100 | // XmNdefaultButtonShadowThickness, 1, // See comment for wxButton::SetDefault |
101 | NULL); | |
dfe1eee3 | 102 | |
a4294b78 | 103 | m_mainWidget = (WXWidget) buttonWidget; |
dfe1eee3 | 104 | |
da175b2c | 105 | m_font = parent->GetFont(); |
4b5f3fe6 | 106 | ChangeFont(FALSE); |
dfe1eee3 | 107 | |
321db4b6 | 108 | ChangeBackgroundColour (); |
dfe1eee3 | 109 | |
321db4b6 | 110 | DoSetBitmap(); |
dfe1eee3 | 111 | |
a4294b78 | 112 | XtAddCallback (buttonWidget, XmNactivateCallback, (XtCallbackProc) wxButtonCallback, |
2d120f83 | 113 | (XtPointer) this); |
dfe1eee3 | 114 | |
a4294b78 JS |
115 | SetCanAddEventHandler(TRUE); |
116 | AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, size.x, size.y); | |
dfe1eee3 | 117 | |
a4294b78 JS |
118 | return TRUE; |
119 | } | |
120 | ||
121 | wxBitmapButton::~wxBitmapButton() | |
122 | { | |
123 | SetBitmapLabel(wxNullBitmap); | |
dfe1eee3 | 124 | |
a4294b78 JS |
125 | if (m_insensPixmap) |
126 | XmDestroyPixmap (DefaultScreenOfDisplay ((Display*) GetXDisplay()), (Pixmap) m_insensPixmap); | |
4bb6408c JS |
127 | } |
128 | ||
129 | void wxBitmapButton::SetBitmapLabel(const wxBitmap& bitmap) | |
130 | { | |
321db4b6 | 131 | m_buttonBitmapOriginal = bitmap; |
4bb6408c | 132 | m_buttonBitmap = bitmap; |
dfe1eee3 | 133 | |
321db4b6 JS |
134 | DoSetBitmap(); |
135 | } | |
136 | ||
137 | void wxBitmapButton::SetBitmapSelected(const wxBitmap& sel) | |
138 | { | |
139 | m_buttonBitmapSelected = sel; | |
140 | m_buttonBitmapSelectedOriginal = sel; | |
dfe1eee3 | 141 | |
321db4b6 JS |
142 | DoSetBitmap(); |
143 | }; | |
144 | ||
145 | void wxBitmapButton::SetBitmapFocus(const wxBitmap& focus) | |
146 | { | |
147 | m_buttonBitmapFocus = focus; | |
148 | // Not used in Motif | |
149 | }; | |
150 | ||
151 | void wxBitmapButton::SetBitmapDisabled(const wxBitmap& disabled) | |
152 | { | |
153 | m_buttonBitmapDisabled = disabled; | |
154 | m_buttonBitmapDisabledOriginal = disabled; | |
dfe1eee3 | 155 | |
321db4b6 JS |
156 | DoSetBitmap(); |
157 | }; | |
158 | ||
159 | void wxBitmapButton::DoSetBitmap() | |
160 | { | |
161 | if (m_buttonBitmapOriginal.Ok()) | |
a4294b78 | 162 | { |
321db4b6 JS |
163 | Pixmap pixmap = 0; |
164 | Pixmap insensPixmap = 0; | |
165 | Pixmap armPixmap = 0; | |
dfe1eee3 | 166 | |
321db4b6 JS |
167 | // Must re-make the bitmap to have its transparent areas drawn |
168 | // in the current widget background colour. | |
169 | if (m_buttonBitmapOriginal.GetMask()) | |
170 | { | |
171 | int backgroundPixel; | |
172 | XtVaGetValues((Widget) m_mainWidget, XmNbackground, &backgroundPixel, | |
2d120f83 | 173 | NULL); |
dfe1eee3 | 174 | |
321db4b6 JS |
175 | wxColour col; |
176 | col.SetPixel(backgroundPixel); | |
dfe1eee3 | 177 | |
321db4b6 JS |
178 | wxBitmap newBitmap = wxCreateMaskedBitmap(m_buttonBitmapOriginal, col); |
179 | m_buttonBitmap = newBitmap; | |
dfe1eee3 | 180 | |
321db4b6 JS |
181 | pixmap = (Pixmap) m_buttonBitmap.GetPixmap(); |
182 | } | |
a4294b78 | 183 | else |
321db4b6 | 184 | pixmap = (Pixmap) m_buttonBitmap.GetLabelPixmap(m_mainWidget); |
dfe1eee3 | 185 | |
321db4b6 JS |
186 | if (m_buttonBitmapDisabledOriginal.Ok()) |
187 | { | |
188 | if (m_buttonBitmapDisabledOriginal.GetMask()) | |
189 | { | |
190 | int backgroundPixel; | |
191 | XtVaGetValues((Widget) m_mainWidget, XmNbackground, &backgroundPixel, | |
2d120f83 | 192 | NULL); |
dfe1eee3 | 193 | |
321db4b6 JS |
194 | wxColour col; |
195 | col.SetPixel(backgroundPixel); | |
dfe1eee3 | 196 | |
321db4b6 JS |
197 | wxBitmap newBitmap = wxCreateMaskedBitmap(m_buttonBitmapDisabledOriginal, col); |
198 | m_buttonBitmapDisabled = newBitmap; | |
dfe1eee3 | 199 | |
321db4b6 JS |
200 | insensPixmap = (Pixmap) m_buttonBitmapDisabled.GetPixmap(); |
201 | } | |
202 | else | |
203 | insensPixmap = (Pixmap) m_buttonBitmap.GetInsensPixmap(m_mainWidget); | |
204 | } | |
a4294b78 | 205 | else |
321db4b6 | 206 | insensPixmap = (Pixmap) m_buttonBitmap.GetInsensPixmap(m_mainWidget); |
dfe1eee3 | 207 | |
321db4b6 JS |
208 | // Now make the bitmap representing the armed state |
209 | if (m_buttonBitmapSelectedOriginal.Ok()) | |
a4294b78 | 210 | { |
321db4b6 JS |
211 | if (m_buttonBitmapSelectedOriginal.GetMask()) |
212 | { | |
213 | int backgroundPixel; | |
214 | XtVaGetValues((Widget) m_mainWidget, XmNarmColor, &backgroundPixel, | |
2d120f83 | 215 | NULL); |
dfe1eee3 | 216 | |
321db4b6 JS |
217 | wxColour col; |
218 | col.SetPixel(backgroundPixel); | |
dfe1eee3 | 219 | |
321db4b6 JS |
220 | wxBitmap newBitmap = wxCreateMaskedBitmap(m_buttonBitmapSelectedOriginal, col); |
221 | m_buttonBitmapSelected = newBitmap; | |
dfe1eee3 | 222 | |
321db4b6 JS |
223 | armPixmap = (Pixmap) m_buttonBitmapSelected.GetPixmap(); |
224 | } | |
225 | else | |
2d120f83 | 226 | armPixmap = (Pixmap) m_buttonBitmap.GetArmPixmap(m_mainWidget); |
321db4b6 JS |
227 | } |
228 | else | |
2d120f83 | 229 | armPixmap = (Pixmap) m_buttonBitmap.GetArmPixmap(m_mainWidget); |
dfe1eee3 | 230 | |
321db4b6 JS |
231 | if (insensPixmap == pixmap) // <- the Get...Pixmap()-functions return the same pixmap! |
232 | { | |
233 | insensPixmap = | |
234 | XCreateInsensitivePixmap(DisplayOfScreen(XtScreen((Widget) m_mainWidget)), pixmap); | |
a4294b78 JS |
235 | m_insensPixmap = (WXPixmap) insensPixmap; |
236 | } | |
dfe1eee3 | 237 | |
a4294b78 | 238 | XtVaSetValues ((Widget) m_mainWidget, |
321db4b6 JS |
239 | XmNlabelPixmap, pixmap, |
240 | XmNlabelInsensitivePixmap, insensPixmap, | |
a4294b78 JS |
241 | XmNarmPixmap, armPixmap, |
242 | XmNlabelType, XmPIXMAP, | |
243 | NULL); | |
244 | } | |
245 | else | |
246 | { | |
247 | // Null bitmap: must not use current pixmap | |
248 | // since it is no longer valid. | |
249 | XtVaSetValues ((Widget) m_mainWidget, | |
250 | XmNlabelType, XmSTRING, | |
1a3ac83f | 251 | XmNlabelPixmap, XmUNSPECIFIED_PIXMAP, |
2d120f83 | 252 | XmNlabelInsensitivePixmap, XmUNSPECIFIED_PIXMAP, |
321db4b6 | 253 | XmNarmPixmap, XmUNSPECIFIED_PIXMAP, |
a4294b78 JS |
254 | NULL); |
255 | } | |
4bb6408c JS |
256 | } |
257 | ||
321db4b6 | 258 | void wxBitmapButton::ChangeBackgroundColour() |
a4294b78 | 259 | { |
321db4b6 | 260 | DoChangeBackgroundColour(m_mainWidget, m_backgroundColour, TRUE); |
dfe1eee3 | 261 | |
321db4b6 JS |
262 | // Must reset the bitmaps since the colours have changed. |
263 | DoSetBitmap(); | |
264 | } |