remove file ogg/vorbis
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / bitspopup.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #include "bitspopup.h"
23 #include "clip.h"
24 #include "file.h"
25
26
27 BitsPopup::BitsPopup(BC_WindowBase *parent_window,
28         int x,
29         int y,
30         int *output,
31         int use_ulaw,
32         int use_adpcm,
33         int use_float,
34         int use_32linear,
35         int use_8linear)
36 {
37         this->parent_window = parent_window;
38         this->output = output;
39         this->x = x;
40         this->y = y;
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;
46 }
47
48 BitsPopup::~BitsPopup()
49 {
50         delete menu;
51         delete textbox;
52         for(int i = 0; i < bits_items.total; i++)
53                 delete bits_items.values[i];
54 }
55
56 void BitsPopup::create_objects()
57 {
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)));
65
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));
69 }
70
71 int BitsPopup::get_w()
72 {
73         return menu->get_w() + textbox->get_w();
74 }
75
76 int BitsPopup::get_h()
77 {
78         return MAX(menu->get_h(), textbox->get_h());
79 }
80
81 BitsPopupMenu::BitsPopupMenu(BitsPopup *popup, int x, int y)
82  : BC_ListBox(x,
83         y,
84         120,
85         100,
86         LISTBOX_TEXT,
87         &popup->bits_items,
88         0,
89         0,
90         1,
91         0,
92         1)
93 {
94         this->popup = popup;
95 }
96
97 int BitsPopupMenu::handle_event()
98 {
99         popup->textbox->update(get_selection(0, 0)->get_text());
100         popup->textbox->handle_event();
101         return 1;
102 }
103
104 BitsPopupText::BitsPopupText(BitsPopup *popup, int x, int y)
105  : BC_TextBox(x, y, 120, 1, File::bitstostr(*popup->output))
106 {
107         this->popup = popup;
108 }
109
110 int BitsPopupText::handle_event()
111 {
112         *popup->output = File::strtobits(get_text());
113         return 1;
114 }