Initial load
[omnplay] / src / omnplay.cpp
1 /*
2 * omnplay.c -- GTK+ 2 omnplay
3 * Copyright (C) 2011 Maksym Veremeyenko <verem@m1stereo.tv>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software Foundation,
17 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20 #ifdef HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <gtk/gtk.h>
28 #include <gdk/gdkkeysyms.h>
29
30 #include "omnplay.h"
31 #include "ui.h"
32
33 static gboolean on_main_window_delete_event( GtkWidget *widget, GdkEvent *event, gpointer user_data )
34 {
35 gtk_exit(0);
36 return TRUE;
37 }
38
39
40 omnplay_instance_t* omnplay_create(int argc, char** argv)
41 {
42 omnplay_instance_t* app;
43
44 app = (omnplay_instance_t*)malloc(sizeof(omnplay_instance_t));
45 memset(app, 0, sizeof(omnplay_instance_t));
46
47 app->window = ui_omnplay(app);
48
49 return app;
50 };
51
52 void omnplay_close(omnplay_instance_t* app)
53 {
54 //OmPlrHandle plrHandle;
55 //OmPlrClose(plrHandle);
56 };
57
58 void omnplay_init(omnplay_instance_t* app)
59 {
60 gtk_signal_connect( GTK_OBJECT( app->window ), "destroy",
61 GTK_SIGNAL_FUNC(on_main_window_delete_event), app);
62 };