Mercurial > mplayer.hg
annotate gui/mplayer/widgets.h @ 31366:0bf908d29807
SIGPIPE is not really a crash, try to exit cleanly in case we receive one.
Particularly in the network code it would be better to ignore it, but
some window managers use it to indicate a close request.
author | reimar |
---|---|
date | Wed, 16 Jun 2010 17:33:17 +0000 |
parents | 9e739bdb049c |
children | 12ae3b893c59 |
rev | line source |
---|---|
26458 | 1 /* |
2 * This file is part of MPlayer. | |
3 * | |
4 * MPlayer is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; either version 2 of the License, or | |
7 * (at your option) any later version. | |
8 * | |
9 * MPlayer is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License along | |
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
17 */ | |
18 | |
26029 | 19 #ifndef MPLAYER_GUI_WIDGETS_H |
20 #define MPLAYER_GUI_WIDGETS_H | |
23077 | 21 |
22 #include <stdio.h> | |
23 #include <stdlib.h> | |
24 #include <gdk/gdkkeysyms.h> | |
25 #include <gtk/gtk.h> | |
26 | |
26382
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
27 #include "config.h" |
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
28 #include "osdep/shmem.h" |
23077 | 29 #include "play.h" |
30 #include "mplayer.h" | |
26365
10dfbc523184
Add gui/ prefix to some #include paths so that compilation from the
diego
parents:
26029
diff
changeset
|
31 #include "gui/interface.h" |
10dfbc523184
Add gui/ prefix to some #include paths so that compilation from the
diego
parents:
26029
diff
changeset
|
32 #include "gui/wm/ws.h" |
23077 | 33 |
34 #define GTK_MB_SIMPLE 0 | |
35 #define GTK_MB_MODAL 1 | |
36 #define GTK_MB_FATAL 2 | |
37 #define GTK_MB_ERROR 4 | |
38 #define GTK_MB_WARNING 8 | |
39 | |
40 extern GtkWidget * PlayList; | |
41 extern GtkWidget * Options; | |
42 extern GtkWidget * PopUpMenu; | |
43 | |
44 extern GtkWidget * WarningPixmap; | |
45 extern GtkWidget * ErrorPixmap; | |
46 | |
47 extern GtkWidget * SkinList; | |
48 extern GtkWidget * gtkMessageBoxText; | |
49 | |
50 extern int gtkPopupMenu; | |
51 extern int gtkPopupMenuParam; | |
52 | |
53 extern char * sbMPlayerDirInHome; | |
54 extern char * sbMPlayerPrefixDir; | |
23795 | 55 extern char * sbMPlayerDirInHome_obsolete; |
56 extern char * sbMPlayerPrefixDir_obsolete; | |
23077 | 57 |
58 extern GdkPixmap * gtkIcon; | |
59 extern GdkBitmap * gtkIconMask; | |
60 extern Pixmap guiIcon; | |
61 extern Pixmap guiIconMask; | |
62 | |
28051 | 63 void widgetsCreate( void ); |
23077 | 64 |
28051 | 65 void gtkInit( void ); |
66 void gtkAddIcon( GtkWidget * window ); | |
23077 | 67 |
28051 | 68 int gtkFillSkinList( gchar * dir ); |
69 void gtkClearList( GtkWidget * list ); | |
70 void gtkSetDefaultToCList( GtkWidget * list, char * item ); | |
71 int gtkFindCList( GtkWidget * list, char * item ); | |
23077 | 72 |
28051 | 73 void gtkEventHandling( void ); |
23077 | 74 |
28051 | 75 void gtkShow( int type, char * param ); |
76 void gtkMessageBox( int type, const gchar * str ); | |
77 void gtkSetLayer( GtkWidget * wdg ); | |
78 void gtkActive( GtkWidget * wdg ); | |
23077 | 79 |
26029 | 80 #endif /* MPLAYER_GUI_WIDGETS_H */ |