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 "bitspopup.h"
27 BitsPopup::BitsPopup(BC_WindowBase *parent_window,
37 this->parent_window = parent_window;
38 this->output = output;
41 this->use_ulaw = use_ulaw;
42 this->use_adpcm = use_adpcm;
43 this->use_float = use_float;
44 this->use_32linear = use_32linear;
45 this->use_8linear = use_8linear;
48 BitsPopup::~BitsPopup()
52 for(int i = 0; i < bits_items.total; i++)
53 delete bits_items.values[i];
56 void BitsPopup::create_objects()
58 if(use_8linear) bits_items.append(new BC_ListBoxItem(File::bitstostr(BITSLINEAR8)));
59 bits_items.append(new BC_ListBoxItem(File::bitstostr(BITSLINEAR16)));
60 bits_items.append(new BC_ListBoxItem(File::bitstostr(BITSLINEAR24)));
61 if(use_32linear) bits_items.append(new BC_ListBoxItem(File::bitstostr(BITSLINEAR32)));
62 if(use_ulaw) bits_items.append(new BC_ListBoxItem(File::bitstostr(BITSULAW)));
63 if(use_adpcm) bits_items.append(new BC_ListBoxItem(File::bitstostr(BITS_ADPCM)));
64 if(use_float) bits_items.append(new BC_ListBoxItem(File::bitstostr(BITSFLOAT)));
66 parent_window->add_subwindow(textbox = new BitsPopupText(this, x, y));
67 x += textbox->get_w();
68 parent_window->add_subwindow(menu = new BitsPopupMenu(this, x, y));
71 int BitsPopup::get_w()
73 return menu->get_w() + textbox->get_w();
76 int BitsPopup::get_h()
78 return MAX(menu->get_h(), textbox->get_h());
81 BitsPopupMenu::BitsPopupMenu(BitsPopup *popup, int x, int y)
97 int BitsPopupMenu::handle_event()
99 popup->textbox->update(get_selection(0, 0)->get_text());
100 popup->textbox->handle_event();
104 BitsPopupText::BitsPopupText(BitsPopup *popup, int x, int y)
105 : BC_TextBox(x, y, 120, 1, File::bitstostr(*popup->output))
110 int BitsPopupText::handle_event()
112 *popup->output = File::strtobits(get_text());