]>
Commit | Line | Data |
---|---|---|
b2b3ccc5 | 1 | ///////////////////////////////////////////////////////////////////////////// |
3cbab641 | 2 | // Name: src/gtk1/minifram.cpp |
b2b3ccc5 RR |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling | |
65571936 | 7 | // Licence: wxWindows licence |
b2b3ccc5 RR |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
14f355c2 VS |
10 | // For compilers that support precompilation, includes "wx.h". |
11 | #include "wx/wxprec.h" | |
12 | ||
dcf924a3 RR |
13 | #if wxUSE_MINIFRAME |
14 | ||
11dbb4bf WS |
15 | #include "wx/minifram.h" |
16 | ||
17 | #ifndef WX_PRECOMP | |
18 | #include "wx/dcscreen.h" | |
19 | #endif | |
b2b3ccc5 | 20 | |
83624f79 | 21 | #include "gtk/gtk.h" |
76c32e7b | 22 | #include "wx/dcclient.h" |
3cbab641 MR |
23 | #include "wx/gtk1/win_gtk.h" |
24 | #include "wx/gtk1/private.h" | |
10d30222 | 25 | #include "wx/gtk1/dcclient.h" |
83624f79 | 26 | |
5e7e9e1b RR |
27 | #include <gdk/gdk.h> |
28 | #include <gdk/gdkprivate.h> | |
29 | #include <gdk/gdkx.h> | |
32a95f9f | 30 | |
acfd422a RR |
31 | //----------------------------------------------------------------------------- |
32 | // idle system | |
33 | //----------------------------------------------------------------------------- | |
34 | ||
35 | extern void wxapp_install_idle_handler(); | |
36 | extern bool g_isIdle; | |
37 | ||
32a95f9f RR |
38 | //----------------------------------------------------------------------------- |
39 | // data | |
40 | //----------------------------------------------------------------------------- | |
41 | ||
8480b297 RR |
42 | extern bool g_blockEventsOnDrag; |
43 | extern bool g_blockEventsOnScroll; | |
c2fa61e8 | 44 | extern GtkWidget *wxGetRootWindow(); |
32a95f9f | 45 | |
b2b3ccc5 | 46 | //----------------------------------------------------------------------------- |
32a95f9f RR |
47 | // local functions |
48 | //----------------------------------------------------------------------------- | |
49 | ||
50 | /* draw XOR rectangle when moving mine frame around */ | |
51 | ||
52 | static void DrawFrame( GtkWidget *widget, int x, int y, int w, int h ) | |
53 | { | |
c2fa61e8 | 54 | int org_x = 0; |
32a95f9f RR |
55 | int org_y = 0; |
56 | gdk_window_get_origin( widget->window, &org_x, &org_y ); | |
57 | x += org_x; | |
58 | y += org_y; | |
59 | ||
60 | GdkGC *gc = gdk_gc_new( GDK_ROOT_PARENT() ); | |
61 | gdk_gc_set_subwindow( gc, GDK_INCLUDE_INFERIORS ); | |
62 | gdk_gc_set_function( gc, GDK_INVERT ); | |
c2fa61e8 | 63 | |
32a95f9f RR |
64 | gdk_draw_rectangle( GDK_ROOT_PARENT(), gc, FALSE, x, y, w, h ); |
65 | gdk_gc_unref( gc ); | |
66 | } | |
67 | ||
68 | //----------------------------------------------------------------------------- | |
69 | // "expose_event" of m_mainWidget | |
70 | //----------------------------------------------------------------------------- | |
71 | ||
865bb325 | 72 | extern "C" { |
32a95f9f RR |
73 | static void gtk_window_own_expose_callback( GtkWidget *widget, GdkEventExpose *gdk_event, wxFrame *win ) |
74 | { | |
acfd422a RR |
75 | if (g_isIdle) wxapp_install_idle_handler(); |
76 | ||
a2053b27 | 77 | if (!win->m_hasVMT) return; |
32a95f9f | 78 | if (gdk_event->count > 0) return; |
c2fa61e8 | 79 | |
da048e3d | 80 | GtkPizza *pizza = GTK_PIZZA(widget); |
c2fa61e8 RD |
81 | |
82 | gtk_draw_shadow( widget->style, | |
da048e3d | 83 | pizza->bin_window, |
f03fc89f VZ |
84 | GTK_STATE_NORMAL, |
85 | GTK_SHADOW_OUT, | |
86 | 0, 0, | |
a2053b27 | 87 | win->m_width, win->m_height ); |
b9a535f5 | 88 | |
340bfb43 | 89 | if (!win->GetTitle().empty() && |
c2fa61e8 | 90 | ((win->GetWindowStyle() & wxCAPTION) || |
7282b067 | 91 | (win->GetWindowStyle() & wxTINY_CAPTION))) |
b9a535f5 | 92 | { |
ba718523 RR |
93 | wxClientDC dc(win); |
94 | dc.SetFont( *wxSMALL_FONT ); | |
95 | int height = dc.GetCharHeight(); | |
340bfb43 | 96 | |
da048e3d | 97 | GdkGC *gc = gdk_gc_new( pizza->bin_window ); |
b9a535f5 | 98 | gdk_gc_set_foreground( gc, &widget->style->bg[GTK_STATE_SELECTED] ); |
c2fa61e8 RD |
99 | gdk_draw_rectangle( pizza->bin_window, gc, TRUE, |
100 | 3, | |
101 | 3, | |
5d5b3a40 | 102 | win->m_width - 7, |
ba718523 | 103 | height+1 ); |
b9a535f5 | 104 | gdk_gc_unref( gc ); |
ba718523 RR |
105 | |
106 | // Hack alert | |
5c33522f | 107 | static_cast<wxClientDCImpl *>(dc.GetImpl())->m_window = pizza->bin_window; |
ba718523 RR |
108 | dc.SetTextForeground( *wxWHITE ); |
109 | dc.DrawText( win->GetTitle(), 6, 3 ); | |
b9a535f5 | 110 | } |
32a95f9f | 111 | } |
865bb325 | 112 | } |
32a95f9f RR |
113 | |
114 | //----------------------------------------------------------------------------- | |
115 | // "draw" of m_mainWidget | |
116 | //----------------------------------------------------------------------------- | |
117 | ||
865bb325 | 118 | extern "C" { |
32a95f9f RR |
119 | static void gtk_window_own_draw_callback( GtkWidget *widget, GdkRectangle *WXUNUSED(rect), wxFrame *win ) |
120 | { | |
acfd422a RR |
121 | if (g_isIdle) wxapp_install_idle_handler(); |
122 | ||
a2053b27 | 123 | if (!win->m_hasVMT) return; |
c2fa61e8 | 124 | |
da048e3d | 125 | GtkPizza *pizza = GTK_PIZZA(widget); |
c2fa61e8 RD |
126 | |
127 | gtk_draw_shadow( widget->style, | |
da048e3d | 128 | pizza->bin_window, |
f03fc89f VZ |
129 | GTK_STATE_NORMAL, |
130 | GTK_SHADOW_OUT, | |
131 | 0, 0, | |
a2053b27 | 132 | win->m_width, win->m_height ); |
c2fa61e8 | 133 | |
340bfb43 | 134 | if (!win->GetTitle().empty() && |
c2fa61e8 | 135 | ((win->GetWindowStyle() & wxCAPTION) || |
7282b067 | 136 | (win->GetWindowStyle() & wxTINY_CAPTION))) |
b9a535f5 | 137 | { |
ba718523 RR |
138 | wxClientDC dc(win); |
139 | dc.SetFont( *wxSMALL_FONT ); | |
140 | int height = dc.GetCharHeight(); | |
340bfb43 | 141 | |
da048e3d | 142 | GdkGC *gc = gdk_gc_new( pizza->bin_window ); |
b9a535f5 | 143 | gdk_gc_set_foreground( gc, &widget->style->bg[GTK_STATE_SELECTED] ); |
c2fa61e8 RD |
144 | gdk_draw_rectangle( pizza->bin_window, gc, TRUE, |
145 | 3, | |
5d5b3a40 RR |
146 | 3, |
147 | win->m_width - 7, | |
ba718523 | 148 | height+1 ); |
b9a535f5 | 149 | gdk_gc_unref( gc ); |
ba718523 RR |
150 | |
151 | // Hack alert | |
5c33522f | 152 | static_cast<wxClientDCImpl *>(dc.GetImpl())->m_window = pizza->bin_window; |
ba718523 RR |
153 | dc.SetTextForeground( *wxWHITE ); |
154 | dc.DrawText( win->GetTitle(), 6, 3 ); | |
b9a535f5 | 155 | } |
32a95f9f | 156 | } |
865bb325 | 157 | } |
32a95f9f RR |
158 | |
159 | //----------------------------------------------------------------------------- | |
160 | // "button_press_event" of m_mainWidget | |
161 | //----------------------------------------------------------------------------- | |
162 | ||
865bb325 | 163 | extern "C" { |
32a95f9f RR |
164 | static gint gtk_window_button_press_callback( GtkWidget *widget, GdkEventButton *gdk_event, wxMiniFrame *win ) |
165 | { | |
acfd422a RR |
166 | if (g_isIdle) wxapp_install_idle_handler(); |
167 | ||
a2053b27 | 168 | if (!win->m_hasVMT) return FALSE; |
32a95f9f RR |
169 | if (g_blockEventsOnDrag) return TRUE; |
170 | if (g_blockEventsOnScroll) return TRUE; | |
171 | ||
172 | if (win->m_isDragging) return TRUE; | |
173 | ||
2c990ec0 RR |
174 | GtkPizza *pizza = GTK_PIZZA(widget); |
175 | if (gdk_event->window != pizza->bin_window) return TRUE; | |
ba718523 RR |
176 | |
177 | wxClientDC dc(win); | |
178 | dc.SetFont( *wxSMALL_FONT ); | |
179 | int height = dc.GetCharHeight() + 1; | |
340bfb43 | 180 | |
2c990ec0 | 181 | if (gdk_event->y > height) return TRUE; |
340bfb43 | 182 | |
4dcaf11a | 183 | gdk_window_raise( win->m_widget->window ); |
c2fa61e8 | 184 | |
32a95f9f RR |
185 | gdk_pointer_grab( widget->window, FALSE, |
186 | (GdkEventMask) | |
187 | (GDK_BUTTON_PRESS_MASK | | |
188 | GDK_BUTTON_RELEASE_MASK | | |
f03fc89f | 189 | GDK_POINTER_MOTION_MASK | |
32a95f9f | 190 | GDK_POINTER_MOTION_HINT_MASK | |
f03fc89f | 191 | GDK_BUTTON_MOTION_MASK | |
32a95f9f | 192 | GDK_BUTTON1_MOTION_MASK), |
d3b9f782 VZ |
193 | NULL, |
194 | NULL, | |
7941ba11 | 195 | (unsigned int) GDK_CURRENT_TIME ); |
c2fa61e8 | 196 | |
32a95f9f RR |
197 | win->m_diffX = (int)gdk_event->x; |
198 | win->m_diffY = (int)gdk_event->y; | |
a2053b27 | 199 | DrawFrame( widget, 0, 0, win->m_width, win->m_height ); |
32a95f9f RR |
200 | win->m_oldX = 0; |
201 | win->m_oldY = 0; | |
c2fa61e8 | 202 | |
340bfb43 | 203 | win->m_isDragging = true; |
32a95f9f RR |
204 | |
205 | return TRUE; | |
206 | } | |
865bb325 | 207 | } |
32a95f9f RR |
208 | |
209 | //----------------------------------------------------------------------------- | |
210 | // "button_release_event" of m_mainWidget | |
211 | //----------------------------------------------------------------------------- | |
212 | ||
865bb325 | 213 | extern "C" { |
32a95f9f RR |
214 | static gint gtk_window_button_release_callback( GtkWidget *widget, GdkEventButton *gdk_event, wxMiniFrame *win ) |
215 | { | |
acfd422a RR |
216 | if (g_isIdle) wxapp_install_idle_handler(); |
217 | ||
a2053b27 | 218 | if (!win->m_hasVMT) return FALSE; |
32a95f9f RR |
219 | if (g_blockEventsOnDrag) return TRUE; |
220 | if (g_blockEventsOnScroll) return TRUE; | |
221 | ||
222 | if (!win->m_isDragging) return TRUE; | |
c2fa61e8 | 223 | |
11dbb4bf | 224 | win->m_isDragging = false; |
c2fa61e8 | 225 | |
32a95f9f RR |
226 | int x = (int)gdk_event->x; |
227 | int y = (int)gdk_event->y; | |
c2fa61e8 | 228 | |
a2053b27 | 229 | DrawFrame( widget, win->m_oldX, win->m_oldY, win->m_width, win->m_height ); |
13111b2a | 230 | gdk_pointer_ungrab ( (guint32)GDK_CURRENT_TIME ); |
c2fa61e8 | 231 | int org_x = 0; |
32a95f9f RR |
232 | int org_y = 0; |
233 | gdk_window_get_origin( widget->window, &org_x, &org_y ); | |
234 | x += org_x - win->m_diffX; | |
235 | y += org_y - win->m_diffY; | |
121a3581 RR |
236 | win->m_x = x; |
237 | win->m_y = y; | |
a2053b27 | 238 | gtk_widget_set_uposition( win->m_widget, x, y ); |
32a95f9f RR |
239 | |
240 | return TRUE; | |
241 | } | |
865bb325 | 242 | } |
32a95f9f RR |
243 | |
244 | //----------------------------------------------------------------------------- | |
245 | // "motion_notify_event" of m_mainWidget | |
246 | //----------------------------------------------------------------------------- | |
247 | ||
865bb325 | 248 | extern "C" { |
32a95f9f RR |
249 | static gint gtk_window_motion_notify_callback( GtkWidget *widget, GdkEventMotion *gdk_event, wxMiniFrame *win ) |
250 | { | |
acfd422a RR |
251 | if (g_isIdle) wxapp_install_idle_handler(); |
252 | ||
a2053b27 | 253 | if (!win->m_hasVMT) return FALSE; |
32a95f9f RR |
254 | if (g_blockEventsOnDrag) return TRUE; |
255 | if (g_blockEventsOnScroll) return TRUE; | |
256 | ||
257 | if (!win->m_isDragging) return TRUE; | |
c2fa61e8 | 258 | |
32a95f9f RR |
259 | if (gdk_event->is_hint) |
260 | { | |
261 | int x = 0; | |
262 | int y = 0; | |
263 | GdkModifierType state; | |
264 | gdk_window_get_pointer(gdk_event->window, &x, &y, &state); | |
265 | gdk_event->x = x; | |
266 | gdk_event->y = y; | |
267 | gdk_event->state = state; | |
268 | } | |
269 | ||
a2053b27 | 270 | DrawFrame( widget, win->m_oldX, win->m_oldY, win->m_width, win->m_height ); |
32a95f9f RR |
271 | win->m_oldX = (int)gdk_event->x - win->m_diffX; |
272 | win->m_oldY = (int)gdk_event->y - win->m_diffY; | |
a2053b27 | 273 | DrawFrame( widget, win->m_oldX, win->m_oldY, win->m_width, win->m_height ); |
c2fa61e8 | 274 | |
32a95f9f RR |
275 | return TRUE; |
276 | } | |
865bb325 | 277 | } |
32a95f9f RR |
278 | |
279 | //----------------------------------------------------------------------------- | |
280 | // "clicked" of X system button | |
b2b3ccc5 RR |
281 | //----------------------------------------------------------------------------- |
282 | ||
865bb325 | 283 | extern "C" { |
b2b3ccc5 RR |
284 | static void gtk_button_clicked_callback( GtkWidget *WXUNUSED(widget), wxMiniFrame *mf ) |
285 | { | |
acfd422a RR |
286 | if (g_isIdle) wxapp_install_idle_handler(); |
287 | ||
b2b3ccc5 RR |
288 | mf->Close(); |
289 | } | |
865bb325 | 290 | } |
b2b3ccc5 RR |
291 | |
292 | //----------------------------------------------------------------------------- | |
293 | // wxMiniFrame | |
294 | //----------------------------------------------------------------------------- | |
295 | ||
90350682 | 296 | static const char *cross_xpm[] = { |
5d5b3a40 RR |
297 | /* columns rows colors chars-per-pixel */ |
298 | "5 5 16 1", | |
299 | " c Gray0", | |
300 | ". c #bf0000", | |
301 | "X c #00bf00", | |
302 | "o c #bfbf00", | |
303 | "O c #0000bf", | |
304 | "+ c #bf00bf", | |
305 | "@ c #00bfbf", | |
306 | "# c None", | |
307 | "$ c #808080", | |
308 | "% c Red", | |
309 | "& c Green", | |
310 | "* c Yellow", | |
311 | "= c Blue", | |
312 | "- c Magenta", | |
313 | "; c Cyan", | |
314 | ": c Gray100", | |
315 | /* pixels */ | |
316 | " ### ", | |
317 | "# # #", | |
318 | "## ##", | |
319 | "# # #", | |
320 | " ### ", | |
321 | }; | |
322 | ||
b2b3ccc5 RR |
323 | IMPLEMENT_DYNAMIC_CLASS(wxMiniFrame,wxFrame) |
324 | ||
325 | bool wxMiniFrame::Create( wxWindow *parent, wxWindowID id, const wxString &title, | |
326 | const wxPoint &pos, const wxSize &size, | |
327 | long style, const wxString &name ) | |
328 | { | |
2c990ec0 | 329 | style = style | wxCAPTION; |
b9a535f5 | 330 | |
7282b067 | 331 | if ((style & wxCAPTION) || (style & wxTINY_CAPTION)) |
b9a535f5 | 332 | m_miniTitle = 13; |
c2fa61e8 | 333 | |
b2b3ccc5 | 334 | m_miniEdge = 3; |
340bfb43 | 335 | m_isDragging = false; |
b2b3ccc5 RR |
336 | m_oldX = -1; |
337 | m_oldY = -1; | |
338 | m_diffX = 0; | |
339 | m_diffY = 0; | |
c2fa61e8 | 340 | |
b2b3ccc5 RR |
341 | wxFrame::Create( parent, id, title, pos, size, style, name ); |
342 | ||
2c990ec0 RR |
343 | if (m_parent && (GTK_IS_WINDOW(m_parent->m_widget))) |
344 | { | |
345 | gtk_window_set_transient_for( GTK_WINDOW(m_widget), GTK_WINDOW(m_parent->m_widget) ); | |
346 | } | |
340bfb43 | 347 | |
b9a535f5 | 348 | if ((style & wxSYSTEM_MENU) && |
7282b067 | 349 | ((style & wxCAPTION) || (style & wxTINY_CAPTION))) |
b9a535f5 | 350 | { |
d3b9f782 | 351 | GdkBitmap *mask = NULL; |
90350682 VZ |
352 | GdkPixmap *pixmap = gdk_pixmap_create_from_xpm_d |
353 | ( | |
354 | wxGetRootWindow()->window, | |
355 | &mask, | |
356 | NULL, | |
357 | (char **)cross_xpm | |
358 | ); | |
c2fa61e8 | 359 | |
5d5b3a40 RR |
360 | GtkWidget *pw = gtk_pixmap_new( pixmap, mask ); |
361 | gdk_bitmap_unref( mask ); | |
362 | gdk_pixmap_unref( pixmap ); | |
363 | gtk_widget_show( pw ); | |
c2fa61e8 | 364 | |
5d5b3a40 RR |
365 | GtkWidget *close_button = gtk_button_new(); |
366 | gtk_container_add( GTK_CONTAINER(close_button), pw ); | |
c2fa61e8 RD |
367 | |
368 | gtk_pizza_put( GTK_PIZZA(m_mainWidget), | |
369 | close_button, | |
5d5b3a40 | 370 | size.x-16, 4, 11, 11 ); |
c2fa61e8 | 371 | |
b9a535f5 | 372 | gtk_widget_show( close_button ); |
c2fa61e8 | 373 | |
b9a535f5 RR |
374 | gtk_signal_connect( GTK_OBJECT(close_button), "clicked", |
375 | GTK_SIGNAL_FUNC(gtk_button_clicked_callback), (gpointer*)this ); | |
376 | } | |
c2fa61e8 | 377 | |
32a95f9f RR |
378 | /* these are called when the borders are drawn */ |
379 | gtk_signal_connect( GTK_OBJECT(m_mainWidget), "expose_event", | |
380 | GTK_SIGNAL_FUNC(gtk_window_own_expose_callback), (gpointer)this ); | |
b2b3ccc5 | 381 | |
32a95f9f RR |
382 | gtk_signal_connect( GTK_OBJECT(m_mainWidget), "draw", |
383 | GTK_SIGNAL_FUNC(gtk_window_own_draw_callback), (gpointer)this ); | |
c2fa61e8 | 384 | |
32a95f9f RR |
385 | /* these are required for dragging the mini frame around */ |
386 | gtk_signal_connect( GTK_OBJECT(m_mainWidget), "button_press_event", | |
387 | GTK_SIGNAL_FUNC(gtk_window_button_press_callback), (gpointer)this ); | |
b2b3ccc5 | 388 | |
32a95f9f RR |
389 | gtk_signal_connect( GTK_OBJECT(m_mainWidget), "button_release_event", |
390 | GTK_SIGNAL_FUNC(gtk_window_button_release_callback), (gpointer)this ); | |
b2b3ccc5 | 391 | |
32a95f9f RR |
392 | gtk_signal_connect( GTK_OBJECT(m_mainWidget), "motion_notify_event", |
393 | GTK_SIGNAL_FUNC(gtk_window_motion_notify_callback), (gpointer)this ); | |
b2b3ccc5 | 394 | |
340bfb43 | 395 | return true; |
b2b3ccc5 | 396 | } |
dcf924a3 | 397 | |
400be137 RR |
398 | void wxMiniFrame::SetTitle( const wxString &title ) |
399 | { | |
400 | wxFrame::SetTitle( title ); | |
340bfb43 | 401 | |
d3b9f782 | 402 | gtk_widget_draw( m_mainWidget, NULL ); |
400be137 RR |
403 | } |
404 | ||
11dbb4bf | 405 | #endif // wxUSE_MINIFRAME |