Mercurial > mplayer.hg
annotate gui/mplayer/widgets.h @ 26625:5b89b42f6d50
Only compile and use libmpeg2 AltiVec code when AltiVec is available. The
AltiVec code needs -maltivec to compile, but then AltiVec instructions
appear in other places of the code causing MPlayer to sigill.
Somehow upstream libmpeg2 manages not to sigill under what appear to be
the same circumstances. Enlightenment welcome.
author | diego |
---|---|
date | Sat, 03 May 2008 15:23:22 +0000 |
parents | b0a7b35b78d2 |
children | 9e739bdb049c |
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 | |
63 extern void widgetsCreate( void ); | |
64 | |
65 extern void gtkInit( void ); | |
66 extern void gtkAddIcon( GtkWidget * window ); | |
67 | |
68 extern int gtkFillSkinList( gchar * dir ); | |
69 extern void gtkClearList( GtkWidget * list ); | |
70 extern void gtkSetDefaultToCList( GtkWidget * list,char * item ); | |
71 extern int gtkFindCList( GtkWidget * list,char * item ); | |
72 | |
73 extern void gtkEventHandling( void ); | |
74 | |
75 extern void gtkShow( int type,char * param ); | |
76 extern void gtkMessageBox( int type,const gchar * str ); | |
77 extern void gtkSetLayer( GtkWidget * wdg ); | |
78 extern void gtkActive( GtkWidget * wdg ); | |
79 | |
26029 | 80 #endif /* MPLAYER_GUI_WIDGETS_H */ |