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