maemo-ui/src/mmyth_main.c
author rosfran
Fri Feb 23 23:19:27 2007 +0000 (2007-02-23)
branchtrunk
changeset 376 39189137071e
parent 244 c88244670b08
child 754 cb885ee44618
permissions -rw-r--r--
[svn r381] Solved minor problem with the time value.
renatofilho@20
     1
renatofilho@20
     2
#include <gtk/gtk.h>
renatofilho@20
     3
renatofilho@20
     4
#include "config.h"
renatofilho@20
     5
renatofilho@20
     6
#ifdef MAEMO_PLATFORM
renatofilho@20
     7
#include "hildon-widgets/hildon-program.h"
renatofilho@20
     8
#include "hildon-widgets/hildon-window.h"
renatofilho@20
     9
#endif
renatofilho@20
    10
rosfran@208
    11
#include <gmyth/gmyth_recorder.h>
rosfran@376
    12
#include <gmyth/gmyth_backendinfo.h>
rosfran@208
    13
#include <gmyth/gmyth_tvchain.h>
rosfran@208
    14
#include <gmyth/gmyth_remote_util.h>
renatofilho@20
    15
renatofilho@20
    16
#include "mmyth_ui.h"
renatofilho@20
    17
#include "mmyth_tvplayer.h"
renatofilho@20
    18
renatofilho@20
    19
static void
renatofilho@20
    20
cb_destroy (GtkWidget * widget, gpointer data)
renatofilho@20
    21
{
renatofilho@20
    22
    MMythUi *mmyth_ui = (MMythUi *) data;
renatofilho@20
    23
renatofilho@20
    24
    if (mmyth_ui->tvplayer != NULL) {
renatofilho@20
    25
    	if (mmyth_tvplayer_is_playing (mmyth_ui->tvplayer) )
renatofilho@20
    26
    		mmyth_tvplayer_stop_playing (mmyth_ui->tvplayer);
renatofilho@20
    27
    }
renatofilho@20
    28
renatofilho@20
    29
	mmyth_ui_finalize (mmyth_ui);
renatofilho@20
    30
	
renatofilho@20
    31
    gtk_main_quit ();
renatofilho@20
    32
}
renatofilho@20
    33
renatofilho@20
    34
#ifdef NDEBUG
renatofilho@20
    35
static void
renatofilho@20
    36
debug_error_func( const gchar*log_domain, GLogLevelFlags log_level, const gchar *message,
renatofilho@20
    37
	gpointer user_data )
renatofilho@20
    38
renatofilho@20
    39
{
renatofilho@20
    40
	/* leave this with NO print out messages, once you need to disable debug messages! */
renatofilho@20
    41
	//g_print ( "[%s] DEBUG messages disabled!\n", __FUNCTION__ );
renatofilho@20
    42
}
renatofilho@20
    43
#endif
renatofilho@20
    44
renatofilho@20
    45
gint
renatofilho@20
    46
main (gint argc, gchar * argv[])
renatofilho@20
    47
{
renatofilho@20
    48
    GtkWidget *window;
renatofilho@20
    49
    MMythUi *mmyth_ui;
renatofilho@20
    50
#ifdef MAEMO_PLATFORM
renatofilho@20
    51
    HildonProgram *program = NULL;
renatofilho@20
    52
#endif
renatofilho@20
    53
renatofilho@20
    54
    /* init threads */
renatofilho@20
    55
    g_thread_init (NULL);
renatofilho@20
    56
renatofilho@20
    57
    /* Initializes GTK */
renatofilho@20
    58
    gtk_init (&argc, &argv);
renatofilho@20
    59
    gst_init (&argc, &argv);
renatofilho@20
    60
#ifdef NDEBUG
renatofilho@20
    61
 g_log_set_default_handler( debug_error_func, NULL );
renatofilho@20
    62
#endif
renatofilho@20
    63
renatofilho@20
    64
    /* Init libmmyth context */
rosfran@208
    65
	/* TODO */
renatofilho@20
    66
#ifndef MAEMO_PLATFORM
renatofilho@20
    67
    /* create the main window */
renatofilho@20
    68
    window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
renatofilho@20
    69
    gtk_widget_set_size_request (window, MAIN_WINDOW_WIDTH, MAIN_WINDOW_HEIGHT);
renatofilho@20
    70
    gtk_window_set_title (GTK_WINDOW (window), "Mythtv Frontend");
renatofilho@20
    71
#else
renatofilho@20
    72
    /* Creating Hildonized main view */
renatofilho@20
    73
    program = HILDON_PROGRAM(hildon_program_get_instance());
renatofilho@20
    74
    window = hildon_window_new();
renatofilho@20
    75
renatofilho@20
    76
    //g_signal_connect(G_OBJECT(window), "delete_event", gtk_main_quit, NULL);
renatofilho@20
    77
renatofilho@20
    78
    hildon_program_add_window(program, HILDON_WINDOW (window));
renatofilho@20
    79
    g_set_application_name("Maemo Mythtv"); 
renatofilho@20
    80
#endif
renatofilho@20
    81
   
renatofilho@20
    82
    /* Initializes MMyth Widgets */
renatofilho@20
    83
#ifdef MAEMO_PLATFORM
renatofilho@20
    84
    mmyth_ui = mmyth_ui_initialize (program, window);
renatofilho@20
    85
#else    
renatofilho@20
    86
    mmyth_ui = mmyth_ui_initialize (window);
renatofilho@20
    87
#endif
renatofilho@20
    88
    
renatofilho@20
    89
    //mmyth_ui->loop = g_main_loop_new (NULL, FALSE);
renatofilho@20
    90
renatofilho@20
    91
    /* Connect destroy signal handling */
renatofilho@20
    92
    g_signal_connect (window, "destroy", G_CALLBACK (cb_destroy), mmyth_ui);
renatofilho@20
    93
renatofilho@20
    94
    /* Shows main window and start gtk loop */
renatofilho@20
    95
    gtk_widget_show (window);
renatofilho@20
    96
renatofilho@20
    97
    gtk_main ();
renatofilho@20
    98
renatofilho@20
    99
    return 0;
renatofilho@20
   100
}
renatofilho@20
   101