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
24 #include "formatwindow.h"
28 FormatAWindow::FormatAWindow(Asset *asset, int *dither)
29 : BC_Window(_(PROGRAM_NAME ": File format"), 410,
30 (asset->format == FILE_WAV) ? 115 : 185,
32 { this->asset = asset; this->dither = dither; }
34 FormatAWindow::~FormatAWindow()
38 void FormatAWindow::create_objects()
46 add_subwindow(new BC_Title(x, y, _("Set parameters for this audio format:")));
48 add_subwindow(new BC_Title(x, y, _("Bits:")));
50 add_subwindow(new FormatBits(x, y, asset));
52 add_subwindow(new FormatDither(x, y, this->dither));
54 if(asset->format == FILE_PCM)
57 add_subwindow(new FormatSigned(x, y, asset));
62 if(asset->format == FILE_PCM)
64 add_subwindow(new BC_Title(x, y, _("Byte order:")));
66 add_subwindow(new BC_Title(x, y, _("HiLo:"), SMALLFONT));
67 add_subwindow(hilo_button = new FormatHILO(x + 30, y, asset));
69 add_subwindow(new BC_Title(x, y, _("LoHi:"), SMALLFONT));
70 add_subwindow(lohi_button = new FormatLOHI(x + 30, y, hilo_button, asset));
71 hilo_button->lohi = lohi_button;
77 add_subwindow(new BC_OKButton(x + 170, y));
81 int FormatAWindow::close_event()
89 FormatVWindow::FormatVWindow(Asset *asset, int recording)
90 : BC_Window(_(PROGRAM_NAME ": File format"), 410, 115, 0, 0)
91 { this->asset = asset; this->recording = recording; }
93 FormatVWindow::~FormatVWindow()
97 void FormatVWindow::create_objects()
104 if(asset->format == FILE_JPEG_LIST)
106 add_subwindow(new BC_Title(x, y, _("Set parameters for this video format:")));
108 add_subwindow(new BC_Title(x, y, _("Quality:")));
110 add_subwindow(new FormatQuality(x, y, asset, asset->quality));
116 add_subwindow(new BC_Title(x, y, _("Video is not supported in this format.")));
120 add_subwindow(new BC_OKButton(x + 170, y));
123 int FormatVWindow::close_event()
134 FormatQuality::FormatQuality(int x, int y, Asset *asset, int default_)
147 FormatQuality::~FormatQuality()
150 int FormatQuality::handle_event()
152 asset->quality = get_value();
157 FormatBits::FormatBits(int x, int y, Asset *asset)
158 : BitsPopup(x, y, asset)
159 { this->asset = asset; }
160 FormatBits::~FormatBits() {}
161 int FormatBits::handle_event()
163 asset->bits = get_bits();
168 FormatDither::FormatDither(int x, int y, int *dither)
169 : BC_CheckBox(x, y, *dither, _("Dither"))
170 { this->dither = dither; }
171 FormatDither::~FormatDither() {}
172 int FormatDither::handle_event()
174 *dither = get_value();
180 FormatSigned::FormatSigned(int x, int y, Asset *asset)
181 : BC_CheckBox(x, y, asset->signed_, _("Signed"))
182 { this->asset = asset; }
183 FormatSigned::~FormatSigned() {}
184 int FormatSigned::handle_event()
186 asset->signed_ = get_value();
194 FormatHILO::FormatHILO(int x, int y, Asset *asset)
195 : BC_Radial(x, y, asset->byte_order ^ 1)
199 FormatHILO::~FormatHILO() {}
201 int FormatHILO::handle_event()
203 asset->byte_order = get_value() ^ 1;
204 lohi->update(get_value() ^ 1);
207 FormatLOHI::FormatLOHI(int x, int y, FormatHILO *hilo, Asset *asset)
208 : BC_Radial(x, y, asset->byte_order)
213 FormatLOHI::~FormatLOHI() {}
215 int FormatLOHI::handle_event()
217 asset->byte_order = get_value();
218 hilo->update(get_value() ^ 1);