maemo-ui/src/mmyth_uicommon.c
author morphbr
Wed Apr 04 16:47:00 2007 +0100 (2007-04-04)
branchtrunk
changeset 496 8f9fe41efa81
parent 20 7174e23f7617
child 754 cb885ee44618
permissions -rw-r--r--
[svn r501] Changed test client name
renatofilho@20
     1
renatofilho@20
     2
#include <gtk/gtk.h>
renatofilho@20
     3
#include <glib.h>
renatofilho@20
     4
#include <glib/gprintf.h>
renatofilho@20
     5
renatofilho@20
     6
#include "mmyth_uicommon.h"
renatofilho@20
     7
#include "mmyth_ui.h"
renatofilho@20
     8
renatofilho@20
     9
static void
renatofilho@20
    10
refresh_time_on_screen (GtkWidget *label)
renatofilho@20
    11
{
renatofilho@20
    12
	time_t real_time;
renatofilho@20
    13
  	struct tm sched_time;
renatofilho@20
    14
	GString *time_showed;
renatofilho@20
    15
renatofilho@20
    16
	time_showed = g_string_new("");
renatofilho@20
    17
	time(&real_time);
renatofilho@20
    18
renatofilho@20
    19
    if (localtime_r((time_t *)&real_time, &sched_time) == NULL) {
renatofilho@20
    20
        g_error ("localtime_r error in mmyth_epg_grid_view!\n");
rosfran@244
    21
        return;
renatofilho@20
    22
    }
renatofilho@20
    23
renatofilho@20
    24
	g_string_printf(time_showed, "%d:%02d:%02d", 
renatofilho@20
    25
		sched_time.tm_hour, 
renatofilho@20
    26
		sched_time.tm_min, 
renatofilho@20
    27
		sched_time.tm_sec);
renatofilho@20
    28
renatofilho@20
    29
	gtk_label_set_text (GTK_LABEL(label), time_showed->str);
renatofilho@20
    30
}
renatofilho@20
    31
renatofilho@20
    32
MMythUiCommon *
renatofilho@20
    33
mmyth_uicommon_new (GtkWidget * main_widget, const gchar * label1,
renatofilho@20
    34
                    const gchar * label2, const gchar * label3)
