1 /* ///////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/assertdlg_gtk.cpp
3 // Purpose: GtkAssertDialog
4 // Author: Francesco Montorsi
5 // Copyright: (c) 2006 Francesco Montorsi
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////// */
14 #include "wx/gtk/assertdlg_gtk.h"
15 #include "wx/gtk/private/gtk2-compat.h"
19 /* ----------------------------------------------------------------------------
21 ---------------------------------------------------------------------------- */
24 NB: when changing order of the columns also update the gtk_list_store_new() call
25 in gtk_assert_dialog_create_backtrace_list_model() function
27 #define STACKFRAME_LEVEL_COLIDX 0
28 #define FUNCTION_PROTOTYPE_COLIDX 1
29 #define SOURCE_FILE_COLIDX 2
30 #define LINE_NUMBER_COLIDX 3
32 /* ----------------------------------------------------------------------------
33 GtkAssertDialog helpers
34 ---------------------------------------------------------------------------- */
37 GtkWidget
*gtk_assert_dialog_add_button_to (GtkBox
*box
, const gchar
*label
,
40 /* create the button */
41 GtkWidget
*button
= gtk_button_new_with_mnemonic (label
);
42 gtk_widget_set_can_default(button
, true);
44 /* add a stock icon inside it */
45 GtkWidget
*image
= gtk_image_new_from_stock (stock
, GTK_ICON_SIZE_BUTTON
);
46 gtk_button_set_image (GTK_BUTTON (button
), image
);
48 /* add to the given (container) widget */
50 gtk_box_pack_end (box
, button
, FALSE
, TRUE
, 8);
56 GtkWidget
*gtk_assert_dialog_add_button (GtkAssertDialog
*dlg
, const gchar
*label
,
57 const gchar
*stock
, gint response_id
)
59 /* create the button */
60 GtkWidget
* button
= gtk_assert_dialog_add_button_to(NULL
, label
, stock
);
62 /* add the button to the dialog's action area */
63 gtk_dialog_add_action_widget (GTK_DIALOG (dlg
), button
, response_id
);
71 void gtk_assert_dialog_append_text_column (GtkWidget
*treeview
, const gchar
*name
, int index
)
73 GtkCellRenderer
*renderer
;
74 GtkTreeViewColumn
*column
;
76 renderer
= gtk_cell_renderer_text_new ();
77 column
= gtk_tree_view_column_new_with_attributes (name
, renderer
,
79 gtk_tree_view_insert_column (GTK_TREE_VIEW (treeview
), column
, index
);
80 gtk_tree_view_column_set_resizable (column
, TRUE
);
81 gtk_tree_view_column_set_reorderable (column
, TRUE
);
85 GtkWidget
*gtk_assert_dialog_create_backtrace_list_model ()
90 /* create list store */
91 store
= gtk_list_store_new (4,
92 G_TYPE_UINT
, /* stack frame number */
93 G_TYPE_STRING
, /* function prototype */
94 G_TYPE_STRING
, /* source file name */
95 G_TYPE_STRING
); /* line number */
97 /* create the tree view */
98 treeview
= gtk_tree_view_new_with_model (GTK_TREE_MODEL(store
));
99 g_object_unref (store
);
100 gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (treeview
), TRUE
);
103 gtk_assert_dialog_append_text_column(treeview
, "#", STACKFRAME_LEVEL_COLIDX
);
104 gtk_assert_dialog_append_text_column(treeview
, "Function Prototype", FUNCTION_PROTOTYPE_COLIDX
);
105 gtk_assert_dialog_append_text_column(treeview
, "Source file", SOURCE_FILE_COLIDX
);
106 gtk_assert_dialog_append_text_column(treeview
, "Line #", LINE_NUMBER_COLIDX
);
112 void gtk_assert_dialog_process_backtrace (GtkAssertDialog
*dlg
)
114 /* set busy cursor */
115 GdkWindow
*parent
= gtk_widget_get_window(GTK_WIDGET(dlg
));
116 GdkCursor
*cur
= gdk_cursor_new (GDK_WATCH
);
117 gdk_window_set_cursor (parent
, cur
);
120 (*dlg
->callback
)(dlg
->userdata
);
122 /* toggle busy cursor */
123 gdk_window_set_cursor (parent
, NULL
);
127 gdk_cursor_unref (cur
);
132 /* ----------------------------------------------------------------------------
133 GtkAssertDialog signal handlers
134 ---------------------------------------------------------------------------- */
136 static void gtk_assert_dialog_expander_callback(GtkWidget
*, GtkAssertDialog
* dlg
)
138 /* status is not yet updated so we need to invert it to get the new one */
139 gboolean expanded
= !gtk_expander_get_expanded (GTK_EXPANDER(dlg
->expander
));
140 gtk_window_set_resizable (GTK_WINDOW (dlg
), expanded
);
142 if (dlg
->callback
== NULL
) /* was the backtrace already processed? */
145 gtk_assert_dialog_process_backtrace (dlg
);
147 /* mark the work as done (so that next activate we won't call the callback again) */
148 dlg
->callback
= NULL
;
151 static void gtk_assert_dialog_save_backtrace_callback(GtkWidget
*, GtkAssertDialog
* dlg
)
155 dialog
= gtk_file_chooser_dialog_new ("Save assert info to file", GTK_WINDOW(dlg
),
156 GTK_FILE_CHOOSER_ACTION_SAVE
,
157 GTK_STOCK_CANCEL
, GTK_RESPONSE_CANCEL
,
158 GTK_STOCK_SAVE
, GTK_RESPONSE_ACCEPT
,
161 if (gtk_dialog_run (GTK_DIALOG (dialog
)) == GTK_RESPONSE_ACCEPT
)
163 char *filename
, *msg
, *backtrace
;
166 filename
= gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog
));
169 msg
= gtk_assert_dialog_get_message (dlg
);
170 backtrace
= gtk_assert_dialog_get_backtrace (dlg
);
172 /* open the file and write all info inside it */
173 fp
= fopen (filename
, "w");
176 fprintf (fp
, "ASSERT INFO:\n%s\n\nBACKTRACE:\n%s", msg
, backtrace
);
186 gtk_widget_destroy (dialog
);
189 static void gtk_assert_dialog_copy_callback(GtkWidget
*, GtkAssertDialog
* dlg
)
191 char *msg
, *backtrace
;
192 GtkClipboard
*clipboard
;
195 msg
= gtk_assert_dialog_get_message (dlg
);
196 backtrace
= gtk_assert_dialog_get_backtrace (dlg
);
198 /* combine both in a single string */
199 str
= g_string_new("");
200 g_string_printf (str
, "ASSERT INFO:\n%s\n\nBACKTRACE:\n%s\n\n", msg
, backtrace
);
202 /* copy everything in default clipboard */
203 clipboard
= gtk_clipboard_get (GDK_SELECTION_CLIPBOARD
);
204 gtk_clipboard_set_text (clipboard
, str
->str
, str
->len
);
206 /* copy everything in primary clipboard too */
207 clipboard
= gtk_clipboard_get (GDK_SELECTION_PRIMARY
);
208 gtk_clipboard_set_text (clipboard
, str
->str
, str
->len
);
212 g_string_free (str
, TRUE
);
216 #endif // wxUSE_STACKWALKER
219 static void gtk_assert_dialog_continue_callback(GtkWidget
*, GtkAssertDialog
* dlg
)
222 gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(dlg
->shownexttime
)) ?
223 GTK_ASSERT_DIALOG_CONTINUE
: GTK_ASSERT_DIALOG_CONTINUE_SUPPRESSING
;
225 gtk_dialog_response (GTK_DIALOG(dlg
), response
);
229 /* ----------------------------------------------------------------------------
230 GtkAssertDialogClass implementation
231 ---------------------------------------------------------------------------- */
234 static void gtk_assert_dialog_init(GTypeInstance
* instance
, void*);
237 GType
gtk_assert_dialog_get_type()
239 static GType assert_dialog_type
;
241 if (!assert_dialog_type
)
243 const GTypeInfo assert_dialog_info
=
245 sizeof (GtkAssertDialogClass
),
246 NULL
, /* base_init */
247 NULL
, /* base_finalize */
249 NULL
, /* class_finalize */
250 NULL
, /* class_data */
251 sizeof (GtkAssertDialog
),
252 16, /* n_preallocs */
253 gtk_assert_dialog_init
,
256 assert_dialog_type
= g_type_register_static (GTK_TYPE_DIALOG
, "GtkAssertDialog", &assert_dialog_info
, (GTypeFlags
)0);
259 return assert_dialog_type
;
263 static void gtk_assert_dialog_init(GTypeInstance
* instance
, void*)
265 GtkAssertDialog
* dlg
= GTK_ASSERT_DIALOG(instance
);
266 GtkWidget
*continuebtn
;
269 GtkWidget
*vbox
, *hbox
, *image
;
271 /* start the main vbox */
272 gtk_widget_push_composite_child ();
273 vbox
= gtk_box_new(GTK_ORIENTATION_VERTICAL
, 8);
274 gtk_container_set_border_width (GTK_CONTAINER(vbox
), 8);
275 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dlg
))), vbox
, true, true, 5);
278 /* add the icon+message hbox */
279 hbox
= gtk_box_new(GTK_ORIENTATION_HORIZONTAL
, 0);
280 gtk_box_pack_start (GTK_BOX(vbox
), hbox
, FALSE
, FALSE
, 0);
283 image
= gtk_image_new_from_stock (GTK_STOCK_DIALOG_ERROR
, GTK_ICON_SIZE_DIALOG
);
284 gtk_box_pack_start (GTK_BOX(hbox
), image
, FALSE
, FALSE
, 12);
287 GtkWidget
*vbox2
, *info
;
290 vbox2
= gtk_box_new(GTK_ORIENTATION_VERTICAL
, 0);
291 gtk_box_pack_start (GTK_BOX (hbox
), vbox2
, TRUE
, TRUE
, 0);
292 info
= gtk_label_new ("An assertion failed!");
293 gtk_box_pack_start (GTK_BOX(vbox2
), info
, TRUE
, TRUE
, 8);
296 dlg
->message
= gtk_label_new (NULL
);
297 gtk_label_set_selectable (GTK_LABEL (dlg
->message
), TRUE
);
298 gtk_label_set_line_wrap (GTK_LABEL (dlg
->message
), TRUE
);
299 gtk_label_set_justify (GTK_LABEL (dlg
->message
), GTK_JUSTIFY_LEFT
);
300 gtk_widget_set_size_request (GTK_WIDGET(dlg
->message
), 450, -1);
302 gtk_box_pack_end (GTK_BOX(vbox2
), GTK_WIDGET(dlg
->message
), TRUE
, TRUE
, 8);
305 #if wxUSE_STACKWALKER
306 /* add the expander */
307 dlg
->expander
= gtk_expander_new_with_mnemonic ("Back_trace:");
308 gtk_box_pack_start (GTK_BOX(vbox
), dlg
->expander
, TRUE
, TRUE
, 0);
309 g_signal_connect (dlg
->expander
, "activate",
310 G_CALLBACK(gtk_assert_dialog_expander_callback
), dlg
);
311 #endif // wxUSE_STACKWALKER
313 #if wxUSE_STACKWALKER
315 GtkWidget
*hbox
, *vbox
, *button
, *sw
;
317 /* create expander's vbox */
318 vbox
= gtk_box_new(GTK_ORIENTATION_VERTICAL
, 0);
319 gtk_container_add (GTK_CONTAINER (dlg
->expander
), vbox
);
321 /* add a scrollable window under the expander */
322 sw
= gtk_scrolled_window_new (NULL
, NULL
);
323 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw
), GTK_SHADOW_ETCHED_IN
);
324 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw
), GTK_POLICY_AUTOMATIC
,
325 GTK_POLICY_AUTOMATIC
);
326 gtk_box_pack_start (GTK_BOX(vbox
), sw
, TRUE
, TRUE
, 8);
328 /* add the treeview to the scrollable window */
329 dlg
->treeview
= gtk_assert_dialog_create_backtrace_list_model ();
330 gtk_widget_set_size_request (GTK_WIDGET(dlg
->treeview
), -1, 180);
331 gtk_container_add (GTK_CONTAINER (sw
), dlg
->treeview
);
333 /* create button's hbox */
334 hbox
= gtk_button_box_new(GTK_ORIENTATION_HORIZONTAL
);
335 gtk_box_pack_end (GTK_BOX(vbox
), hbox
, FALSE
, FALSE
, 0);
336 gtk_button_box_set_layout (GTK_BUTTON_BOX(hbox
), GTK_BUTTONBOX_END
);
338 /* add the buttons */
339 button
= gtk_assert_dialog_add_button_to (GTK_BOX(hbox
), "Save to _file",
341 g_signal_connect (button
, "clicked",
342 G_CALLBACK(gtk_assert_dialog_save_backtrace_callback
), dlg
);
344 button
= gtk_assert_dialog_add_button_to (GTK_BOX(hbox
), "Copy to clip_board",
346 g_signal_connect (button
, "clicked", G_CALLBACK(gtk_assert_dialog_copy_callback
), dlg
);
348 #endif // wxUSE_STACKWALKER
350 /* add the checkbutton */
351 dlg
->shownexttime
= gtk_check_button_new_with_mnemonic("Show this _dialog the next time");
352 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(dlg
->shownexttime
), TRUE
);
353 gtk_box_pack_end(GTK_BOX(gtk_dialog_get_action_area(GTK_DIALOG(dlg
))), dlg
->shownexttime
, false, true, 8);
355 /* add the stop button */
356 gtk_assert_dialog_add_button (dlg
, "_Stop", GTK_STOCK_QUIT
, GTK_ASSERT_DIALOG_STOP
);
358 /* add the continue button */
359 continuebtn
= gtk_assert_dialog_add_button (dlg
, "_Continue", GTK_STOCK_YES
, GTK_ASSERT_DIALOG_CONTINUE
);
360 gtk_dialog_set_default_response (GTK_DIALOG (dlg
), GTK_ASSERT_DIALOG_CONTINUE
);
361 g_signal_connect (continuebtn
, "clicked", G_CALLBACK(gtk_assert_dialog_continue_callback
), dlg
);
363 /* complete creation */
364 dlg
->callback
= NULL
;
365 dlg
->userdata
= NULL
;
367 /* the resizable property of this window is modified by the expander:
368 when it's collapsed, the window must be non-resizable! */
369 gtk_window_set_resizable (GTK_WINDOW (dlg
), FALSE
);
370 gtk_widget_pop_composite_child ();
371 gtk_widget_show_all (GTK_WIDGET(dlg
));
375 /* ----------------------------------------------------------------------------
376 GtkAssertDialog public API
377 ---------------------------------------------------------------------------- */
379 gchar
*gtk_assert_dialog_get_message (GtkAssertDialog
*dlg
)
382 1) returned string must g_free()d !
383 2) Pango markup is automatically stripped off by GTK
385 return g_strdup (gtk_label_get_text (GTK_LABEL(dlg
->message
)));
388 #if wxUSE_STACKWALKER
390 gchar
*gtk_assert_dialog_get_backtrace (GtkAssertDialog
*dlg
)
392 gchar
*function
, *sourcefile
, *linenum
;
399 g_return_val_if_fail (GTK_IS_ASSERT_DIALOG (dlg
), NULL
);
400 model
= gtk_tree_view_get_model (GTK_TREE_VIEW(dlg
->treeview
));
401 string
= g_string_new("");
403 /* iterate over the list */
404 if (!gtk_tree_model_get_iter_first (model
, &iter
))
409 /* append this stack frame's info to the string */
410 gtk_tree_model_get(model
, &iter
,
411 STACKFRAME_LEVEL_COLIDX
, &count
,
412 FUNCTION_PROTOTYPE_COLIDX
, &function
,
413 SOURCE_FILE_COLIDX
, &sourcefile
,
414 LINE_NUMBER_COLIDX
, &linenum
,
417 g_string_append_printf(string
, "[%u] %s",
419 if (sourcefile
[0] != '\0')
420 g_string_append_printf (string
, " %s", sourcefile
);
421 if (linenum
[0] != '\0')
422 g_string_append_printf (string
, ":%s", linenum
);
423 g_string_append (string
, "\n");
429 } while (gtk_tree_model_iter_next (model
, &iter
));
431 /* returned string must g_free()d */
432 return g_string_free (string
, FALSE
);
435 #endif // wxUSE_STACKWALKER
437 void gtk_assert_dialog_set_message(GtkAssertDialog
*dlg
, const gchar
*msg
)
439 /* prepend and append the <b> tag
440 NOTE: g_markup_printf_escaped() is not used because it's available
441 only for glib >= 2.4 */
442 gchar
*escaped_msg
= g_markup_escape_text (msg
, -1);
443 gchar
*decorated_msg
= g_strdup_printf ("<b>%s</b>", escaped_msg
);
445 g_return_if_fail (GTK_IS_ASSERT_DIALOG (dlg
));
446 gtk_label_set_markup (GTK_LABEL(dlg
->message
), decorated_msg
);
448 g_free (decorated_msg
);
449 g_free (escaped_msg
);
452 #if wxUSE_STACKWALKER
454 void gtk_assert_dialog_set_backtrace_callback(GtkAssertDialog
*assertdlg
,
455 GtkAssertDialogStackFrameCallback callback
,
458 assertdlg
->callback
= callback
;
459 assertdlg
->userdata
= userdata
;
462 void gtk_assert_dialog_append_stack_frame(GtkAssertDialog
*dlg
,
463 const gchar
*function
,
464 const gchar
*sourcefile
,
472 g_return_if_fail (GTK_IS_ASSERT_DIALOG (dlg
));
473 model
= gtk_tree_view_get_model (GTK_TREE_VIEW(dlg
->treeview
));
475 /* how many items are in the list up to now ? */
476 count
= gtk_tree_model_iter_n_children (model
, NULL
);
478 linenum
= g_string_new("");
479 if ( line_number
!= 0 )
480 g_string_printf (linenum
, "%u", line_number
);
482 /* add data to the list store */
483 gtk_list_store_append (GTK_LIST_STORE(model
), &iter
);
484 gtk_list_store_set (GTK_LIST_STORE(model
), &iter
,
485 STACKFRAME_LEVEL_COLIDX
, count
+1, /* start from 1 and not from 0 */
486 FUNCTION_PROTOTYPE_COLIDX
, function
,
487 SOURCE_FILE_COLIDX
, sourcefile
,
488 LINE_NUMBER_COLIDX
, linenum
->str
,
491 g_string_free (linenum
, TRUE
);
494 #endif // wxUSE_STACKWALKER
496 GtkWidget
*gtk_assert_dialog_new(void)
498 void* dialog
= g_object_new(GTK_TYPE_ASSERT_DIALOG
, NULL
);
500 return GTK_WIDGET (dialog
);
503 #endif // wxDEBUG_LEVEL