~ubuntu-dev/mplayer/ubuntu-feisty

« back to all changes in this revision

Viewing changes to Gui/mplayer/gtk/fs.c

  • Committer: William Grant
  • Date: 2007-02-03 03:16:07 UTC
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: william.grant@ubuntu.org.au-20070203031607-08gc2ompbz6spt9i
Update to 1.0rc1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
#include "../interface.h"
17
17
#include "../../config.h"
18
18
#include "../../help_mp.h"
19
 
#include "../../libmpdemux/stream.h"
 
19
#include "../../stream/stream.h"
20
20
 
21
21
#include "../widgets.h"
22
22
#include "fs.h"
72
72
           { "SMI (*.smi)",                                                "*.smi" },
73
73
           { "RT  (*.rt) ",                                                "*.rt"  },
74
74
           { "TXT (*.txt)",                                                "*.txt" },
 
75
           { "ASS (*.ass)",                                                "*.ass" },
75
76
           { "SSA (*.ssa)",                                                "*.ssa" },
76
77
           { "AQT (*.aqt)",                                                "*.aqt" },
77
 
           { "Subtitles",                                                  "*.utf,*.sub,*.srt,*.smi,*.rt,*.txt,*.ssa,*.aqt" },
 
78
           { "Subtitles",                                                  "*.utf,*.sub,*.srt,*.smi,*.rt,*.txt,*.ass,*.ssa,*.aqt" },
78
79
           { "All files",                                                  "*" },
79
80
           { NULL,NULL }
80
81
         };
321
322
 
322
323
 if ( fsTopList_items ) g_list_free( fsTopList_items ); fsTopList_items=NULL;
323
324
 {
324
 
  char * hist;
325
325
  int  i, c = 1;
326
326
  
327
327
  if ( fsType == fsVideoSelector )
562
562
 
563
563
GtkWidget * create_FileSelect( void )
564
564
{
565
 
 GtkWidget     * FSFrame;
566
 
 GtkWidget     * frame2;
567
 
 GtkWidget     * frame3;
568
 
 GtkWidget     * frame4;
569
565
 GtkWidget     * vbox4;
570
566
 GtkWidget     * hbox4;
571
567
 GtkWidget     * vseparator1;
572
 
 GtkWidget     * hseparator1;
573
568
 GtkWidget     * hbox6;
574
569
 GtkWidget     * fsFNameListWindow;
575
 
 GtkWidget     * label1;
576
 
 GtkWidget     * hseparator2;
577
 
 GtkWidget     * hseparator3;
578
570
 GtkWidget     * hbuttonbox3;
579
571
 
580
572
 GtkWidget     * uppixmapwid;