renatofilho@20: 
renatofilho@20: #include <gtk/gtk.h>
renatofilho@20: #include <glib.h>
renatofilho@20: #include <glib/gprintf.h>
renatofilho@20: 
renatofilho@20: #include "mmyth_uicommon.h"
renatofilho@20: #include "mmyth_ui.h"
renatofilho@20: 
renatofilho@20: static void
renatofilho@20: refresh_time_on_screen (GtkWidget *label)
renatofilho@20: {
renatofilho@20: 	time_t real_time;
renatofilho@20:   	struct tm sched_time;
renatofilho@20: 	GString *time_showed;
renatofilho@20: 
renatofilho@20: 	time_showed = g_string_new("");
renatofilho@20: 	time(&real_time);
renatofilho@20: 
renatofilho@20:     if (localtime_r((time_t *)&real_time, &sched_time) == NULL) {
renatofilho@20:         g_error ("localtime_r error in mmyth_epg_grid_view!\n");
rosfran@244:         return;
renatofilho@20:     }
renatofilho@20: 
renatofilho@20: 	g_string_printf(time_showed, "%d:%02d:%02d", 
renatofilho@20: 		sched_time.tm_hour, 
renatofilho@20: 		sched_time.tm_min, 
renatofilho@20: 		sched_time.tm_sec);
renatofilho@20: 
renatofilho@20: 	gtk_label_set_text (GTK_LABEL(label), time_showed->str);
renatofilho@20: }
renatofilho@20: 
renatofilho@20: MMythUiCommon *
renatofilho@20: mmyth_uicommon_new (GtkWidget * main_widget, const gchar * label1,
renatofilho@20:                     const gchar * label2, const gchar * label3)
renatofilho@20: {
renatofilho@20: 
renatofilho@20:     MMythUiCommon *ui_common = g_new0 (MMythUiCommon, 1); 
renatofilho@20:     
renatofilho@20:     if (!main_widget) {
renatofilho@20:     	g_warning ("MMythUICommon created with a NULL main widget\n");
renatofilho@20:     }
renatofilho@20:     
renatofilho@20:     ui_common->main_widget = main_widget;
renatofilho@20: 
renatofilho@20:     ui_common->event_box = gtk_event_box_new();
renatofilho@20:     
renatofilho@20:     /* Vertical box that divides the control area into two (buttons + clock) */
renatofilho@20:     ui_common->vbox = gtk_vbox_new (FALSE, 0);  /* spacing */
renatofilho@20:     gtk_container_set_border_width(GTK_CONTAINER (ui_common->vbox), 4);
renatofilho@20:     
renatofilho@20:     gtk_container_add (GTK_CONTAINER (ui_common->event_box),
renatofilho@20:                        ui_common->vbox);
renatofilho@20:     gtk_widget_modify_bg(ui_common->event_box, GTK_STATE_NORMAL, &main_bg_color);  
renatofilho@20:     
renatofilho@20:     /* Vertical box that divides the control area into four */
renatofilho@20:     ui_common->button_vbox = gtk_vbox_new (TRUE, 0);    /* spacing */
renatofilho@20: 
renatofilho@20:     gtk_container_set_border_width (GTK_CONTAINER (ui_common->button_vbox), 0);
renatofilho@20: 
renatofilho@20:     /* The button 1 */
renatofilho@20:     ui_common->button1 = gtk_button_new_with_label (label1);
renatofilho@20:     gtk_widget_modify_bg(ui_common->button1, GTK_STATE_NORMAL, &main_bg_color);  
renatofilho@20:     gtk_widget_set_size_request (ui_common->button1, BUTTON_WIDTH,
renatofilho@20:                                  BUTTON_HEIGHT);
renatofilho@20: 
renatofilho@20:     /* The button 2 */
renatofilho@20:     ui_common->button2 = gtk_button_new_with_label (label2);
renatofilho@20:     gtk_widget_modify_bg(ui_common->button2, GTK_STATE_NORMAL, &main_bg_color);  
renatofilho@20:     gtk_widget_set_size_request (ui_common->button2, BUTTON_WIDTH,
renatofilho@20:                                  BUTTON_HEIGHT);
renatofilho@20: 
renatofilho@20:     /* The button 3 */
renatofilho@20:     ui_common->button3 = gtk_button_new_with_label (label3);
renatofilho@20:     gtk_widget_modify_bg(ui_common->button3, GTK_STATE_NORMAL, &main_bg_color);  
renatofilho@20:     gtk_widget_set_size_request (ui_common->button3, BUTTON_WIDTH,
renatofilho@20:                                  BUTTON_HEIGHT);
renatofilho@20: 
renatofilho@20:     /* The clock label */
renatofilho@20:     ui_common->label = gtk_label_new ("Starting...");
renatofilho@20:     gtk_widget_show (ui_common->label);
renatofilho@20:     ui_common->source_id = g_timeout_add(500, (GSourceFunc) refresh_time_on_screen, ui_common->label);
renatofilho@20: 
renatofilho@20:     /* Packing components */
renatofilho@20:     gtk_box_pack_start (GTK_BOX (ui_common->vbox),
renatofilho@20:                         ui_common->button_vbox, TRUE, TRUE, 0);
renatofilho@20: 
renatofilho@20:     gtk_box_pack_start (GTK_BOX (ui_common->vbox),
renatofilho@20:                         ui_common->label, FALSE, FALSE, 0);
renatofilho@20: 
renatofilho@20:     gtk_box_pack_start (GTK_BOX (ui_common->button_vbox),
renatofilho@20:                         ui_common->button1, FALSE, FALSE, 0);
renatofilho@20: 
renatofilho@20:     gtk_box_pack_start (GTK_BOX (ui_common->button_vbox),
renatofilho@20:                         ui_common->button2, FALSE, FALSE, 0);
renatofilho@20: 
renatofilho@20:     gtk_box_pack_start (GTK_BOX (ui_common->button_vbox),
renatofilho@20:                         ui_common->button3, FALSE, FALSE, 0);
renatofilho@20: 
renatofilho@20:     gtk_widget_show_all (ui_common->event_box);
renatofilho@20: 
renatofilho@20:     /* FIXME: mmyth_ui->video_alignment == NULL when mmyth_player_init fails */
renatofilho@20:     if(ui_common->main_widget != NULL)
renatofilho@20:         g_object_ref (ui_common->main_widget);
renatofilho@20:         
renatofilho@20:     g_object_ref (ui_common->vbox);
renatofilho@20:     g_object_ref (ui_common->button_vbox);
renatofilho@20:     g_object_ref (ui_common->label);
renatofilho@20:     g_object_ref (ui_common->button1);
renatofilho@20:     g_object_ref (ui_common->button2);
renatofilho@20:     g_object_ref (ui_common->button3);
renatofilho@20:     g_object_ref (ui_common->event_box);
renatofilho@20:     return ui_common;
renatofilho@20: }
renatofilho@20: 
renatofilho@20: void
renatofilho@20: mmyth_uicommon_free (MMythUiCommon *ui_common)
renatofilho@20: {
renatofilho@20: 	g_debug ("[%s] Clean uicommon used memory", __FUNCTION__);
renatofilho@20: 
renatofilho@20:     g_source_remove (ui_common->source_id);
renatofilho@20:     	
renatofilho@20:     g_object_unref (ui_common->main_widget);
renatofilho@20:     g_object_unref (ui_common->vbox);
renatofilho@20:     g_object_unref (ui_common->button_vbox);
renatofilho@20:     g_object_unref (ui_common->label);
renatofilho@20:     g_object_unref (ui_common->button1);
renatofilho@20:     g_object_unref (ui_common->button2);
renatofilho@20:     g_object_unref (ui_common->button3);
renatofilho@20:     g_object_unref (ui_common->event_box);    
renatofilho@20:     
renatofilho@20:     g_free (ui_common);
renatofilho@20: }
renatofilho@20: 
renatofilho@20: