maemo-ui/src/mmyth_ui.c
author rosfran
Fri Nov 24 18:51:42 2006 +0000 (2006-11-24)
branchtrunk
changeset 110 ce35e2e839f4
child 208 c3c073032757
permissions -rw-r--r--
[svn r111] Put the gmyth_livetv calls in the right place...
renatofilho@20
     1
renatofilho@20
     2
#include <glib-object.h>
renatofilho@20
     3
#include <sys/types.h>
renatofilho@20
     4
#include <sys/stat.h>
renatofilho@20
     5
#include <unistd.h>
renatofilho@20
     6
#include <string.h>
renatofilho@20
     7
#include <stdio.h>
renatofilho@20
     8
#include <gtk/gtk.h>
renatofilho@20
     9
#include <gdk/gdkx.h>
renatofilho@20
    10
#include <gst/interfaces/xoverlay.h>
renatofilho@20
    11
#include <assert.h>
renatofilho@20
    12
renatofilho@20
    13
#include "mmyth_ui.h"
renatofilho@20
    14
#include "mmyth_uicommon.h"
renatofilho@20
    15
#include "mmyth_schedulerui.h"
renatofilho@20
    16
#include "mmyth_recordui.h"
renatofilho@20
    17
#include "mmyth_uisettings.h"
renatofilho@20
    18
#include "mmyth_epg_grid_view.h"
renatofilho@20
    19
#include "mmyth_tvplayer.h"
renatofilho@20
    20
renatofilho@20
    21
/* GMyth library includes */
renatofilho@20
    22
#include "gmyth_context.h"
renatofilho@20
    23
renatofilho@20
    24
#ifndef MAEMO_PLATFORM
renatofilho@20
    25
static gint button_press_handler (GtkWidget *widget, GdkEvent *event);
renatofilho@20
    26
#endif
renatofilho@20
    27
renatofilho@20
    28
static MMythUiCommon *create_main_view (MMythUi * mmyth_ui);
renatofilho@20
    29
static MMythUiCommon *create_video_view (MMythUi * mmyth_ui);
renatofilho@20
    30
static MMythUiCommon *create_epg_grid_view (MMythUi * mmyth_ui);
renatofilho@20
    31
static MMythUiCommon *create_record_view (MMythUi * mmyth_ui);
renatofilho@20
    32
static MMythUiCommon *create_schedule_view (MMythUi * mmyth_ui);
renatofilho@20
    33
renatofilho@20
    34
static void cb_video_close_button (GtkButton * button, gpointer user_data);
renatofilho@20
    35
static void cb_record_button (GtkButton * button, gpointer user_data);
renatofilho@20
    36
static void cb_menu_item_settings (GtkMenuItem *menuitem, gpointer user_data);
renatofilho@20
    37
renatofilho@20
    38
/* main box from button box separator*/
renatofilho@20
    39
static GtkWidget *main_vseparator = NULL;
renatofilho@20
    40
renatofilho@20
    41
GdkPixbuf *icon_sports, *icon_news, 
renatofilho@20
    42
          *icon_movies, *icon_shows, *icon_default;
renatofilho@20
    43
renatofilho@20
    44
#ifndef MAEMO_PLATFORM
renatofilho@20
    45
/* FIXME: */
renatofilho@20
    46
static MMythUi *popup_mmyth_ui;
renatofilho@20
    47
#endif
renatofilho@20
    48
renatofilho@20
    49
MMythUi *
renatofilho@20
    50
mmyth_ui_initialize (
renatofilho@20
    51
#ifdef MAEMO_PLATFORM
renatofilho@20
    52
	HildonProgram *program,
renatofilho@20
    53
#endif
renatofilho@20
    54
	GtkWidget * main_window)
renatofilho@20
    55
{
renatofilho@20
    56
    MMythUi *mmyth_ui;
renatofilho@20
    57
renatofilho@20
    58
    mmyth_ui = g_new0 (MMythUi, 1);
renatofilho@20
    59
renatofilho@20
    60
    mmyth_ui->main_window = main_window;    
renatofilho@20
    61
    mmyth_ui->videow = NULL;
renatofilho@20
    62
    mmyth_ui->mmyth_recordui = NULL;
renatofilho@20
    63
    mmyth_ui->mmyth_schedulerui = NULL;
renatofilho@20
    64
	
renatofilho@20
    65
    /* Horizontal box that divides the view into control and video area */
renatofilho@20
    66
    mmyth_ui->main_hbox = gtk_hbox_new (FALSE, 0);
renatofilho@20
    67
    gtk_widget_show (mmyth_ui->main_hbox);
renatofilho@20
    68
    g_object_ref (mmyth_ui->main_hbox);
renatofilho@20
    69
renatofilho@20
    70
    main_bg_color.red   = 65000;
renatofilho@20
    71
    main_bg_color.green = 65000;
renatofilho@20
    72
    main_bg_color.blue  = 65000;
renatofilho@20
    73
    
renatofilho@20
    74
    
renatofilho@20
    75
#ifndef MAEMO_PLATFORM
renatofilho@20
    76
    /* Popup menu */
renatofilho@20
    77
    popup_mmyth_ui = mmyth_ui;
renatofilho@20
    78
    g_signal_connect (G_OBJECT (mmyth_ui->main_hbox), "event",
renatofilho@20
    79
                      G_CALLBACK (button_press_handler),
renatofilho@20
    80
                      G_OBJECT (mmyth_ui->main_hbox));    
renatofilho@20
    81
renatofilho@20
    82
#else // #ifdef MAEMO
renatofilho@20
    83
renatofilho@20
    84
    mmyth_ui->main_menu = GTK_MENU(gtk_menu_new());
renatofilho@20
    85
    hildon_program_set_common_menu(program, mmyth_ui->main_menu);
renatofilho@20
    86
renatofilho@20
    87
    mmyth_ui->menu_setup = gtk_menu_item_new_with_label("Setup");
renatofilho@20
    88
    gtk_widget_set_size_request (GTK_WIDGET (mmyth_ui->menu_setup), 150, 40);
renatofilho@20
    89
    gtk_menu_append(mmyth_ui->main_menu, mmyth_ui->menu_setup);
renatofilho@20
    90
renatofilho@20
    91
    g_signal_connect(G_OBJECT(mmyth_ui->menu_setup), "activate", G_CALLBACK(cb_menu_item_settings), mmyth_ui);
renatofilho@20
    92
renatofilho@20
    93
    gtk_widget_show_all (GTK_WIDGET (mmyth_ui->main_menu));
renatofilho@20
    94
#endif
renatofilho@20
    95
    
renatofilho@20
    96
    // Main widget is mmyth_ui->main_hbox
renatofilho@20
    97
    mmyth_ui->main_uicommon       = create_main_view (mmyth_ui);
renatofilho@20
    98
renatofilho@20
    99
    gtk_container_add (GTK_CONTAINER (mmyth_ui->main_window),
renatofilho@20
   100
                       mmyth_ui->main_hbox);
renatofilho@20
   101
renatofilho@20
   102
    mmyth_ui_set_widget (mmyth_ui, mmyth_ui->main_uicommon);
renatofilho@20
   103
renatofilho@20
   104
    return mmyth_ui;
renatofilho@20
   105
}
renatofilho@20
   106
renatofilho@20
   107
void
renatofilho@20
   108
mmyth_ui_finalize (MMythUi * mmyth_ui)
renatofilho@20
   109
{
renatofilho@20
   110
    if (mmyth_ui != NULL) {
renatofilho@20
   111
    	if (mmyth_ui->main_uicommon)
renatofilho@20
   112
	    	mmyth_uicommon_free (mmyth_ui->main_uicommon);
renatofilho@20
   113
    	if (mmyth_ui->video_uicommon)
renatofilho@20
   114
		    mmyth_uicommon_free (mmyth_ui->video_uicommon);
renatofilho@20
   115
		if (mmyth_ui->epg_grid_uicommon)
renatofilho@20
   116
		    mmyth_uicommon_free (mmyth_ui->epg_grid_uicommon);
renatofilho@20
   117
		if (mmyth_ui->record_uicommon)
renatofilho@20
   118
		    mmyth_uicommon_free (mmyth_ui->record_uicommon);	    
renatofilho@20
   119
		if (mmyth_ui->schedule_uicommon)
renatofilho@20
   120
		    mmyth_uicommon_free (mmyth_ui->schedule_uicommon);
renatofilho@20
   121
renatofilho@20
   122
	    g_free (mmyth_ui);
renatofilho@20
   123
    }
renatofilho@20
   124
}
renatofilho@20
   125
renatofilho@20
   126
void
renatofilho@20
   127
mmyth_ui_set_widget (MMythUi * mmyth_ui, MMythUiCommon * new_uicommon)
renatofilho@20
   128
{
renatofilho@20
   129
	if (new_uicommon == NULL) {
renatofilho@20
   130
		g_warning ("MMythUI setting a NULL UI_Common as current display\n");
renatofilho@20
   131
		return;
renatofilho@20
   132
	}
renatofilho@20
   133
		
renatofilho@20
   134
    if (mmyth_ui->current_uicommon) {
renatofilho@20
   135
        if (mmyth_ui->current_uicommon == mmyth_ui->video_uicommon) {
renatofilho@20
   136
            gtk_widget_hide (mmyth_ui->current_uicommon->main_widget);
renatofilho@20
   137
            gtk_widget_hide (mmyth_ui->videow);
renatofilho@20
   138
        }
renatofilho@20
   139
        else {
renatofilho@20
   140
            gtk_container_remove (GTK_CONTAINER (mmyth_ui->main_hbox),
renatofilho@20
   141
                                  mmyth_ui->current_uicommon->main_widget);
renatofilho@20
   142
        }
renatofilho@20
   143
renatofilho@20
   144
        gtk_container_remove (GTK_CONTAINER (mmyth_ui->main_hbox),
renatofilho@20
   145
                              mmyth_ui->current_uicommon->event_box);
renatofilho@20
   146
        gtk_container_remove (GTK_CONTAINER (mmyth_ui->main_hbox),
renatofilho@20
   147
                              main_vseparator);        
renatofilho@20
   148
renatofilho@20
   149
    }
renatofilho@20
   150
renatofilho@20
   151
    if (new_uicommon->main_widget == mmyth_ui->video_alignment) {
renatofilho@20
   152
        //gst_player_video_show (GST_PLAYER_VIDEO(mmyth_ui->videow));
renatofilho@20
   153
        gtk_widget_show (mmyth_ui->video_alignment);
renatofilho@20
   154
        gtk_widget_show (mmyth_ui->videow);
renatofilho@20
   155
    }
renatofilho@20
   156
    else {
renatofilho@20
   157
        /* FIXME: Fst call is NULL when mmyth_player_init fails */
renatofilho@20
   158
        if(mmyth_ui->video_alignment != NULL)
renatofilho@20
   159
            gtk_widget_hide (mmyth_ui->video_alignment);
renatofilho@20
   160
        /* FIXME: Fst call is NULL when mmyth_player_init fails */
renatofilho@20
   161
        if(mmyth_ui->videow != NULL)
renatofilho@20
   162
            gtk_widget_hide (mmyth_ui->videow);
renatofilho@20
   163
renatofilho@20
   164
        gtk_box_pack_start (GTK_BOX (mmyth_ui->main_hbox),
renatofilho@20
   165
                            new_uicommon->main_widget, TRUE, TRUE, 0);
renatofilho@20
   166
    }
renatofilho@20
   167
renatofilho@20
   168
    if(main_vseparator == NULL) {
renatofilho@20
   169
        /* FIXME: should free this variable*/
renatofilho@20
   170
        main_vseparator = gtk_vseparator_new();
renatofilho@20
   171
        g_object_ref (main_vseparator);                   
renatofilho@20
   172
    }  
renatofilho@20
   173
    gtk_box_pack_start (GTK_BOX (mmyth_ui->main_hbox),
renatofilho@20
   174
                        main_vseparator, FALSE, FALSE, 0);    
renatofilho@20
   175
    gtk_widget_show (main_vseparator);
renatofilho@20
   176
renatofilho@20
   177
    gtk_box_pack_end (GTK_BOX (mmyth_ui->main_hbox), new_uicommon->event_box, FALSE,
renatofilho@20
   178
                      FALSE, 0);         
renatofilho@20
   179
renatofilho@20
   180
    mmyth_ui->current_uicommon = new_uicommon;
renatofilho@20
   181
renatofilho@20
   182
}
renatofilho@20
   183
renatofilho@20
   184
/* The close callback is the same for all windows*/
renatofilho@20
   185
static void
renatofilho@20
   186
cb_not_impl_button (GtkButton * button, gpointer user_data)
renatofilho@20
   187
{
renatofilho@20
   188
    MMythUi *mmyth_ui = (MMythUi *) user_data;
renatofilho@20
   189
renatofilho@20
   190
    GtkWidget *msg_dialog = gtk_message_dialog_new (
renatofilho@20
   191
                                           GTK_WINDOW(mmyth_ui->main_window),
renatofilho@20
   192
                                           GTK_DIALOG_MODAL |
renatofilho@20
   193
                                           GTK_DIALOG_DESTROY_WITH_PARENT,
renatofilho@20
   194
                                           GTK_MESSAGE_INFO,
renatofilho@20
   195
                                           GTK_BUTTONS_OK,
renatofilho@20
   196
                                           "Feature not implemented");
renatofilho@20
   197
    gtk_widget_set_size_request (msg_dialog, 350, 120);
renatofilho@20
   198
renatofilho@20
   199
    gtk_dialog_run (GTK_DIALOG (msg_dialog));
renatofilho@20
   200
renatofilho@20
   201
    gtk_widget_destroy(GTK_WIDGET(msg_dialog)); 
renatofilho@20
   202
}
renatofilho@20
   203
renatofilho@20
   204
/******************************************************************************
renatofilho@20
   205
 *                        POPUP MENU WIDGET METHODS                           *
renatofilho@20
   206
 *****************************************************************************/
renatofilho@20
   207
renatofilho@20
   208
static void 
renatofilho@20
   209
cb_menu_item_settings (GtkMenuItem *menuitem,
renatofilho@20
   210
                            gpointer user_data)
renatofilho@20
   211
{
renatofilho@20
   212
    
renatofilho@20
   213
    MMythUi *mmyth_ui = (MMythUi*) user_data;
renatofilho@20
   214
   
renatofilho@20
   215
    if (mmyth_uisettings_run (GTK_WINDOW (mmyth_ui->main_window))) {
renatofilho@20
   216
    	// If user changes the settings, we restart the context
renatofilho@20
   217
    	g_debug ("[%s] Restarting mmyth_context to new settings", __FUNCTION__);
renatofilho@20
   218
    	gmyth_context_initialize();
renatofilho@20
   219
    }
renatofilho@20
   220
}
renatofilho@20
   221
renatofilho@20
   222
#ifndef MAEMO_PLATFORM
renatofilho@20
   223
renatofilho@20
   224
static void 
renatofilho@20
   225
detacher (GtkWidget *attach_widget,GtkMenu *menu) 
renatofilho@20
   226
{
renatofilho@20
   227
	
renatofilho@20
   228
}
renatofilho@20
   229
renatofilho@20
   230
static void
renatofilho@20
   231
do_popup_menu (GtkWidget *my_widget, GdkEventButton *event)
renatofilho@20
   232
{
renatofilho@20
   233
    GtkWidget *popup;
renatofilho@20
   234
renatofilho@20
   235
  int button, event_time;
renatofilho@20
   236
renatofilho@20
   237
  GtkWidget *item_general;
renatofilho@20
   238
  GtkWidget *image;
renatofilho@20
   239
renatofilho@20
   240
  popup = gtk_menu_new ();
renatofilho@20
   241
renatofilho@20
   242
  item_general = gtk_image_menu_item_new_with_mnemonic ("Setup");
renatofilho@20
   243
  gtk_widget_show (item_general);
renatofilho@20
   244
  gtk_container_add (GTK_CONTAINER (popup), item_general);
renatofilho@20
   245
renatofilho@20
   246
  image = gtk_image_new_from_stock ("gtk-edit", GTK_ICON_SIZE_MENU);
renatofilho@20
   247
  gtk_widget_show (image);
renatofilho@20
   248
  gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item_general), image);
renatofilho@20
   249
renatofilho@20
   250
  g_signal_connect (G_OBJECT(item_general), "activate", G_CALLBACK (cb_menu_item_settings), popup_mmyth_ui);
renatofilho@20
   251
renatofilho@20
   252
    if (event) {
renatofilho@20
   253
      button = event->button;
renatofilho@20
   254
      event_time = event->time;
renatofilho@20
   255
    } else {
renatofilho@20
   256
      button = 0;
renatofilho@20
   257
      event_time = gtk_get_current_event_time ();
renatofilho@20
   258
    }
renatofilho@20
   259
    
renatofilho@20
   260
    gtk_menu_attach_to_widget (GTK_MENU (popup), my_widget, detacher);
renatofilho@20
   261
    gtk_menu_popup (GTK_MENU (popup), NULL, NULL, NULL, NULL, 
renatofilho@20
   262
                  button, event_time);
renatofilho@20
   263
    gtk_widget_show_all(popup);
renatofilho@20
   264
}
renatofilho@20
   265
renatofilho@20
   266
/* Respond to a button-press by posting a menu passed in as widget.
renatofilho@20
   267
 *
renatofilho@20
   268
 * Note that the "widget" argument is the menu being posted, NOT
renatofilho@20
   269
 * the button that was pressed.
renatofilho@20
   270
 */
renatofilho@20
   271
static gint 
renatofilho@20
   272
button_press_handler (GtkWidget *widget, GdkEvent *event)
renatofilho@20
   273
{
renatofilho@20
   274
renatofilho@20
   275
    if (event->type == GDK_BUTTON_PRESS) {
renatofilho@20
   276
      GdkEventButton *bevent = (GdkEventButton *) event; 
renatofilho@20
   277
          /* Ignore double-clicks and triple-clicks */
renatofilho@20
   278
      if (bevent->button == 3)
renatofilho@20
   279
        {
renatofilho@20
   280
          do_popup_menu (widget, bevent);
renatofilho@20
   281
          return TRUE;
renatofilho@20
   282
        }
renatofilho@20
   283
    }
renatofilho@20
   284
renatofilho@20
   285
    /* Tell calling code that we have not handled this event; pass it on. */
renatofilho@20
   286
    return FALSE;
renatofilho@20
   287
}
renatofilho@20
   288
#endif
renatofilho@20
   289
renatofilho@20
   290
/******************************************************************************
renatofilho@20
   291
 *                          MAIN APP VIEW METHODS                             *
renatofilho@20
   292
 *****************************************************************************/
renatofilho@20
   293
renatofilho@20
   294
static void
renatofilho@20
   295
cb_close_button (GtkButton * button, gpointer user_data)
renatofilho@20
   296
{
renatofilho@20
   297
    MMythUi *mmyth_ui = (MMythUi *) user_data;
renatofilho@20
   298
renatofilho@20
   299
    mmyth_ui_set_widget (mmyth_ui, mmyth_ui->main_uicommon);
renatofilho@20
   300
}
renatofilho@20
   301
renatofilho@20
   302
static void
renatofilho@20
   303
cb_watch_tv_button (GtkButton * button, gpointer user_data)
renatofilho@20
   304
{
renatofilho@20
   305
    MMythUi *mmyth_ui = (MMythUi *) user_data;
renatofilho@20
   306
	gboolean res = FALSE;
renatofilho@20
   307
	
renatofilho@20
   308
	if (!(mmyth_ui->video_uicommon))
renatofilho@20
   309
		mmyth_ui->video_uicommon = create_video_view (mmyth_ui);
renatofilho@20
   310
	
renatofilho@20
   311
	// Creates the tv player that will retrieve the mythtv content, decode and show it
renatofilho@20
   312
	mmyth_ui->tvplayer = mmyth_tvplayer_new ();
renatofilho@20
   313
	/* choose here if this is a LiveTV session */
renatofilho@20
   314
	mmyth_ui->tvplayer->is_livetv = TRUE;
renatofilho@20
   315
renatofilho@20
   316
	res = mmyth_tvplayer_initialize (mmyth_ui->tvplayer);
renatofilho@20
   317
renatofilho@20
   318
	if (!res) {
renatofilho@20
   319
		g_warning ("[%s] Could not initialize tvplayer", __FUNCTION__);
renatofilho@20
   320
renatofilho@20
   321
		g_object_unref (mmyth_ui->tvplayer);
renatofilho@20
   322
		mmyth_ui->tvplayer = NULL;
renatofilho@20
   323
renatofilho@20
   324
		GtkWidget *dialog = gtk_message_dialog_new (
renatofilho@20
   325
				GTK_WINDOW(mmyth_ui->main_window),
renatofilho@20
   326
				GTK_DIALOG_DESTROY_WITH_PARENT,
renatofilho@20
   327
                GTK_MESSAGE_ERROR,
renatofilho@20
   328
                GTK_BUTTONS_CLOSE,
renatofilho@20
   329
			 	"MMyth found errors while starting TV Player, please check "
renatofilho@20
   330
			 	"the GStreamer installation");
renatofilho@20
   331
renatofilho@20
   332
		gtk_dialog_run (GTK_DIALOG (dialog));
renatofilho@20
   333
		gtk_widget_destroy (dialog);
renatofilho@20
   334
		
renatofilho@20
   335
		return;
renatofilho@20
   336
	}
renatofilho@20
   337
	//res = mmyth_tvplayer_livetv_setup (mmyth_ui->tvplayer);
renatofilho@20
   338
	//
renatofilho@20
   339
	if (mmyth_ui && mmyth_ui->tvplayer && res) {
renatofilho@20
   340
		mmyth_tvplayer_set_widget (mmyth_ui->tvplayer, mmyth_ui->videow);
renatofilho@20
   341
		mmyth_tvplayer_start_playing (mmyth_ui->tvplayer);
renatofilho@20
   342
	} else {
renatofilho@20
   343
		// TODO: Show Alert with error description!
renatofilho@20
   344
		g_warning ("[%s] MMythUI can't initialize tv_player", __FUNCTION__);
renatofilho@20
   345
		g_object_unref (mmyth_ui->tvplayer);
renatofilho@20
   346
		mmyth_ui->tvplayer = NULL;
renatofilho@20
   347
		// FIXME: Show the exact error that happened
renatofilho@20
   348
		GtkWidget *dialog = gtk_message_dialog_new (
renatofilho@20
   349
				GTK_WINDOW(mmyth_ui->main_window),
renatofilho@20
   350
				GTK_DIALOG_DESTROY_WITH_PARENT,
renatofilho@20
   351
                GTK_MESSAGE_ERROR,
renatofilho@20
   352
                GTK_BUTTONS_CLOSE,
renatofilho@20
   353
                "Error while starting TV Player, please check if the backend"
renatofilho@20
   354
                " is running properly and a tv card is available!");
renatofilho@20
   355
		gtk_dialog_run (GTK_DIALOG (dialog));
renatofilho@20
   356
		gtk_widget_destroy (dialog);		
renatofilho@20
   357
		return;
renatofilho@20
   358
	}
renatofilho@20
   359
	mmyth_ui_set_widget (mmyth_ui, mmyth_ui->video_uicommon);
renatofilho@20
   360
	
renatofilho@20
   361
}
renatofilho@20
   362
renatofilho@20
   363
static void 
renatofilho@20
   364
cb_epg_button (GtkButton * button, gpointer user_data)
renatofilho@20
   365
{
renatofilho@20
   366
    MMythUi *mmyth_ui = (MMythUi *) user_data;
renatofilho@20
   367
    
renatofilho@20
   368
    if (!(mmyth_ui->epg_grid_uicommon))
renatofilho@20
   369
    	mmyth_ui->epg_grid_uicommon = create_epg_grid_view(mmyth_ui);
renatofilho@20
   370
    	
renatofilho@20
   371
    mmyth_ui_set_widget (mmyth_ui, mmyth_ui->epg_grid_uicommon);
renatofilho@20
   372
}
renatofilho@20
   373
renatofilho@20
   374
static MMythUiCommon *
renatofilho@20
   375
create_main_view (MMythUi * mmyth_ui)
renatofilho@20
   376
{
renatofilho@20
   377
    MMythUiCommon *ui_common;
renatofilho@20
   378
    GtkWidget *main_widget;
renatofilho@20
   379
    GtkWidget *image;
renatofilho@20
   380
renatofilho@20
   381
	g_debug ("Creating Main UI Common");
renatofilho@20
   382
	
renatofilho@20
   383
    // FIXME: file path
renatofilho@20
   384
#ifdef MMYTH_DEV
renatofilho@20
   385
    image = gtk_image_new_from_file ("../pixmaps/mmyth_logo.png");
renatofilho@20
   386
#else
renatofilho@20
   387
    image = gtk_image_new_from_file ( PIX_DIR "mmyth_logo.png");
renatofilho@20
   388
#endif
renatofilho@20
   389
    
renatofilho@20
   390
    main_widget = gtk_event_box_new();
renatofilho@20
   391
    
renatofilho@20
   392
    gtk_container_add (GTK_CONTAINER (main_widget),
renatofilho@20
   393
                       image);
renatofilho@20
   394
renatofilho@20
   395
renatofilho@20
   396
    gtk_widget_show_all (main_widget);
renatofilho@20
   397
    g_object_ref (main_widget);
renatofilho@20
   398
renatofilho@20
   399
    ui_common = mmyth_uicommon_new (main_widget,
renatofilho@20
   400
                                    "Watch TV", "EPG", "Recording");
renatofilho@20
   401
renatofilho@20
   402
    /* Button signals */
renatofilho@20
   403
    // FIXME
renatofilho@20
   404
    g_signal_connect (G_OBJECT (ui_common->button1), "clicked",
renatofilho@20
   405
                      G_CALLBACK (cb_watch_tv_button), mmyth_ui);
renatofilho@20
   406
    g_signal_connect (G_OBJECT (ui_common->button2), "clicked",
renatofilho@20
   407
                      G_CALLBACK (cb_epg_button), mmyth_ui);
renatofilho@20
   408
    g_signal_connect (G_OBJECT (ui_common->button3), "clicked",
renatofilho@20
   409
                      G_CALLBACK (cb_record_button), mmyth_ui);
renatofilho@20
   410
renatofilho@20
   411
    return ui_common;
renatofilho@20
   412
renatofilho@20
   413
}
renatofilho@20
   414
renatofilho@20
   415
/******************************************************************************
renatofilho@20
   416
 *                         epg GRID VIEW METHODS                              *
renatofilho@20
   417
 *****************************************************************************/
renatofilho@20
   418
renatofilho@20
   419
static MMythUiCommon *
renatofilho@20
   420
create_epg_grid_view (MMythUi * mmyth_ui)
renatofilho@20
   421
{
renatofilho@20
   422
    MMythUiCommon *ui_common;        
renatofilho@20
   423
renatofilho@20
   424
	g_debug ("Creating EPG Grid UI Common");
renatofilho@20
   425
	
renatofilho@20
   426
    GtkWidget *epg_grid_view = GTK_WIDGET (epg_grid_view_new (mmyth_ui));
renatofilho@20
   427
    
renatofilho@20
   428
    ui_common = mmyth_uicommon_new (epg_grid_view,
renatofilho@20
   429
                                    "Play", "Record",
renatofilho@20
   430
                                    "Close");    
renatofilho@20
   431
    
renatofilho@20
   432
    /* Button signals */
renatofilho@20
   433
    g_signal_connect (G_OBJECT (ui_common->button1), "clicked",
renatofilho@20
   434
                      G_CALLBACK (cb_not_impl_button), mmyth_ui);
renatofilho@20
   435
    g_signal_connect (G_OBJECT (ui_common->button2), "clicked",
renatofilho@20
   436
                      G_CALLBACK (cb_record_button), mmyth_ui);
renatofilho@20
   437
    g_signal_connect (G_OBJECT (ui_common->button3), "clicked",
renatofilho@20
   438
                      G_CALLBACK (cb_close_button), mmyth_ui);
renatofilho@20
   439
    
renatofilho@20
   440
    return ui_common;
renatofilho@20
   441
}
renatofilho@20
   442
/******************************************************************************
renatofilho@20
   443
 *                         SCHEDULE VIEW METHODS                                *
renatofilho@20
   444
 ******************************************************************************/
renatofilho@20
   445
renatofilho@20
   446
static void
renatofilho@20
   447
cb_save_new_schedule (GtkButton *button, gpointer user_data)
renatofilho@20
   448
{
renatofilho@20
   449
    MMythUi *mmyth_ui = (MMythUi *) user_data;
renatofilho@20
   450
renatofilho@20
   451
	if (!(mmyth_ui->schedule_uicommon))
renatofilho@20
   452
		mmyth_ui->schedule_uicommon = create_schedule_view(mmyth_ui);
renatofilho@20
   453
		
renatofilho@20
   454
    mmyth_schedulerui_save (mmyth_ui->mmyth_schedulerui);
renatofilho@20
   455
    
renatofilho@20
   456
    mmyth_recordui_reload_schedule (mmyth_ui->mmyth_recordui);
renatofilho@20
   457
    
renatofilho@20
   458
    mmyth_ui_set_widget (mmyth_ui, mmyth_ui->record_uicommon);
renatofilho@20
   459
    
renatofilho@20
   460
}
renatofilho@20
   461
renatofilho@20
   462
static void
renatofilho@20
   463
cb_edit_scheduled (GtkTreeView * tree_view, GtkTreePath *path, 
renatofilho@20
   464
		           GtkTreeViewColumn *column, gpointer user_data)
renatofilho@20
   465
{
renatofilho@20
   466
    MMythUi *mmyth_ui = (MMythUi *) user_data;
renatofilho@20
   467
    GtkTreeSelection *selection;
renatofilho@20
   468
	GtkTreeModel *list_store;
renatofilho@20
   469
	GtkTreeIter iter;
renatofilho@20
   470
	int index;
renatofilho@20
   471
    //gint new_row = 0, record_id = 0;
renatofilho@20
   472
	ScheduleInfo *schedule_info;
renatofilho@20
   473
	GList *schedule_list;
renatofilho@20
   474
	//GtkTreeIter iter;
renatofilho@20
   475
	gint res;
renatofilho@20
   476
renatofilho@20
   477
	//gtk_tree_store_clear(recordui->sch_tree_store);	
renatofilho@20
   478
renatofilho@20
   479
	res = gmyth_scheduler_get_schedule_list(mmyth_ui->mmyth_recordui->scheduler, &(schedule_list));
renatofilho@20
   480
	if (res < 0) {
renatofilho@20
   481
		g_warning ("[%s] Retrieved NULL list of scheduled data from database", __FUNCTION__);
renatofilho@20
   482
		//return FALSE;
renatofilho@20
   483
	}
renatofilho@20
   484
	printf("\nX %d", res); fflush(stdout);
renatofilho@20
   485
    
renatofilho@20
   486
   	selection = 
renatofilho@20
   487
        gtk_tree_view_get_selection(GTK_TREE_VIEW(mmyth_ui->mmyth_recordui->sch_treeview));
renatofilho@20
   488
    
renatofilho@20
   489
    gtk_tree_selection_get_selected(selection, &list_store, &iter);
renatofilho@20
   490
	gtk_tree_model_get(list_store, &iter, 4, &index, -1);
renatofilho@20
   491
    
renatofilho@20
   492
    mmyth_ui_set_widget (mmyth_ui, mmyth_ui->schedule_uicommon);
renatofilho@20
   493
    
renatofilho@20
   494
	if (!(mmyth_ui->schedule_uicommon))
renatofilho@20
   495
		mmyth_ui->schedule_uicommon = create_schedule_view(mmyth_ui);
renatofilho@20
   496
		
renatofilho@20
   497
	schedule_list = g_list_nth(schedule_list, atoi(gtk_tree_path_to_string(path)));
renatofilho@20
   498
	schedule_info = (ScheduleInfo*) schedule_list->data;
renatofilho@20
   499
renatofilho@20
   500
    printf("\nstarttime: %ld", schedule_info->start_time); fflush(stdout);		
renatofilho@20
   501
}
renatofilho@20
   502
renatofilho@20
   503
static MMythUiCommon *
renatofilho@20
   504
create_schedule_view (MMythUi * mmyth_ui)
renatofilho@20
   505
{
renatofilho@20
   506
    MMythUiCommon *ui_common;        
renatofilho@20
   507
    GtkWidget *schedule_widget;
renatofilho@20
   508
    
renatofilho@20
   509
    g_debug ("Creating Schedule UI Common");
renatofilho@20
   510
renatofilho@20
   511
	mmyth_ui->mmyth_schedulerui = mmyth_schedulerui_new ();
renatofilho@20
   512
	if (mmyth_ui->mmyth_schedulerui == NULL) {
renatofilho@20
   513
		g_warning ("[%s] Error while creating scheduler ui", __FUNCTION__);
renatofilho@20
   514
		return NULL;
renatofilho@20
   515
	}
renatofilho@20
   516
	
renatofilho@20
   517
	schedule_widget = mmyth_ui->mmyth_schedulerui->main_widget;
renatofilho@20
   518
renatofilho@20
   519
    gtk_widget_show_all (schedule_widget);
renatofilho@20
   520
    g_object_ref (schedule_widget);
renatofilho@20
   521
    
renatofilho@20
   522
    ui_common = mmyth_uicommon_new (schedule_widget,
renatofilho@20
   523
                                    "Save", "Clear",
renatofilho@20
   524
                                    "Cancel");    
renatofilho@20
   525
renatofilho@20
   526
    /* Button signals */
renatofilho@20
   527
    g_signal_connect (G_OBJECT (ui_common->button1), "clicked",
renatofilho@20
   528
                      G_CALLBACK (cb_save_new_schedule), mmyth_ui);
renatofilho@20
   529
    g_signal_connect (G_OBJECT (ui_common->button2), "clicked",
renatofilho@20
   530
                      G_CALLBACK (cb_not_impl_button), mmyth_ui);
renatofilho@20
   531
    g_signal_connect (G_OBJECT (ui_common->button3), "clicked",
renatofilho@20
   532
                      G_CALLBACK (cb_record_button), mmyth_ui);
renatofilho@20
   533
    
renatofilho@20
   534
    return ui_common;
renatofilho@20
   535
}
renatofilho@20
   536
/******************************************************************************
renatofilho@20
   537
 *                         RECORD VIEW METHODS                                *
renatofilho@20
   538
 ******************************************************************************/
renatofilho@20
   539
static void
renatofilho@20
   540
cb_record_button (GtkButton * button, gpointer user_data)
renatofilho@20
   541
{
renatofilho@20
   542
    MMythUi *mmyth_ui = (MMythUi *) user_data;
renatofilho@20
   543
renatofilho@20
   544
	if (!(mmyth_ui->record_uicommon)) {
renatofilho@20
   545
		mmyth_ui->record_uicommon = create_record_view (mmyth_ui);
renatofilho@20
   546
		mmyth_ui->schedule_uicommon = create_schedule_view (mmyth_ui);
renatofilho@20
   547
	}
renatofilho@20
   548
	
renatofilho@20
   549
	mmyth_recordui_reload_all (mmyth_ui->mmyth_recordui);
renatofilho@20
   550
	
renatofilho@20
   551
    mmyth_ui_set_widget (mmyth_ui, mmyth_ui->record_uicommon);
renatofilho@20
   552
renatofilho@20
   553
} 
renatofilho@20
   554
renatofilho@20
   555
static void
renatofilho@20
   556
cb_record_close_button (GtkButton * button, gpointer user_data)
renatofilho@20
   557
{
renatofilho@20
   558
    MMythUi *mmyth_ui = (MMythUi *) user_data;
renatofilho@20
   559
renatofilho@20
   560
	mmyth_ui_set_widget(mmyth_ui, mmyth_ui->main_uicommon);
renatofilho@20
   561
renatofilho@20
   562
	mmyth_recordui_free(mmyth_ui->mmyth_recordui);
renatofilho@20
   563
	
renatofilho@20
   564
	if (mmyth_ui->record_uicommon) {
renatofilho@20
   565
		gtk_widget_destroy (mmyth_ui->record_uicommon->main_widget);
renatofilho@20
   566
		mmyth_uicommon_free(mmyth_ui->record_uicommon);
renatofilho@20
   567
		mmyth_ui->record_uicommon = NULL;
renatofilho@20
   568
	}
renatofilho@20
   569
renatofilho@20
   570
	if (mmyth_ui->schedule_uicommon) {
renatofilho@20
   571
	//	mmyth_uicommon_free(mmyth_ui->schedule_uicommon);
renatofilho@20
   572
	}	
renatofilho@20
   573
} 
renatofilho@20
   574
renatofilho@20
   575
renatofilho@20
   576
renatofilho@20
   577
renatofilho@20
   578
static void
renatofilho@20
   579
play_selected_recorded (gpointer user_data)
renatofilho@20
   580
{
renatofilho@20
   581
    MMythUi *mmyth_ui = (MMythUi *) user_data;
renatofilho@20
   582
    gboolean res = FALSE;
renatofilho@20
   583
renatofilho@20
   584
    gchar *path = mmyth_recordui_get_selected_recorded (mmyth_ui->mmyth_recordui);
renatofilho@20
   585
    
renatofilho@20
   586
    if (path == NULL) {
renatofilho@20
   587
    	// This should never happens. Play button is just activated when
renatofilho@20
   588
    	// a recording is selected.
renatofilho@20
   589
    	g_warning ("[%s] Play button pressed while none recorded is selected", __FUNCTION__);
renatofilho@20
   590
    	return;
renatofilho@20
   591
    }
renatofilho@20
   592
renatofilho@20
   593
	if (!(mmyth_ui->video_uicommon))
renatofilho@20
   594
		mmyth_ui->video_uicommon = create_video_view (mmyth_ui);
renatofilho@20
   595
	
renatofilho@20
   596
	// Creates the tv player that will retrieve the mythtv content, decode and show it
renatofilho@20
   597
	mmyth_ui->tvplayer = mmyth_tvplayer_new ();
renatofilho@20
   598
	g_debug ("[%s] New TV Player created: %d\n", __FUNCTION__, (int) (mmyth_ui->tvplayer));
renatofilho@20
   599
	res = mmyth_tvplayer_initialize (mmyth_ui->tvplayer);
renatofilho@20
   600
	if (!res) {
renatofilho@20
   601
		g_warning ("[%s] Could not initialize tvplayer", __FUNCTION__);
renatofilho@20
   602
renatofilho@20
   603
		g_object_unref (mmyth_ui->tvplayer);
renatofilho@20
   604
		mmyth_ui->tvplayer = NULL;
renatofilho@20
   605
renatofilho@20
   606
		GtkWidget *dialog = gtk_message_dialog_new (
renatofilho@20
   607
				GTK_WINDOW(mmyth_ui->main_window),
renatofilho@20
   608
				GTK_DIALOG_DESTROY_WITH_PARENT,
renatofilho@20
   609
                GTK_MESSAGE_ERROR,
renatofilho@20
   610
                GTK_BUTTONS_CLOSE,
renatofilho@20
   611
			 	"MMyth found errors while starting TV Player, please check "
renatofilho@20
   612
			 	"the GStreamer installation");
renatofilho@20
   613
renatofilho@20
   614
		gtk_dialog_run (GTK_DIALOG (dialog));
renatofilho@20
   615
		gtk_widget_destroy (dialog);
renatofilho@20
   616
		
renatofilho@20
   617
		return;
renatofilho@20
   618
	}		
renatofilho@20
   619
renatofilho@20
   620
	res = mmyth_tvplayer_record_setup (mmyth_ui->tvplayer, path);
renatofilho@20
   621
	
renatofilho@20
   622
	if (mmyth_ui && mmyth_ui->tvplayer && res) {
renatofilho@20
   623
		mmyth_tvplayer_set_widget (mmyth_ui->tvplayer, mmyth_ui->videow);
renatofilho@20
   624
		mmyth_tvplayer_start_playing (mmyth_ui->tvplayer);
renatofilho@20
   625
	} else {
renatofilho@20
   626
		// TODO: Show Alert with error description!
renatofilho@20
   627
		g_warning ("[%s] MMythUI can't initialize tv_player", __FUNCTION__);
renatofilho@20
   628
		g_object_unref (mmyth_ui->tvplayer);
renatofilho@20
   629
		mmyth_ui->tvplayer = NULL;
renatofilho@20
   630
		// FIXME: Show the exact error that happened
renatofilho@20
   631
		GtkWidget *dialog = gtk_message_dialog_new (
renatofilho@20
   632
				GTK_WINDOW(mmyth_ui->main_window),
renatofilho@20
   633
				GTK_DIALOG_DESTROY_WITH_PARENT,
renatofilho@20
   634
                GTK_MESSAGE_ERROR,
renatofilho@20
   635
                GTK_BUTTONS_CLOSE,
renatofilho@20
   636
                "Error while starting TV Player, please check if the backend"
renatofilho@20
   637
                " is running properly and a tv card is available!");
renatofilho@20
   638
		gtk_dialog_run (GTK_DIALOG (dialog));
renatofilho@20
   639
		gtk_widget_destroy (dialog);		
renatofilho@20
   640
		return;
renatofilho@20
   641
	}
renatofilho@20
   642
	
renatofilho@20
   643
	mmyth_ui_set_widget (mmyth_ui, mmyth_ui->video_uicommon);    
renatofilho@20
   644
}
renatofilho@20
   645
