]>
Commit | Line | Data |
---|---|---|
151ccd11 | 1 | ///////////////////////////////////////////////////////////////////////////// |
f6bcfd97 | 2 | // Name: gtk/bmpbuttn.cpp |
151ccd11 RR |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
f96aa4d9 | 5 | // Id: $Id$ |
01111366 | 6 | // Copyright: (c) 1998 Robert Roebling |
f6bcfd97 | 7 | // Licence: wxWindows licence |
151ccd11 RR |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
14f355c2 | 10 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
151ccd11 RR |
11 | #pragma implementation "bmpbuttn.h" |
12 | #endif | |
13 | ||
14f355c2 VS |
14 | // For compilers that support precompilation, includes "wx.h". |
15 | #include "wx/wxprec.h" | |
16 | ||
1e6feb95 | 17 | #include "wx/defs.h" |
151ccd11 | 18 | |
dcf924a3 RR |
19 | #if wxUSE_BMPBUTTON |
20 | ||
1e6feb95 VZ |
21 | #include "wx/bmpbuttn.h" |
22 | ||
9e691f46 | 23 | #include "wx/gtk/private.h" |
83624f79 | 24 | |
151ccd11 RR |
25 | //----------------------------------------------------------------------------- |
26 | // classes | |
27 | //----------------------------------------------------------------------------- | |
28 | ||
29 | class wxBitmapButton; | |
30 | ||
acfd422a RR |
31 | //----------------------------------------------------------------------------- |
32 | // idle system | |
33 | //----------------------------------------------------------------------------- | |
34 | ||
35 | extern void wxapp_install_idle_handler(); | |
36 | extern bool g_isIdle; | |
37 | ||
66bd6b93 RR |
38 | //----------------------------------------------------------------------------- |
39 | // data | |
40 | //----------------------------------------------------------------------------- | |
41 | ||
42 | extern bool g_blockEventsOnDrag; | |
43 | ||
151ccd11 | 44 | //----------------------------------------------------------------------------- |
e1e955e1 | 45 | // "clicked" |
151ccd11 RR |
46 | //----------------------------------------------------------------------------- |
47 | ||
66bd6b93 | 48 | static void gtk_bmpbutton_clicked_callback( GtkWidget *WXUNUSED(widget), wxBitmapButton *button ) |
151ccd11 | 49 | { |
f6bcfd97 | 50 | if (g_isIdle) |
bf9e3e73 | 51 | wxapp_install_idle_handler(); |
acfd422a | 52 | |
a2053b27 | 53 | if (!button->m_hasVMT) return; |
43a18898 | 54 | if (g_blockEventsOnDrag) return; |
f6bcfd97 | 55 | |
43a18898 RR |
56 | wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, button->GetId()); |
57 | event.SetEventObject(button); | |
58 | button->GetEventHandler()->ProcessEvent(event); | |
59 | } | |
60 | ||
61 | //----------------------------------------------------------------------------- | |
62 | // "enter" | |
63 | //----------------------------------------------------------------------------- | |
64 | ||
65 | static void gtk_bmpbutton_enter_callback( GtkWidget *WXUNUSED(widget), wxBitmapButton *button ) | |
66 | { | |
a2053b27 | 67 | if (!button->m_hasVMT) return; |
43a18898 RR |
68 | if (g_blockEventsOnDrag) return; |
69 | ||
f6bcfd97 | 70 | button->HasFocus(); |
43a18898 RR |
71 | } |
72 | ||
73 | //----------------------------------------------------------------------------- | |
74 | // "leave" | |
75 | //----------------------------------------------------------------------------- | |
76 | ||
77 | static void gtk_bmpbutton_leave_callback( GtkWidget *WXUNUSED(widget), wxBitmapButton *button ) | |
78 | { | |
a2053b27 | 79 | if (!button->m_hasVMT) return; |
43a18898 RR |
80 | if (g_blockEventsOnDrag) return; |
81 | ||
f6bcfd97 | 82 | button->NotFocus(); |
43a18898 RR |
83 | } |
84 | ||
85 | //----------------------------------------------------------------------------- | |
86 | // "pressed" | |
87 | //----------------------------------------------------------------------------- | |
88 | ||
89 | static void gtk_bmpbutton_press_callback( GtkWidget *WXUNUSED(widget), wxBitmapButton *button ) | |
90 | { | |
a2053b27 | 91 | if (!button->m_hasVMT) return; |
43a18898 RR |
92 | if (g_blockEventsOnDrag) return; |
93 | ||
f6bcfd97 | 94 | button->StartSelect(); |
43a18898 RR |
95 | } |
96 | ||
97 | //----------------------------------------------------------------------------- | |
98 | // "released" | |
99 | //----------------------------------------------------------------------------- | |
100 | ||
101 | static void gtk_bmpbutton_release_callback( GtkWidget *WXUNUSED(widget), wxBitmapButton *button ) | |
102 | { | |
a2053b27 | 103 | if (!button->m_hasVMT) return; |
43a18898 RR |
104 | if (g_blockEventsOnDrag) return; |
105 | ||
f6bcfd97 | 106 | button->EndSelect(); |
6de97a3b | 107 | } |
151ccd11 RR |
108 | |
109 | //----------------------------------------------------------------------------- | |
e1e955e1 RR |
110 | // wxBitmapButton |
111 | //----------------------------------------------------------------------------- | |
112 | ||
42b4e99e | 113 | IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton,wxButton) |
151ccd11 | 114 | |
1169a919 JS |
115 | wxBitmapButtonBase::wxBitmapButtonBase() |
116 | : m_bmpNormal(), | |
117 | m_bmpSelected(), | |
118 | m_bmpFocus(), | |
119 | m_bmpDisabled(), | |
120 | m_marginX(0), | |
121 | m_marginY(0) | |
122 | { | |
123 | } | |
124 | ||
c3dfaa10 | 125 | void wxBitmapButton::Init() |
151ccd11 | 126 | { |
c3dfaa10 VZ |
127 | m_hasFocus = |
128 | m_isSelected = FALSE; | |
6de97a3b | 129 | } |
151ccd11 | 130 | |
c3dfaa10 VZ |
131 | bool wxBitmapButton::Create( wxWindow *parent, |
132 | wxWindowID id, | |
133 | const wxBitmap& bitmap, | |
134 | const wxPoint& pos, | |
135 | const wxSize& size, | |
136 | long style, | |
137 | const wxValidator& validator, | |
138 | const wxString &name ) | |
151ccd11 | 139 | { |
43a18898 | 140 | m_needParent = TRUE; |
b292e2f5 | 141 | m_acceptsFocus = TRUE; |
f6bcfd97 | 142 | |
4dcaf11a RR |
143 | if (!PreCreation( parent, pos, size ) || |
144 | !CreateBase( parent, id, pos, size, style, validator, name )) | |
145 | { | |
223d09f6 | 146 | wxFAIL_MSG( wxT("wxBitmapButton creation failed") ); |
f6bcfd97 | 147 | return FALSE; |
4dcaf11a | 148 | } |
6de97a3b | 149 | |
1e6feb95 VZ |
150 | m_bmpNormal = |
151 | m_bmpDisabled = | |
152 | m_bmpFocus = | |
153 | m_bmpSelected = bitmap; | |
f6bcfd97 | 154 | |
43a18898 | 155 | m_widget = gtk_button_new(); |
de1c750f | 156 | |
f6bcfd97 | 157 | #if (GTK_MINOR_VERSION > 0) |
de1c750f RR |
158 | if (style & wxNO_BORDER) |
159 | gtk_button_set_relief( GTK_BUTTON(m_widget), GTK_RELIEF_NONE ); | |
160 | #endif | |
161 | ||
1e6feb95 | 162 | if (m_bmpNormal.Ok()) |
43a18898 | 163 | { |
4dcaf11a | 164 | wxSize newSize = size; |
67a6726a | 165 | int border = (style & wxNO_BORDER) ? 4 : 10; |
29149a64 VZ |
166 | if (newSize.x == -1) |
167 | newSize.x = m_bmpNormal.GetWidth()+border; | |
168 | if (newSize.y == -1) | |
169 | newSize.y = m_bmpNormal.GetHeight()+border; | |
d1af991f | 170 | SetSize( newSize.x, newSize.y ); |
29149a64 | 171 | OnSetBitmap(); |
43a18898 | 172 | } |
f6bcfd97 BP |
173 | |
174 | gtk_signal_connect( GTK_OBJECT(m_widget), "clicked", | |
43a18898 | 175 | GTK_SIGNAL_FUNC(gtk_bmpbutton_clicked_callback), (gpointer*)this ); |
151ccd11 | 176 | |
f6bcfd97 | 177 | gtk_signal_connect( GTK_OBJECT(m_widget), "enter", |
43a18898 | 178 | GTK_SIGNAL_FUNC(gtk_bmpbutton_enter_callback), (gpointer*)this ); |
f6bcfd97 | 179 | gtk_signal_connect( GTK_OBJECT(m_widget), "leave", |
43a18898 | 180 | GTK_SIGNAL_FUNC(gtk_bmpbutton_leave_callback), (gpointer*)this ); |
f6bcfd97 | 181 | gtk_signal_connect( GTK_OBJECT(m_widget), "pressed", |
43a18898 | 182 | GTK_SIGNAL_FUNC(gtk_bmpbutton_press_callback), (gpointer*)this ); |
f6bcfd97 | 183 | gtk_signal_connect( GTK_OBJECT(m_widget), "released", |
43a18898 | 184 | GTK_SIGNAL_FUNC(gtk_bmpbutton_release_callback), (gpointer*)this ); |
f6bcfd97 | 185 | |
eb082a08 | 186 | m_parent->DoAddChild( this ); |
f6bcfd97 | 187 | |
43a18898 | 188 | PostCreation(); |
e8e24dfa | 189 | InheritAttributes(); |
f96aa4d9 | 190 | |
43a18898 | 191 | Show( TRUE ); |
f6bcfd97 | 192 | |
43a18898 | 193 | return TRUE; |
6de97a3b | 194 | } |
f6bcfd97 | 195 | |
43a18898 | 196 | void wxBitmapButton::SetDefault() |
151ccd11 | 197 | { |
43a18898 RR |
198 | GTK_WIDGET_SET_FLAGS( m_widget, GTK_CAN_DEFAULT ); |
199 | gtk_widget_grab_default( m_widget ); | |
f6bcfd97 | 200 | |
3502e687 | 201 | SetSize( m_x, m_y, m_width, m_height ); |
6de97a3b | 202 | } |
151ccd11 RR |
203 | |
204 | void wxBitmapButton::SetLabel( const wxString &label ) | |
205 | { | |
223d09f6 | 206 | wxCHECK_RET( m_widget != NULL, wxT("invalid button") ); |
f96aa4d9 | 207 | |
43a18898 | 208 | wxControl::SetLabel( label ); |
6de97a3b | 209 | } |
151ccd11 | 210 | |
43a18898 | 211 | wxString wxBitmapButton::GetLabel() const |
151ccd11 | 212 | { |
223d09f6 | 213 | wxCHECK_MSG( m_widget != NULL, wxT(""), wxT("invalid button") ); |
f96aa4d9 | 214 | |
43a18898 | 215 | return wxControl::GetLabel(); |
6de97a3b | 216 | } |
903f689b | 217 | |
43a18898 | 218 | void wxBitmapButton::ApplyWidgetStyle() |
903f689b | 219 | { |
9e691f46 VZ |
220 | if ( !BUTTON_CHILD(m_widget) ) |
221 | return; | |
29149a64 | 222 | |
67a6726a | 223 | wxButton::ApplyWidgetStyle(); |
43a18898 RR |
224 | } |
225 | ||
29149a64 | 226 | void wxBitmapButton::OnSetBitmap() |
43a18898 | 227 | { |
1e6feb95 | 228 | wxCHECK_RET( m_widget != NULL, wxT("invalid bitmap button") ); |
f96aa4d9 | 229 | |
43a18898 | 230 | wxBitmap the_one; |
f6bcfd97 | 231 | if (!m_isEnabled) |
29149a64 | 232 | the_one = m_bmpDisabled; |
67a6726a | 233 | else if (m_isSelected) |
29149a64 | 234 | the_one = m_bmpSelected; |
67a6726a | 235 | else if (m_hasFocus) |
29149a64 | 236 | the_one = m_bmpFocus; |
f6bcfd97 | 237 | else |
1e6feb95 VZ |
238 | { |
239 | if (m_isSelected) | |
240 | { | |
241 | the_one = m_bmpSelected; | |
242 | } | |
243 | else | |
244 | { | |
245 | if (m_hasFocus) | |
246 | the_one = m_bmpFocus; | |
247 | else | |
248 | the_one = m_bmpNormal; | |
249 | } | |
250 | } | |
43a18898 | 251 | |
1e6feb95 | 252 | if (!the_one.Ok()) the_one = m_bmpNormal; |
de1c750f | 253 | if (!the_one.Ok()) return; |
f6bcfd97 | 254 | |
43a18898 RR |
255 | GdkBitmap *mask = (GdkBitmap *) NULL; |
256 | if (the_one.GetMask()) mask = the_one.GetMask()->GetBitmap(); | |
f6bcfd97 | 257 | |
9e691f46 VZ |
258 | GtkWidget *child = BUTTON_CHILD(m_widget); |
259 | if (child == NULL) | |
29149a64 VZ |
260 | { |
261 | // initial bitmap | |
67a6726a RR |
262 | GtkWidget *pixmap = gtk_pixmap_new(the_one.GetPixmap(), mask); |
263 | gtk_widget_show(pixmap); | |
264 | gtk_container_add(GTK_CONTAINER(m_widget), pixmap); | |
29149a64 VZ |
265 | } |
266 | else | |
67a6726a | 267 | { // subsequent bitmaps |
9e691f46 | 268 | GtkPixmap *g_pixmap = GTK_PIXMAP(child); |
67a6726a RR |
269 | gtk_pixmap_set(g_pixmap, the_one.GetPixmap(), mask); |
270 | } | |
903f689b RR |
271 | } |
272 | ||
f03fc89f | 273 | bool wxBitmapButton::Enable( bool enable ) |
43a18898 | 274 | { |
f03fc89f VZ |
275 | if ( !wxWindow::Enable(enable) ) |
276 | return FALSE; | |
43a18898 | 277 | |
29149a64 | 278 | OnSetBitmap(); |
f03fc89f VZ |
279 | |
280 | return TRUE; | |
43a18898 RR |
281 | } |
282 | ||
283 | void wxBitmapButton::HasFocus() | |
284 | { | |
285 | m_hasFocus = TRUE; | |
29149a64 | 286 | OnSetBitmap(); |
43a18898 RR |
287 | } |
288 | ||
289 | void wxBitmapButton::NotFocus() | |
290 | { | |
291 | m_hasFocus = FALSE; | |
29149a64 | 292 | OnSetBitmap(); |
43a18898 RR |
293 | } |
294 | ||
295 | void wxBitmapButton::StartSelect() | |
296 | { | |
297 | m_isSelected = TRUE; | |
29149a64 | 298 | OnSetBitmap(); |
43a18898 RR |
299 | } |
300 | ||
301 | void wxBitmapButton::EndSelect() | |
302 | { | |
303 | m_isSelected = FALSE; | |
29149a64 | 304 | OnSetBitmap(); |
43a18898 | 305 | } |
f6bcfd97 BP |
306 | |
307 | #endif // wxUSE_BMPBUTTON | |
dcf924a3 | 308 |