comparison src/fullscreen.c @ 469:a05c72927e23

Rename few functions and replace fullscreen info with image overlay template string. fullscreen_info_default_cb() -> image_overlay_default_template_cb() fullscreen_info_default_ok_cb() -> image_overlay_default_template_ok_cb() set_default_fullscreen_info() -> set_default_image_overlay_template_string() (moved to image-overlay.h)
author zas_
date Mon, 21 Apr 2008 20:12:49 +0000
parents 2df505c60459
children 48c8e49b571c
comparison
equal deleted inserted replaced
468:2df505c60459 469:a05c72927e23
29 /* 29 /*
30 *---------------------------------------------------------------------------- 30 *----------------------------------------------------------------------------
31 * full screen functions 31 * full screen functions
32 *---------------------------------------------------------------------------- 32 *----------------------------------------------------------------------------
33 */ 33 */
34
35 void set_default_fullscreen_info(ConfOptions *options)
36 {
37 if (options->image_overlay.common.template_string) g_free(options->image_overlay.common.template_string);
38 options->image_overlay.common.template_string = g_strdup(DEFAULT_OVERLAY_INFO);
39 }
40 34
41 static void clear_mouse_cursor(GtkWidget *widget, gint state) 35 static void clear_mouse_cursor(GtkWidget *widget, gint state)
42 { 36 {
43 if (!widget->window) return; 37 if (!widget->window) return;
44 38