renatofilho@20
   646
static void
renatofilho@20
   647
cb_play_clicked_recorded (GtkTreeView * tree_view, GtkTreePath *path, 
renatofilho@20
   648
		GtkTreeViewColumn *column, gpointer user_data)
renatofilho@20
   649
{
renatofilho@20
   650
	play_selected_recorded (user_data);
renatofilho@20
   651
}
renatofilho@20
   652
renatofilho@20
   653
static void
renatofilho@20
   654
cb_play_selected (GtkButton * button, gpointer user_data)
renatofilho@20
   655
{
renatofilho@20
   656
	play_selected_recorded (user_data);
renatofilho@20
   657
}
renatofilho@20
   658
renatofilho@20
   659
static void
renatofilho@20
   660
cb_schedule_button (GtkButton * button, gpointer user_data)
renatofilho@20
   661
{
renatofilho@20
   662
    MMythUi *mmyth_ui = (MMythUi *) user_data;
renatofilho@20
   663
renatofilho@20
   664
    mmyth_ui_set_widget (mmyth_ui, mmyth_ui->schedule_uicommon);
renatofilho@20
   665
}
renatofilho@20
   666
renatofilho@20
   667
void
renatofilho@20
   668
cb_switch_page (GtkNotebook *notebook, GtkNotebookPage *page,
renatofilho@20
   669
		guint page_num, gpointer user_data)
renatofilho@20
   670
{
renatofilho@20
   671
    MMythUi *mmyth_ui = (MMythUi *) user_data;
renatofilho@20
   672
    MMythUiCommon *ui_common; 
renatofilho@20
   673
    
renatofilho@20
   674
	assert (mmyth_ui);
renatofilho@20
   675
	assert (mmyth_ui->record_uicommon);
renatofilho@20
   676
	
renatofilho@20
   677
    ui_common = mmyth_ui->record_uicommon;
renatofilho@20
   678
    
renatofilho@20
   679
    if (page_num == 0) { // Switched to Schedule list
renatofilho@20
   680
    	gtk_button_set_label (GTK_BUTTON (ui_common->button1), "New");
renatofilho@20
   681
		g_signal_handlers_disconnect_by_func (
renatofilho@20
   682
			G_OBJECT (ui_common->button1), G_CALLBACK (cb_play_selected), mmyth_ui);
renatofilho@20
   683
	    g_signal_connect (G_OBJECT (ui_common->button1), "clicked",
renatofilho@20
   684
            G_CALLBACK (cb_schedule_button), mmyth_ui);
renatofilho@20
   685
    } else if (page_num == 1) {
renatofilho@20
   686
    	gtk_button_set_label (GTK_BUTTON (ui_common->button1), "Play");
renatofilho@20
   687
		g_signal_handlers_disconnect_by_func (
renatofilho@20
   688
			G_OBJECT (ui_common->button1), G_CALLBACK (cb_schedule_button), mmyth_ui);
renatofilho@20
   689
	    g_signal_connect (G_OBJECT (ui_common->button1), "clicked",
renatofilho@20
   690
            G_CALLBACK (cb_play_selected), mmyth_ui);
renatofilho@20
   691
    }
renatofilho@20
   692
}
renatofilho@20
   693
                                            
renatofilho@20
   694
                                            
renatofilho@20
   695
static MMythUiCommon *
renatofilho@20
   696
create_record_view (MMythUi * mmyth_ui)
renatofilho@20
   697
{
renatofilho@20
   698
    MMythUiCommon *ui_common;        
renatofilho@20
   699
    
renatofilho@20
   700
   	g_debug ("Creating Record UI Common");
renatofilho@20
   701
   	
renatofilho@20
   702
	mmyth_ui->mmyth_recordui = mmyth_recordui_new ();
renatofilho@20
   703
renatofilho@20
   704
	// FIXME: Change MMythRecordUI to a GtkWidget child and avoid this call!
renatofilho@20
   705
    gtk_widget_show_all (mmyth_ui->mmyth_recordui->scrolled_window);
renatofilho@20
   706
    
renatofilho@20
   707
    ui_common = mmyth_uicommon_new (mmyth_ui->mmyth_recordui->scrolled_window, "New", "Delete", "<<Back");    
renatofilho@20
   708
    g_object_ref (mmyth_ui->mmyth_recordui->scrolled_window);
renatofilho@20
   709
        
renatofilho@20
   710
    /* Button signals */
renatofilho@20
   711
    g_signal_connect (G_OBJECT (ui_common->button1), "clicked",
renatofilho@20
   712
                      G_CALLBACK (cb_schedule_button), mmyth_ui);
renatofilho@20
   713
    g_signal_connect (G_OBJECT (ui_common->button2), "clicked",
renatofilho@20
   714
                      G_CALLBACK (mmyth_recordui_delete_selected), mmyth_ui->mmyth_recordui);
renatofilho@20
   715
    g_signal_connect (G_OBJECT (ui_common->button3), "clicked",
renatofilho@20
   716
                      G_CALLBACK (cb_record_close_button), mmyth_ui);
renatofilho@20
   717
    g_signal_connect (G_OBJECT (mmyth_ui->mmyth_recordui->notebook),
renatofilho@20
   718
		      "switch-page", G_CALLBACK (cb_switch_page), mmyth_ui);
renatofilho@20
   719
    g_signal_connect (G_OBJECT (mmyth_ui->mmyth_recordui->rec_treeview),
renatofilho@20
   720
		      "row-activated", G_CALLBACK (cb_play_clicked_recorded), mmyth_ui);
renatofilho@20
   721
    g_signal_connect (G_OBJECT (mmyth_ui->mmyth_recordui->sch_treeview),
renatofilho@20
   722
		      "row-activated", G_CALLBACK (cb_edit_scheduled), mmyth_ui);
renatofilho@20
   723
    return ui_common;
renatofilho@20
   724
}
renatofilho@20
   725