renatofilho@20
    35
{
renatofilho@20
    36
renatofilho@20
    37
    MMythUiCommon *ui_common = g_new0 (MMythUiCommon, 1); 
renatofilho@20
    38
    
renatofilho@20
    39
    if (!main_widget) {
renatofilho@20
    40
    	g_warning ("MMythUICommon created with a NULL main widget\n");
renatofilho@20
    41
    }
renatofilho@20
    42
    
renatofilho@20
    43
    ui_common->main_widget = main_widget;
renatofilho@20
    44
renatofilho@20
    45
    ui_common->event_box = gtk_event_box_new();
renatofilho@20
    46
    
renatofilho@20
    47
    /* Vertical box that divides the control area into two (buttons + clock) */
renatofilho@20
    48
    ui_common->vbox = gtk_vbox_new (FALSE, 0);  /* spacing */
renatofilho@20
    49
    gtk_container_set_border_width(GTK_CONTAINER (ui_common->vbox), 4);
renatofilho@20
    50
    
renatofilho@20
    51
    gtk_container_add (GTK_CONTAINER (ui_common->event_box),
renatofilho@20
    52
                       ui_common->vbox);
renatofilho@20
    53
    gtk_widget_modify_bg(ui_common->event_box, GTK_STATE_NORMAL, &main_bg_color);  
renatofilho@20
    54
    
renatofilho@20
    55
    /* Vertical box that divides the control area into four */
renatofilho@20
    56
    ui_common->button_vbox = gtk_vbox_new (TRUE, 0);    /* spacing */
renatofilho@20
    57
renatofilho@20
    58
    gtk_container_set_border_width (GTK_CONTAINER (ui_common->button_vbox), 0);
renatofilho@20
    59
renatofilho@20
    60
    /* The button 1 */
renatofilho@20
    61
    ui_common->button1 = gtk_button_new_with_label (label1);
renatofilho@20
    62
    gtk_widget_modify_bg(ui_common->button1, GTK_STATE_NORMAL, &main_bg_color);  
renatofilho@20
    63
    gtk_widget_set_size_request (ui_common->button1, BUTTON_WIDTH,
renatofilho@20
    64
                                 BUTTON_HEIGHT);
renatofilho@20
    65
renatofilho@20
    66
    /* The button 2 */
renatofilho@20
    67
    ui_common->button2 = gtk_button_new_with_label (label2);
renatofilho@20
    68
    gtk_widget_modify_bg(ui_common->button2, GTK_STATE_NORMAL, &main_bg_color);  
renatofilho@20
    69
    gtk_widget_set_size_request (ui_common->button2, BUTTON_WIDTH,
renatofilho@20
    70
                                 BUTTON_HEIGHT);
renatofilho@20
    71
renatofilho@20
    72
    /* The button 3 */
renatofilho@20
    73
    ui_common->button3 = gtk_button_new_with_label (label3);
renatofilho@20
    74
    gtk_widget_modify_bg(ui_common->button3, GTK_STATE_NORMAL, &main_bg_color);  
renatofilho@20
    75
    gtk_widget_set_size_request (ui_common->button3, BUTTON_WIDTH,
renatofilho@20
    76
                                 BUTTON_HEIGHT);
renatofilho@20
    77
renatofilho@20
    78
    /* The clock label */
renatofilho@20
    79
    ui_common->label = gtk_label_new ("Starting...");
renatofilho@20
    80
    gtk_widget_show (ui_common->label);
renatofilho@20
    81
    ui_common->source_id = g_timeout_add(500, (GSourceFunc) refresh_time_on_screen, ui_common->label);
renatofilho@20
    82
renatofilho@20
    83
    /* Packing components */
renatofilho@20
    84
    gtk_box_pack_start (GTK_BOX (ui_common->vbox),
renatofilho@20
    85
                        ui_common->button_vbox, TRUE, TRUE, 0);
renatofilho@20
    86
renatofilho@20
    87
    gtk_box_pack_start (GTK_BOX (ui_common->vbox),
renatofilho@20
    88
                        ui_common->label, FALSE, FALSE, 0);
renatofilho@20
    89
renatofilho@20
    90
    gtk_box_pack_start (GTK_BOX (ui_common->button_vbox),
renatofilho@20
    91
                        ui_common->button1, FALSE, FALSE, 0);
renatofilho@20
    92
renatofilho@20
    93
    gtk_box_pack_start (GTK_BOX (ui_common->button_vbox),
renatofilho@20
    94
                        ui_common->button2, FALSE, FALSE, 0);
renatofilho@20
    95
renatofilho@20
    96
    gtk_box_pack_start (GTK_BOX (ui_common->button_vbox),
renatofilho@20
    97
                        ui_common->button3, FALSE, FALSE, 0);
renatofilho@20
    98
renatofilho@20
    99
    gtk_widget_show_all (ui_common->event_box);
renatofilho@20
   100
renatofilho@20
   101
    /* FIXME: mmyth_ui->video_alignment == NULL when mmyth_player_init fails */
renatofilho@20
   102
    if(ui_common->main_widget != NULL)
renatofilho@20
   103
        g_object_ref (ui_common->main_widget);
renatofilho@20
   104
        
renatofilho@20
   105
    g_object_ref (ui_common->vbox);
renatofilho@20
   106
    g_object_ref (ui_common->button_vbox);
renatofilho@20
   107
    g_object_ref (ui_common->label);
renatofilho@20
   108
    g_object_ref (ui_common->button1);
renatofilho@20
   109
    g_object_ref (ui_common->button2);
renatofilho@20
   110
    g_object_ref (ui_common->button3);
renatofilho@20
   111
    g_object_ref (ui_common->event_box);
renatofilho@20
   112
    return ui_common;
renatofilho@20
   113
}
renatofilho@20
   114
renatofilho@20
   115
void
renatofilho@20
   116
mmyth_uicommon_free (MMythUiCommon *ui_common)
renatofilho@20
   117
{
renatofilho@20
   118
	g_debug ("[%s] Clean uicommon used memory", __FUNCTION__);
renatofilho@20
   119
renatofilho@20
   120
    g_source_remove (ui_common->source_id);
renatofilho@20
   121
    	
renatofilho@20
   122
    g_object_unref (ui_common->main_widget);
renatofilho@20
   123
    g_object_unref (ui_common->vbox);
renatofilho@20
   124
    g_object_unref (ui_common->button_vbox);
renatofilho@20
   125
    g_object_unref (ui_common->label);
renatofilho@20
   126
    g_object_unref (ui_common->button1);
renatofilho@20
   127
    g_object_unref (ui_common->button2);
renatofilho@20
   128
    g_object_unref (ui_common->button3);
renatofilho@20
   129
    g_object_unref (ui_common->event_box);    
renatofilho@20
   130
    
renatofilho@20
   131
    g_free (ui_common);
renatofilho@20
   132
}
renatofilho@20
   133
renatofilho@20
   134