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