renatofilho@20
   726
renatofilho@20
   727
/******************************************************************************
renatofilho@20
   728
 *                         GST VIDEO WIDGET METHODS                           *
renatofilho@20
   729
 *****************************************************************************/
renatofilho@20
   730
renatofilho@20
   731
static void
renatofilho@20
   732
cb_video_close_button (GtkButton * button, gpointer user_data)
renatofilho@20
   733
{
renatofilho@20
   734
    MMythUi *mmyth_ui = (MMythUi *) user_data;
renatofilho@20
   735
	
renatofilho@20
   736
	g_debug ("MMythUI video close button pressed");
renatofilho@20
   737
	
renatofilho@20
   738
	if (mmyth_ui && mmyth_ui->tvplayer) {
renatofilho@20
   739
	    mmyth_tvplayer_stop_playing (mmyth_ui->tvplayer);
renatofilho@20
   740
renatofilho@20
   741
		g_object_unref (mmyth_ui->tvplayer);
renatofilho@20
   742
		mmyth_ui->tvplayer = NULL;	    
renatofilho@20
   743
	} else {
renatofilho@20
   744
		g_warning ("cb_video_close_button called with NULL pointer\n");
renatofilho@20
   745
	}
renatofilho@20
   746
	
renatofilho@20
   747
    mmyth_ui_set_widget (mmyth_ui, mmyth_ui->main_uicommon);
renatofilho@20
   748
}
renatofilho@20
   749
renatofilho@20
   750
renatofilho@20
   751
static MMythUiCommon *
renatofilho@20
   752
create_video_view (MMythUi * mmyth_ui)
renatofilho@20
   753
{
renatofilho@20
   754
renatofilho@20
   755
    MMythUiCommon *ui_common;
renatofilho@20
   756
renatofilho@20
   757
	g_debug ("Creating Video UI Common");
renatofilho@20
   758
	
renatofilho@20
   759
	/* Creates widget to be user by MMythTVPlayer to draw the video */
renatofilho@20
   760
    mmyth_ui->videow = gtk_drawing_area_new ();
renatofilho@20
   761
    // FIXME: Get the widget size from settings
renatofilho@20
   762
    gtk_widget_set_size_request (mmyth_ui->videow, 300, 240);
renatofilho@20
   763
renatofilho@20
   764
    //mmiptv_ui->logo = gdk_pixbuf_new_from_file ("logo.png", NULL);
renatofilho@20
   765
renatofilho@20
   766
	// Creates an alignment to place the video widget inside
renatofilho@20
   767
    mmyth_ui->video_alignment = gtk_alignment_new (0.5, 0.5, 1, 1);
renatofilho@20
   768
    gtk_widget_hide (mmyth_ui->video_alignment);
renatofilho@20
   769
renatofilho@20
   770
    gtk_container_add (GTK_CONTAINER (mmyth_ui->video_alignment),
renatofilho@20
   771
                       mmyth_ui->videow);
renatofilho@20
   772
renatofilho@20
   773
    /* Add the gst video widget to hbox. It should never be removed. */    
renatofilho@20
   774
    /* FIXME: mmyth_ui->video_alignment == NULL when mmyth_player_init fails */
renatofilho@20
   775
    if((mmyth_ui->main_hbox != NULL) && (mmyth_ui->video_alignment != NULL)) {
renatofilho@20
   776
        gtk_box_pack_start (GTK_BOX (mmyth_ui->main_hbox),
renatofilho@20
   777
                            mmyth_ui->video_alignment, TRUE, TRUE, 0);    
renatofilho@20
   778
	} else {
renatofilho@20
   779
		g_warning ("[%s] Error while adding video_alignment to main widget", __FUNCTION__);	
renatofilho@20
   780
    }
renatofilho@20
   781
renatofilho@20
   782
    g_object_ref (mmyth_ui->videow);
renatofilho@20
   783
    g_object_ref (mmyth_ui->video_alignment);
renatofilho@20
   784
renatofilho@20
   785
    ui_common = mmyth_uicommon_new (mmyth_ui->video_alignment,
renatofilho@20
   786
                                    "  Full\nScreen", "Other\nServices",
renatofilho@20
   787
                                    "Close");
renatofilho@20
   788
                                    
renatofilho@20
   789
    
renatofilho@20
   790
    g_signal_connect (G_OBJECT (ui_common->button1), "clicked",
renatofilho@20
   791
                      G_CALLBACK (cb_not_impl_button), mmyth_ui);
renatofilho@20
   792
    g_signal_connect (G_OBJECT (ui_common->button2), "clicked",
renatofilho@20
   793
                      G_CALLBACK (cb_not_impl_button), mmyth_ui);    
renatofilho@20
   794
    g_signal_connect (G_OBJECT (ui_common->button3), "clicked",
renatofilho@20
   795
                      G_CALLBACK (cb_video_close_button), mmyth_ui);
renatofilho@20
   796
renatofilho@20
   797
	if (ui_common)
renatofilho@20
   798
		g_debug ("Video UI_Common sucessfull created");
renatofilho@20
   799
		
renatofilho@20
   800
    return ui_common;
renatofilho@20
   801
}
renatofilho@20
   802
renatofilho@20
   803
renatofilho@20
   804
renatofilho@20
   805
GtkWidget*
renatofilho@20
   806
mmyth_ui_get_video_widget (MMythUi *mmyth_ui) {
renatofilho@20
   807
	
renatofilho@20
   808
	if (mmyth_ui && mmyth_ui->videow) {
renatofilho@20
   809
	
renatofilho@20
   810
		return mmyth_ui->videow;
renatofilho@20
   811
	}
renatofilho@20
   812
	
renatofilho@20
   813
	return NULL;	
renatofilho@20
   814
}