Mercurial > mplayer.hg
view gui/dialog/menu.c @ 36706:8ca87345a6c2
Add language to VOBsub subtitle track information.
author | ib |
---|---|
date | Fri, 07 Feb 2014 19:23:09 +0000 |
parents | 5697842046d2 |
children | ebdf2390b935 |
line wrap: on
line source
/* * This file is part of MPlayer. * * MPlayer is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * MPlayer is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with MPlayer; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include "config.h" #include "help_mp.h" #include "access_mpcontext.h" #include "mixer.h" #include "mpcommon.h" #include "mp_core.h" #include "sub/sub.h" #include "sub/vobsub.h" #include "menu.h" #include "dialog.h" #include "gui/ui/actions.h" #include "gui/app/app.h" #include "gui/app/gui.h" #include "gui/interface.h" #include "stream/stream.h" #include "libavutil/common.h" #include "libmpcodecs/vd.h" #include "libmpdemux/demuxer.h" #include "libmpdemux/stheader.h" #include "libavutil/avstring.h" #include "pixmaps/about.xpm" #include "pixmaps/half.xpm" #include "pixmaps/normal.xpm" #include "pixmaps/double.xpm" #include "pixmaps/full.xpm" #include "pixmaps/exit.xpm" #include "pixmaps/prefs.xpm" #include "pixmaps/equalizer.xpm" #include "pixmaps/playlist.xpm" #include "pixmaps/skin.xpm" #include "pixmaps/sound.xpm" #include "pixmaps/open.xpm" #include "pixmaps/play.xpm" #include "pixmaps/stop.xpm" #include "pixmaps/pause.xpm" #include "pixmaps/prev.xpm" #include "pixmaps/next.xpm" #include "pixmaps/aspect.xpm" #include "pixmaps/aspect11.xpm" #include "pixmaps/aspect169.xpm" #include "pixmaps/aspect235.xpm" #include "pixmaps/aspect43.xpm" #include "pixmaps/file2.xpm" #include "pixmaps/url.xpm" #include "pixmaps/sub.xpm" #include "pixmaps/nosub.xpm" #include "pixmaps/empty.xpm" #include "pixmaps/loadeaf.xpm" #include "pixmaps/title.xpm" #include "pixmaps/subtitle.xpm" #ifdef CONFIG_CDDA #include "pixmaps/cd.xpm" #include "pixmaps/playcd.xpm" #endif #ifdef CONFIG_VCD #include "pixmaps/vcd.xpm" #include "pixmaps/playvcd.xpm" #endif #ifdef CONFIG_DVDREAD #include "pixmaps/dvd.xpm" #include "pixmaps/playdvd.xpm" #include "pixmaps/chapter.xpm" #include "pixmaps/dolby.xpm" #include "pixmaps/audio.xpm" #include "pixmaps/video.xpm" #endif #ifdef CONFIG_TV #include "pixmaps/tv.xpm" #endif #include "pixmaps/empty1px.xpm" int gtkPopupMenu; int gtkPopupMenuParam; static void ActivateMenuItem( int Item ) { // fprintf( stderr,"[menu] item: %d.%d\n",Item&0xffff,Item>>16 ); gtkPopupMenu=Item & 0x0000ffff; gtkPopupMenuParam=Item >> 16; uiEvent( Item & 0x0000ffff,Item >> 16 ); } static GtkWidget * AddMenuCheckItem(GtkWidget *window1, const char * immagine_xpm, GtkWidget* Menu,const char* label, gboolean state, int Number) { GtkWidget * Label = NULL; GtkWidget * Pixmap = NULL; GtkWidget * hbox = NULL; GtkWidget * Item = NULL; GdkPixmap *PixmapIcon = NULL; GdkColor transparent; GdkBitmap *MaskIcon = NULL; PixmapIcon = gdk_pixmap_create_from_xpm_d (window1->window, &MaskIcon, &transparent,(gchar **)immagine_xpm ); Pixmap = gtk_pixmap_new (PixmapIcon, MaskIcon); gdk_pixmap_unref (PixmapIcon); Item=gtk_check_menu_item_new(); Label = gtk_label_new (label); hbox = gtk_hbox_new (FALSE, 8); gtk_box_pack_start (GTK_BOX (hbox), Pixmap, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (hbox), Label, FALSE, FALSE, 0); gtk_container_add (GTK_CONTAINER (Item), hbox); gtk_menu_append( GTK_MENU( Menu ),Item ); gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(Item),state); gtk_signal_connect_object( GTK_OBJECT(Item),"activate", GTK_SIGNAL_FUNC(ActivateMenuItem),(gpointer)Number ); gtk_menu_item_right_justify (GTK_MENU_ITEM (Item)); gtk_widget_show_all(Item); return Item; } GtkWidget * AddMenuItem( GtkWidget *window1, const char * immagine_xpm, GtkWidget * SubMenu,const char * label,int Number ) { GtkWidget * Label = NULL; GtkWidget * Pixmap = NULL; GtkWidget * hbox = NULL; GtkWidget * Item = NULL; GdkPixmap * PixmapIcon = NULL; GdkColor transparent; GdkBitmap * MaskIcon = NULL; PixmapIcon = gdk_pixmap_create_from_xpm_d (window1->window, &MaskIcon, &transparent,(gchar **)immagine_xpm ); Pixmap = gtk_pixmap_new (PixmapIcon, MaskIcon); gdk_pixmap_unref (PixmapIcon); Item=gtk_menu_item_new(); Label = gtk_label_new (label); hbox = gtk_hbox_new (FALSE, 8); gtk_box_pack_start (GTK_BOX (hbox), Pixmap, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (hbox), Label, FALSE, FALSE, 0); gtk_container_add (GTK_CONTAINER (Item), hbox); gtk_menu_append( GTK_MENU( SubMenu ),Item ); gtk_signal_connect_object( GTK_OBJECT(Item),"activate", GTK_SIGNAL_FUNC(ActivateMenuItem),(gpointer)Number ); gtk_menu_item_right_justify (GTK_MENU_ITEM (Item)); gtk_widget_show_all(Item); return Item; } GtkWidget * AddSubMenu( GtkWidget *window1, const char * immagine_xpm, GtkWidget * Menu,const char * label ) { GtkWidget * Label = NULL; GtkWidget * Pixmap = NULL; GtkWidget * hbox = NULL; GtkWidget * Item = NULL; GtkWidget * SubItem = NULL; GdkPixmap * PixmapIcon = NULL; GdkColor transparent; GdkBitmap * MaskIcon = NULL; PixmapIcon = gdk_pixmap_create_from_xpm_d (window1->window, &MaskIcon, &transparent,(gchar **)immagine_xpm); Pixmap = gtk_pixmap_new (PixmapIcon, MaskIcon); gdk_pixmap_unref (PixmapIcon); SubItem=gtk_menu_item_new(); Item=gtk_menu_new(); Label = gtk_label_new (label); hbox = gtk_hbox_new (FALSE, 8); gtk_box_pack_start (GTK_BOX (hbox), Pixmap, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (hbox), Label, FALSE, FALSE, 0); gtk_container_add (GTK_CONTAINER (SubItem), hbox); gtk_menu_append( GTK_MENU( Menu ),SubItem ); gtk_menu_item_set_submenu( GTK_MENU_ITEM( SubItem ),Item ); gtk_widget_show_all( SubItem ); return Item; } GtkWidget * AddSeparator( GtkWidget * Menu ) { GtkWidget * Item = NULL; Item=gtk_menu_item_new (); gtk_widget_show( Item ); gtk_container_add( GTK_CONTAINER( Menu ),Item ); gtk_widget_set_sensitive( Item,FALSE ); return Item; } typedef struct { int id; const char * name; } Languages_t; #ifdef CONFIG_DVDREAD #define lng( a,b ) ( (int)(a) * 256 + b ) static Languages_t Languages[] = { { lng( 'a','a' ), "ʿAfár af" }, { lng( 'a','b' ), "аҧсуа бызшәа" }, { lng( 'a','f' ), "Afrikaans" }, { lng( 'a','m' ), "ኣማርኛ" }, { lng( 'a','r' ), "العربية" }, { lng( 'a','s' ), "অসমীয়া" }, { lng( 'a','y' ), "Aymar Aru" }, { lng( 'a','z' ), "Azərbaycanca" }, { lng( 'b','a' ), "Башҡорт теле" }, { lng( 'b','e' ), "беларуская мова" }, { lng( 'b','g' ), "български език" }, { lng( 'b','i' ), "Bislama" }, { lng( 'b','n' ), "বাংলা" }, { lng( 'b','o' ), "བོད་སྐད" }, { lng( 'b','r' ), "Brezhoneg" }, { lng( 'b','s' ), "Bosanski" }, { lng( 'c','a' ), "Català" }, { lng( 'c','e' ), "Нохчийн мотт" }, { lng( 'c','h' ), "Chamoru" }, { lng( 'c','o' ), "Corsu" }, { lng( 'c','s' ), "Čeština" }, { lng( 'c','v' ), "Чӑвашла" }, { lng( 'c','y' ), "Cymraeg" }, { lng( 'd','a' ), "Dansk" }, { lng( 'd','e' ), "Deutsch" }, { lng( 'd','z' ), "ཇོང་ཁ" }, { lng( 'e','l' ), "Ελληνικά" }, { lng( 'e','n' ), "English" }, { lng( 'e','o' ), "Esperanto" }, { lng( 'e','s' ), "Español" }, { lng( 'e','t' ), "Eesti keel" }, { lng( 'e','u' ), "Euskara" }, { lng( 'f','a' ), "فارسی" }, { lng( 'f','i' ), "Suomi" }, { lng( 'f','j' ), "Vakaviti" }, { lng( 'f','o' ), "Føroyskt" }, { lng( 'f','r' ), "Français" }, { lng( 'f','y' ), "Frysk" }, { lng( 'g','a' ), "Gaeilge" }, { lng( 'g','d' ), "Gàidhlig" }, { lng( 'g','l' ), "Galego" }, { lng( 'g','n' ), "Avañe'ẽ" }, { lng( 'g','u' ), "ગુજરાતી" }, { lng( 'h','a' ), "هَوُسَ" }, { lng( 'h','e' ), "עִבְרִית" }, { lng( 'h','i' ), "हिन्दी" }, { lng( 'h','r' ), "Hrvatska" }, { lng( 'h','u' ), "Magyar" }, { lng( 'h','y' ), "Հայերեն" }, { lng( 'h','z' ), "Otjiherero" }, { lng( 'i','d' ), "Bahasa Indonesia" }, { lng( 'i','s' ), "Íslenska" }, { lng( 'i','t' ), "Italiano" }, { lng( 'i','u' ), "ᐃᓄᒃᑎᑐᑦ" }, { lng( 'j','a' ), "日本語" }, { lng( 'j','i' ), "יידיש" }, { lng( 'j','v' ), "Basa Jawa" }, { lng( 'k','a' ), "ქართული" }, { lng( 'k','i' ), "Gĩkũyũ" }, { lng( 'k','j' ), "Kuanyama" }, { lng( 'k','k' ), "Қазақ тілі" }, { lng( 'k','l' ), "Kalaallisut" }, { lng( 'k','m' ), "ភាសាខ្មែរ" }, { lng( 'k','n' ), "ಕನ್ನಡ" }, { lng( 'k','o' ), "한국어" }, { lng( 'k','s' ), "कॉशुर" }, { lng( 'k','u' ), "کوردی" }, { lng( 'k','v' ), "коми кыв" }, { lng( 'k','y' ), "Кыргызча" }, { lng( 'l','a' ), "Lingua latina" }, { lng( 'l','b' ), "Lëtzebuergesch" }, { lng( 'l','n' ), "Lingála" }, { lng( 'l','o' ), "ພາສາລາວ" }, { lng( 'l','t' ), "Lietuvių kalba" }, { lng( 'l','v' ), "Latviešu" }, { lng( 'm','g' ), "Malagasy" }, { lng( 'm','h' ), "Kajin M̧ajeļ" }, { lng( 'm','i' ), "Te Reo Māori" }, { lng( 'm','k' ), "Македонски јазик" }, { lng( 'm','l' ), "മലയാളം" }, { lng( 'm','n' ), "ᠮᠣᠨᠭᠭᠣᠯ" }, { lng( 'm','r' ), "मराठी" }, { lng( 'm','s' ), "Bahasa Melayu" }, { lng( 'm','t' ), "Malti" }, { lng( 'm','y' ), "မြန်မာစကား" }, { lng( 'n','b' ), "Bokmål" }, { lng( 'n','d' ), "isiNdebele" }, { lng( 'n','e' ), "नेपाली" }, { lng( 'n','l' ), "Nederlands" }, { lng( 'n','n' ), "Nynorsk" }, { lng( 'n','r' ), "isiNdebele" }, { lng( 'n','v' ), "Diné bizaad" }, { lng( 'n','y' ), "Chichewa" }, { lng( 'o','c' ), "Occitan" }, { lng( 'o','m' ), "Afaan Oromoo" }, { lng( 'o','r' ), "ଓଡ଼ିଆ" }, { lng( 'o','s' ), "Ирон ӕвзаг" }, { lng( 'p','a' ), "ਪੰਜਾਬੀ" }, { lng( 'p','l' ), "Język polski" }, { lng( 'p','s' ), "پښتو" }, { lng( 'p','t' ), "Português" }, { lng( 'q','u' ), "Runa Simi" }, { lng( 'r','m' ), "Rätoromanisch" }, { lng( 'r','n' ), "íkiRǔndi" }, { lng( 'r','o' ), "Română)" }, { lng( 'r','u' ), "Русский" }, { lng( 'r','w' ), "Ikinyarwanda" }, { lng( 's','c' ), "Sardu" }, { lng( 's','d' ), "سنڌي" }, { lng( 's','g' ), "Sängö" }, { lng( 's','i' ), "සිංහල" }, { lng( 's','k' ), "Slovenčina" }, { lng( 's','l' ), "Slovenščina" }, { lng( 's','m' ), "Gagana Sāmoa" }, { lng( 's','n' ), "chiShona" }, { lng( 's','o' ), "Af-ka Soomaali-ga" }, { lng( 's','q' ), "Shqip" }, { lng( 's','r' ), "Српски" }, { lng( 's','s' ), "siSwati" }, { lng( 's','t' ), "seSotho" }, { lng( 's','u' ), "Basa Sunda" }, { lng( 's','v' ), "Svenska" }, { lng( 's','w' ), "Kiswahili" }, { lng( 't','a' ), "தமிழ்" }, { lng( 't','e' ), "తెలుగు" }, { lng( 't','g' ), "тоҷикӣ" }, { lng( 't','h' ), "ภาษาไทย" }, { lng( 't','i' ), "ትግርኛ" }, { lng( 't','k' ), "Türkmençe" }, { lng( 't','l' ), "Tagalog" }, { lng( 't','n' ), "Setswana" }, { lng( 't','o' ), "Lea fakatonga" }, { lng( 't','r' ), "Türkçe" }, { lng( 't','s' ), "Xitsonga" }, { lng( 't','t' ), "татарча" }, { lng( 't','w' ), "Twi" }, { lng( 't','y' ), "Reo Tahiti" }, { lng( 'u','g' ), "ئۇيغۇرچە" }, { lng( 'u','k' ), "Українська" }, { lng( 'u','r' ), "اردو" }, { lng( 'u','z' ), "Oʻzbek tili" }, { lng( 'v','i' ), "Tiếng Việt" }, { lng( 'w','o' ), "Wolof" }, { lng( 'x','h' ), "isiXhosa" }, { lng( 'y','i' ), "ייִדיש" }, { lng( 'y','o' ), "Yorùbá" }, { lng( 'z','a' ), "壮语" }, { lng( 'z','h' ), "漢語" }, { lng( 'z','u' ), "isiZulu" }, }; #undef lng static char * ChannelTypes[] = { "Dolby Digital","","Mpeg1","Mpeg2","PCM","","Digital Theatre System" }; static char * ChannelNumbers[] = { "","Stereo","","","","5.1" }; static const char * GetLanguage( int language ) { unsigned int i; for ( i=0;i<sizeof( Languages ) / sizeof( Languages_t );i++ ) if ( Languages[i].id == language ) return Languages[i].name; return MSGTR_GUI_Unknown; } #endif static GtkWidget * DVDSubMenu; GtkWidget * DVDTitleMenu; GtkWidget * DVDChapterMenu; GtkWidget * DVDAudioLanguageMenu; GtkWidget * DVDSubtitleLanguageMenu; GtkWidget * AspectMenu; GtkWidget * VCDSubMenu; GtkWidget * VCDTitleMenu; GtkWidget * CDSubMenu; GtkWidget * CDTitleMenu; GtkWidget * CreatePopUpMenu( void ) { GtkWidget * window1; GtkWidget * Menu = NULL; GtkWidget * SubMenu = NULL; GtkWidget * MenuItem = NULL; GtkWidget * H, * N, * D, * F; demuxer_t *demuxer = mpctx_get_demuxer(guiInfo.mpcontext); mixer_t *mixer = mpctx_get_mixer(guiInfo.mpcontext); int global_sub_size = mpctx_get_global_sub_size(guiInfo.mpcontext); Menu=gtk_menu_new(); gtk_widget_realize (Menu); window1 = gtk_widget_get_toplevel(Menu); AddMenuItem( window1, (const char*)about_xpm, Menu,MSGTR_GUI_AboutMPlayer" ", evAbout ); AddSeparator( Menu ); SubMenu=AddSubMenu( window1, (const char*)open_xpm, Menu,MSGTR_GUI_Open ); AddMenuItem( window1, (const char*)file2_xpm, SubMenu,MSGTR_GUI_File"... ", evLoadPlay ); #ifdef CONFIG_CDDA AddMenuItem( window1, (const char*)playcd_xpm, SubMenu,MSGTR_GUI_CD, evPlayCD ); CDSubMenu=AddSubMenu( window1, (const char*)cd_xpm, Menu,MSGTR_GUI_CD ); AddMenuItem( window1, (const char*)playcd_xpm, CDSubMenu,MSGTR_GUI_Play,evPlayCD ); AddSeparator( CDSubMenu ); CDTitleMenu=AddSubMenu( window1, (const char*)title_xpm, CDSubMenu,MSGTR_GUI_Titles ); if ( guiInfo.Tracks && ( guiInfo.StreamType == STREAMTYPE_CDDA ) ) { char tmp[32]; int i; for ( i=1;i <= guiInfo.Tracks;i++ ) { snprintf( tmp,32,MSGTR_GUI_TitleNN,i ); //AddMenuItem( CDTitleMenu,tmp,( i << 16 ) + ivSetCDTrack ); AddMenuCheckItem(window1, (const char*)empty1px_xpm, CDTitleMenu,tmp, guiInfo.Track == i, ( i << 16 ) + ivSetCDTrack ); } } else { MenuItem=AddMenuItem( window1, (const char*)empty1px_xpm, CDTitleMenu,MSGTR_GUI__none_,evNone ); gtk_widget_set_sensitive( MenuItem,FALSE ); } #endif #ifdef CONFIG_VCD AddMenuItem( window1, (const char*)playvcd_xpm, SubMenu,MSGTR_GUI_VCD, evPlayVCD ); VCDSubMenu=AddSubMenu( window1, (const char*)vcd_xpm, Menu,MSGTR_GUI_VCD ); AddMenuItem( window1, (const char*)playvcd_xpm, VCDSubMenu,MSGTR_GUI_Play,evPlayVCD ); AddSeparator( VCDSubMenu ); VCDTitleMenu=AddSubMenu( window1, (const char*)title_xpm, VCDSubMenu,MSGTR_GUI_Titles ); if ( guiInfo.Tracks && ( guiInfo.StreamType == STREAMTYPE_VCD ) ) { char tmp[32]; int i; for ( i=1;i < guiInfo.Tracks;i++ ) { snprintf( tmp,32,MSGTR_GUI_TitleNN,i ); //AddMenuItem( VCDTitleMenu,tmp,( i << 16 ) + ivSetVCDTrack ); AddMenuCheckItem(window1, (const char*)empty1px_xpm, VCDTitleMenu,tmp, guiInfo.Track == i + 1, ( ( i + 1 ) << 16 ) + ivSetVCDTrack ); } } else { MenuItem=AddMenuItem( window1, (const char*)empty1px_xpm, VCDTitleMenu,MSGTR_GUI__none_,evNone ); gtk_widget_set_sensitive( MenuItem,FALSE ); } #endif #ifdef CONFIG_DVDREAD AddMenuItem( window1, (const char*)playdvd_xpm, SubMenu,MSGTR_GUI_DVD, evPlayDVD ); DVDSubMenu=AddSubMenu( window1, (const char*)dvd_xpm, Menu,MSGTR_GUI_DVD ); AddMenuItem( window1, (const char*)playdvd_xpm, DVDSubMenu,MSGTR_GUI_Play" ", evPlayDVD ); // AddMenuItem( DVDSubMenu,MSGTR_MENU_ShowDVDMenu, evNone ); AddSeparator( DVDSubMenu ); DVDTitleMenu=AddSubMenu( window1, (const char*)title_xpm, DVDSubMenu,MSGTR_GUI_Titles ); if ( guiInfo.Tracks && ( guiInfo.StreamType == STREAMTYPE_DVD ) ) { char tmp[32]; int i; for ( i=1 ; i<= guiInfo.Tracks;i++ ) { snprintf( tmp,32,MSGTR_GUI_TitleNN,i); AddMenuCheckItem( window1, (const char*)empty1px_xpm, DVDTitleMenu,tmp, guiInfo.Track == i, (i << 16) + ivSetDVDTitle ); } } else { MenuItem=AddMenuItem( window1, (const char*)empty1px_xpm, DVDTitleMenu,MSGTR_GUI__none_,evNone ); gtk_widget_set_sensitive( MenuItem,FALSE ); } DVDChapterMenu=AddSubMenu( window1, (const char*)chapter_xpm, DVDSubMenu,MSGTR_GUI_Chapters ); if ( guiInfo.Chapters && ( guiInfo.StreamType == STREAMTYPE_DVD ) ) { char tmp[32]; int i; for ( i=1;i <= guiInfo.Chapters;i++ ) { snprintf( tmp,32,MSGTR_GUI_ChapterNN,i ); AddMenuCheckItem( window1, (const char*)empty1px_xpm, DVDChapterMenu,tmp,guiInfo.Chapter == i, ( i << 16 ) + ivSetDVDChapter ); } } else { MenuItem=AddMenuItem( window1, (const char*)empty1px_xpm, DVDChapterMenu,MSGTR_GUI__none_,evNone ); gtk_widget_set_sensitive( MenuItem,FALSE ); } DVDAudioLanguageMenu=AddSubMenu( window1, (const char*)audio_xpm, DVDSubMenu,MSGTR_GUI_AudioTracks ); if ( guiInfo.AudioStreams && demuxer && ( guiInfo.StreamType == STREAMTYPE_DVD ) ) { char tmp[64]; int i; for ( i=0;i < guiInfo.AudioStreams;i++ ) { snprintf( tmp,64,"%s - %s %s",GetLanguage( guiInfo.AudioStream[i].language ), ChannelTypes[ guiInfo.AudioStream[i].type ], ChannelNumbers[ guiInfo.AudioStream[i].channels ] ); AddMenuCheckItem( window1, (const char*)dolby_xpm, DVDAudioLanguageMenu,tmp, demuxer->audio->id == guiInfo.AudioStream[i].id, ( guiInfo.AudioStream[i].id << 16 ) + ivSetDVDAudio ); } } else { MenuItem=AddMenuItem( window1, (const char*)empty1px_xpm, DVDAudioLanguageMenu,MSGTR_GUI__none_,evNone ); gtk_widget_set_sensitive( MenuItem,FALSE ); } DVDSubtitleLanguageMenu=AddSubMenu( window1, (const char*)subtitle_xpm, DVDSubMenu,MSGTR_GUI_Subtitles ); if ( guiInfo.Subtitles && ( guiInfo.StreamType == STREAMTYPE_DVD ) ) { char tmp[64]; int i; AddMenuItem( window1, (const char*)empty1px_xpm, DVDSubtitleLanguageMenu,MSGTR_GUI__none_,( (unsigned short)-1 << 16 ) + ivSetDVDSubtitle ); for ( i=0;i < guiInfo.Subtitles;i++ ) { av_strlcpy( tmp,GetLanguage( guiInfo.Subtitle[i].language ),sizeof(tmp) ); AddMenuCheckItem( window1, (const char*)empty1px_xpm, DVDSubtitleLanguageMenu,tmp, dvdsub_id == guiInfo.Subtitle[i].id, ( guiInfo.Subtitle[i].id << 16 ) + ivSetDVDSubtitle ); } } else { MenuItem=AddMenuItem( window1, (const char*)empty1px_xpm, DVDSubtitleLanguageMenu,MSGTR_GUI__none_,evNone ); gtk_widget_set_sensitive( MenuItem,FALSE ); } #endif AddMenuItem( window1, (const char*)url_xpm, SubMenu,MSGTR_GUI_URL"...", evLoadURL ); #ifdef CONFIG_TV AddMenuItem( window1, (const char*)tv_xpm, SubMenu,MSGTR_GUI_TV, evPlayTV ); #endif AddSeparator( SubMenu ); AddMenuItem( window1, (const char*)loadeaf_xpm, SubMenu,MSGTR_GUI_AudioTrack"...", evLoadAudioFile ); AddMenuItem( window1, (const char*)sub_xpm, SubMenu,MSGTR_GUI_Subtitle"... ", evLoadSubtitle ); AddMenuItem( window1, (const char*)nosub_xpm, SubMenu,MSGTR_GUI_DropSubtitle,evDropSubtitle ); SubMenu=AddSubMenu(window1, (const char*)play_xpm, Menu,MSGTR_GUI_Playback ); AddMenuItem( window1, (const char*)play_xpm, SubMenu,MSGTR_GUI_Play" ", evPlay ); AddMenuItem( window1, (const char*)pause_xpm, SubMenu,MSGTR_GUI_Pause, evPause ); AddMenuItem( window1, (const char*)stop_xpm, SubMenu,MSGTR_GUI_Stop, evStop ); AddMenuItem( window1, (const char*)next_xpm, SubMenu,MSGTR_GUI_Next, evNext ); AddMenuItem( window1, (const char*)prev_xpm, SubMenu,MSGTR_GUI_Previous, evPrev ); // AddSeparator( SubMenu ); // AddMenuItem( SubMenu,"Back 10 sec", evBackward10sec ); // AddMenuItem( SubMenu,"Fwd 10 sec", evForward10sec ); // AddMenuItem( SubMenu,"Back 1 min", evBackward1min ); // AddMenuItem( SubMenu,"Fwd 1 min", evForward1min ); // SubMenu=AddSubMenu( Menu,MSGTR_MENU_Size ); // AddMenuItem( SubMenu,MSGTR_GUI_SizeNormal" ", evNormalSize ); // AddMenuItem( SubMenu,MSGTR_GUI_SizeDouble, evDoubleSize ); // AddMenuItem( SubMenu,MSGTR_GUI_SizeFullscreen, evFullScreen + ( True << 16 ) ); if ( guiInfo.VideoWindow ) { int a11 = False, a169 = False, a43 = False, a235 = False; AddSeparator( Menu ); if (movie_aspect == -1.0f) a11 = True; else { a169 = (FFABS(movie_aspect - 16.0f / 9.0f) <= 0.01f); a43 = (FFABS(movie_aspect - 4.0f / 3.0f) <= 0.01f); a235 = (FFABS(movie_aspect - 2.35f) <= 0.01f); } AspectMenu=AddSubMenu( window1, (const char*)aspect_xpm, Menu,MSGTR_GUI_AspectRatio ); H=AddMenuCheckItem( window1, (const char*)aspect11_xpm, AspectMenu,MSGTR_GUI_Original, a11, evSetAspect + ( 1 << 16 ) ); N=AddMenuCheckItem( window1, (const char*)aspect169_xpm, AspectMenu,"16:9", a169, evSetAspect + ( 2 << 16 ) ); D=AddMenuCheckItem( window1, (const char*)aspect43_xpm, AspectMenu,"4:3", a43, evSetAspect + ( 3 << 16 ) ); F=AddMenuCheckItem( window1, (const char*)aspect235_xpm, AspectMenu,MSGTR_GUI_235To1, a235, evSetAspect + ( 4 << 16 ) ); if ( !guiInfo.Playing ) { gtk_widget_set_sensitive( H,FALSE ); gtk_widget_set_sensitive( N,FALSE ); gtk_widget_set_sensitive( D,FALSE ); gtk_widget_set_sensitive( F,FALSE ); } } if ( guiInfo.VideoWindow ) { int b1 = False, b2 = False, b_half = False; if ( !guiApp.videoWindow.isFullScreen && guiInfo.Playing ) { if ( ( guiApp.videoWindow.Width == guiInfo.VideoWidth * 2 )&& ( guiApp.videoWindow.Height == guiInfo.VideoHeight * 2 ) ) b2=True; else if ( ( guiApp.videoWindow.Width == guiInfo.VideoWidth / 2 ) && ( guiApp.videoWindow.Height == guiInfo.VideoHeight / 2 ) ) b_half=True; else b1=( guiApp.videoWindow.Width == guiInfo.VideoWidth && guiApp.videoWindow.Height == guiInfo.VideoHeight ); } else b1=!guiApp.videoWindow.isFullScreen; F=AddMenuCheckItem( window1, (const char*)full_xpm, Menu,MSGTR_GUI_SizeFullscreen,guiApp.videoWindow.isFullScreen,evFullScreen + ( True << 16 ) ); D=AddMenuCheckItem( window1, (const char*)double_xpm, Menu,MSGTR_GUI_SizeDouble,b2,evDoubleSize ); N=AddMenuCheckItem( window1, (const char*)normal_xpm, Menu,MSGTR_GUI_SizeNormal" ",b1,evNormalSize ); H=AddMenuCheckItem( window1, (const char*)half_xpm, Menu,MSGTR_GUI_SizeHalf,b_half,evHalfSize ); if ( !guiInfo.Playing ) { gtk_widget_set_sensitive( H,FALSE ); gtk_widget_set_sensitive( N,FALSE ); gtk_widget_set_sensitive( D,FALSE ); gtk_widget_set_sensitive( F,FALSE ); } } AddSeparator( Menu ); MenuItem=AddMenuCheckItem( window1, (const char*)sound_xpm, Menu,MSGTR_GUI_Mute,mixer->muted,evMute ); if ( !guiInfo.AudioChannels ) gtk_widget_set_sensitive( MenuItem,FALSE ); if ( guiInfo.Playing && demuxer && guiInfo.StreamType != STREAMTYPE_DVD ) { int i,c = 0; for ( i=0;i < MAX_A_STREAMS;i++ ) if ( demuxer->a_streams[i] ) c++; if ( c > 1 ) { SubMenu=AddSubMenu( window1, (const char*)audio_xpm, Menu,MSGTR_GUI_AudioTracks ); for ( i=0;i < MAX_A_STREAMS;i++ ) if ( demuxer->a_streams[i] ) { int aid = ((sh_audio_t *)demuxer->a_streams[i])->aid; int selected_id = (audio_id == aid || (audio_id == -1 && aid == demuxer_default_audio_track(demuxer))); char lng[32], tmp[64]; if ( demuxer_audio_lang( demuxer, i, lng, sizeof(lng) ) == 0 ) snprintf( tmp,sizeof(tmp),MSGTR_GUI_TrackN" - %s",aid,lng ); else snprintf( tmp,sizeof(tmp),MSGTR_GUI_TrackN,aid ); AddMenuCheckItem( window1, (const char*)empty1px_xpm, SubMenu,tmp,selected_id,( aid << 16 ) + ivSetAudio ); } } for ( c=0,i=0;i < MAX_V_STREAMS;i++ ) if ( demuxer->v_streams[i] ) c++; if ( c > 1 ) { SubMenu=AddSubMenu( window1, (const char*)video_xpm, Menu,MSGTR_GUI_VideoTracks ); for ( i=0;i < MAX_V_STREAMS;i++ ) if ( demuxer->v_streams[i] ) { int vid = ((sh_video_t *)demuxer->v_streams[i])->vid; char tmp[32]; int selected_id = (video_id == vid || (video_id == -1 && vid == demuxer_default_video_track(demuxer))); snprintf( tmp,32,MSGTR_GUI_TrackN,vid ); AddMenuCheckItem( window1, (const char*)empty1px_xpm, SubMenu,tmp,selected_id,( vid << 16 ) + ivSetVideo ); } } } /* cheap subtitle switching for non-DVD streams */ if ( global_sub_size && guiInfo.StreamType != STREAMTYPE_DVD ) { int pos, i, j, subs0 = guiInfo.mpcontext->sub_counts[SUB_SOURCE_SUBS], subs1 = guiInfo.mpcontext->sub_counts[SUB_SOURCE_VOBSUB]; pos = mpctx_get_global_sub_pos(guiInfo.mpcontext); SubMenu=AddSubMenu( window1, (const char*)subtitle_xpm, Menu, MSGTR_GUI_Subtitles ); AddMenuCheckItem( window1, (const char*)empty1px_xpm, SubMenu, MSGTR_GUI__none_, pos == -1, (-1 << 16) + ivSetSubtitle ); for ( i=0;i < global_sub_size;i++ ) { int ret = -1; char lng[32], tmp[64], *lang; /* VOBsub */ if ( ( i >= subs0 && i < subs0 + subs1 ) && vo_vobsub ) { lang = vobsub_get_id( vo_vobsub, vobsub_get_id_by_index( vo_vobsub, i - subs0 ) ); if ( lang ) { av_strlcpy( lng, lang, sizeof(lng) ); ret = 0; } } /* embedded (demuxer) */ else if ( i >= subs0 + subs1 ) { for ( j=0;j < MAX_S_STREAMS;j++ ) { if ( demuxer->s_streams[j] ) ret++; if ( ret == i - subs0 - subs1 ) { ret = demuxer_sub_lang( demuxer, j, lng, sizeof(lng) ); break; } } } if ( ret == 0 ) snprintf( tmp, sizeof(tmp), MSGTR_GUI_TrackN" - %s", i, lng ); else snprintf( tmp, sizeof(tmp), MSGTR_GUI_TrackN, i ); AddMenuCheckItem( window1,(const char*)empty1px_xpm,SubMenu,tmp,pos == i,( i << 16 ) + ivSetSubtitle ); } } AddSeparator( Menu ); AddMenuItem( window1, (const char*)equalizer_xpm, Menu,MSGTR_GUI_Equalizer, evEqualizer ); AddMenuItem( window1, (const char*)playlist_xpm, Menu,MSGTR_GUI_Playlist, evPlaylist ); AddMenuItem( window1, (const char*)skin_xpm, Menu,MSGTR_GUI_SkinBrowser, evSkinBrowser ); AddMenuItem( window1, (const char*)prefs_xpm, Menu,MSGTR_GUI_Preferences, evPreferences ); AddSeparator( Menu ); AddMenuItem( window1, (const char*)exit_xpm, Menu,MSGTR_GUI_Quit, evExit ); return Menu; }