4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "bcsignals.h"
24 #include "filesystem.h"
26 #include "formatpopup.h"
30 FormatPopup::FormatPopup(int x, int y, int do_audio, int do_video, int use_brender)
31 : BC_ListBox(x, y, xS(200), yS(200), LISTBOX_TEXT, 0, 0, 0, 1, 0, 1)
33 this->do_audio = do_audio;
34 this->do_video = do_video;
35 this->use_brender = use_brender;
36 set_tooltip(_("Change file format"));
39 void FormatPopup::post_item(int format)
41 if( (do_audio && File::renders_audio(format)) ||
42 (do_video && File::renders_video(format)) )
43 format_items.append(new BC_ListBoxItem(File::formattostr(format)));
46 void FormatPopup::create_objects()
49 post_item(FILE_FFMPEG);
60 post_item(FILE_JPEG_LIST);
66 post_item(FILE_GIF_LIST);
70 post_item(FILE_EXR_LIST);
73 post_item(FILE_RAWDV);
75 post_item(FILE_AMPEG);
76 post_item(FILE_VMPEG);
79 post_item(FILE_VORBIS);
87 post_item(FILE_PNG_LIST);
90 post_item(FILE_PPM_LIST);
93 post_item(FILE_TGA_LIST);
96 post_item(FILE_TIFF_LIST);
99 post_item(FILE_EXR_LIST);
101 update(&format_items, 0, 0, 1);
104 FormatPopup::~FormatPopup()
106 format_items.remove_all_objects();
109 int FormatPopup::handle_event()
115 FFMPEGPopup::FFMPEGPopup(int x, int y)
116 : BC_ListBox(x, y, xS(100), yS(200), LISTBOX_TEXT, 0, 0, 0, 1, 0, 1)
118 set_tooltip(_("Set ffmpeg file type"));
121 void FFMPEGPopup::create_objects()
123 static const char *dirs[] = { "audio", "video", };
124 for( int i=0; i<(int)(sizeof(dirs)/sizeof(dirs[0])); ++i ) {
126 char option_path[BCTEXTLEN];
127 FFMPEG::set_option_path(option_path, dirs[i]);
128 fs.update(option_path);
129 int total_files = fs.total_files();
130 for( int j=0; j<total_files; ++j ) {
131 const char *name = fs.get_entry(j)->get_name();
132 const char *ext = strrchr(name,'.');
134 if( !strcmp("dfl", ++ext) ) continue;
135 if( !strcmp("opts", ext) ) continue;
136 int k = ffmpeg_types.size();
137 while( --k >= 0 && strcmp(ffmpeg_types[k]->get_text(), ext) );
138 if( k >= 0 ) continue;
139 ffmpeg_types.append(new BC_ListBoxItem(ext));
143 BC_ListBoxItem::sort_items(ffmpeg_types);
144 update(&ffmpeg_types, 0, 0, 1);
147 FFMPEGPopup::~FFMPEGPopup()
149 ffmpeg_types.remove_all_objects();
152 int FFMPEGPopup::handle_event()