6 BitsPopup::BitsPopup(BC_WindowBase *parent_window,
16 this->parent_window = parent_window;
17 this->output = output;
20 this->use_ima4 = use_ima4;
21 this->use_ulaw = use_ulaw;
22 this->use_adpcm = use_adpcm;
23 this->use_float = use_float;
24 this->use_32linear = use_32linear;
27 BitsPopup::~BitsPopup()
31 for(int i = 0; i < bits_items.total; i++)
32 delete bits_items.values[i];
35 int BitsPopup::create_objects()
37 bits_items.append(new BC_ListBoxItem(File::bitstostr(BITSLINEAR8)));
38 bits_items.append(new BC_ListBoxItem(File::bitstostr(BITSLINEAR16)));
39 bits_items.append(new BC_ListBoxItem(File::bitstostr(BITSLINEAR24)));
40 if(use_32linear) bits_items.append(new BC_ListBoxItem(File::bitstostr(BITSLINEAR32)));
41 if(use_ima4) bits_items.append(new BC_ListBoxItem(File::bitstostr(BITSIMA4)));
42 if(use_ulaw) bits_items.append(new BC_ListBoxItem(File::bitstostr(BITSULAW)));
43 if(use_adpcm) bits_items.append(new BC_ListBoxItem(File::bitstostr(BITS_ADPCM)));
44 if(use_float) bits_items.append(new BC_ListBoxItem(File::bitstostr(BITSFLOAT)));
46 parent_window->add_subwindow(textbox = new BitsPopupText(this, x, y));
47 x += textbox->get_w();
48 parent_window->add_subwindow(menu = new BitsPopupMenu(this, x, y));
52 int BitsPopup::get_w()
54 return menu->get_w() + textbox->get_w();
57 int BitsPopup::get_h()
59 return MAX(menu->get_h(), textbox->get_h());
62 BitsPopupMenu::BitsPopupMenu(BitsPopup *popup, int x, int y)
78 int BitsPopupMenu::handle_event()
80 popup->textbox->update(get_selection(0, 0)->get_text());
81 popup->textbox->handle_event();
85 BitsPopupText::BitsPopupText(BitsPopup *popup, int x, int y)
86 : BC_TextBox(x, y, 120, 1, File::bitstostr(*popup->output))
91 int BitsPopupText::handle_event()
93 *popup->output = File::strtobits(get_text());