add 1:1 convert, add es.po: thx sergio, cwdw zoom tweak, add done beep pots, bd forma...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / assetedit.h
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 #ifndef ASSETEDIT_H
23 #define ASSETEDIT_H
24
25 #include "asset.inc"
26 #include "assetedit.inc"
27 #include "awindow.inc"
28 #include "bcdialog.h"
29 #include "bitspopup.inc"
30 #include "browsebutton.h"
31 #include "formatpopup.h"
32 #include "guicast.h"
33 #include "indexable.inc"
34 #include "language.h"
35 #include "mwindow.h"
36 #include "resizetrackthread.inc"
37
38
39 class AssetEdit : public BC_DialogThread
40 {
41 public:
42         AssetEdit(MWindow *mwindow);
43         ~AssetEdit();
44
45         void edit_asset(Indexable *indexable, int x, int y);
46         int set_asset(Indexable *indexable);
47         void handle_done_event(int result);
48         void handle_close_event(int result);
49         BC_Window* new_gui();
50         int window_height();
51
52         Indexable *indexable;
53         MWindow *mwindow;
54         AssetEditWindow *window;
55         int x, y;
56
57 // Changed parameters
58         Asset *changed_params;
59 };
60
61
62
63 // Pcm is the only format users should be able to fix.
64 // All other formats display information about the file in read-only.
65
66 class AssetEditWindow : public BC_Window
67 {
68 public:
69         AssetEditWindow(MWindow *mwindow, AssetEdit *asset_edit);
70         ~AssetEditWindow();
71
72         void create_objects();
73         AssetEditPathText *path_text;
74         AssetEditPath *path_button;
75         AssetEditByteOrderHILO *hilo;
76         AssetEditByteOrderLOHI *lohi;
77         BitsPopup *bitspopup;
78         int allow_edits;
79         MWindow *mwindow;
80         AssetEdit *asset_edit;
81         BC_Title *win_width;
82         BC_Title *win_height;
83         DetailAssetDialog *detail_dialog;
84         void show_info_detail();
85
86 };
87
88
89 class AssetEditPath : public BrowseButton
90 {
91 public:
92         AssetEditPath(MWindow *mwindow,
93                 AssetEditWindow *fwindow,
94                 BC_TextBox *textbox,
95                 int y,
96                 const char *text,
97                 const char *window_title = _(PROGRAM_NAME ": Path"),
98                 const char *window_caption = _("Select a file"));
99         ~AssetEditPath();
100
101         AssetEditWindow *fwindow;
102 };
103
104
105 class AssetEditPathText : public BC_TextBox
106 {
107 public:
108         AssetEditPathText(AssetEditWindow *fwindow, int y);
109         ~AssetEditPathText();
110         int handle_event();
111
112         AssetEditWindow *fwindow;
113 };
114
115
116
117 class AssetEditChannels : public BC_TumbleTextBox
118 {
119 public:
120         AssetEditChannels(AssetEditWindow *fwindow,
121                 char *text, int x, int y);
122
123         int handle_event();
124
125         AssetEditWindow *fwindow;
126 };
127
128 class AssetEditRate : public BC_TextBox
129 {
130 public:
131         AssetEditRate(AssetEditWindow *fwindow,
132                 char *text, int x, int y);
133
134         int handle_event();
135
136         AssetEditWindow *fwindow;
137 };
138
139 class AssetEditFRate : public BC_TextBox
140 {
141 public:
142         AssetEditFRate(AssetEditWindow *fwindow,
143                 char *text, int x, int y);
144
145         int handle_event();
146
147         AssetEditWindow *fwindow;
148 };
149
150 class AssetEditILacemode : public BC_TextBox
151 {
152 public:
153         AssetEditILacemode(AssetEditWindow *fwindow,
154                 const char *text, int x, int y, int w);
155         int handle_event();
156         int thedefault;
157         AssetEditWindow *fwindow;
158 };
159
160 class AssetEditInterlacemodePulldown : public BC_ListBox
161 {
162 public:
163         AssetEditInterlacemodePulldown(MWindow *mwindow,
164                 BC_TextBox *output_text, int *output_value,
165                 ArrayList<BC_ListBoxItem*> *data, int x, int y);
166         int handle_event();
167         char* interlacemode_to_text();
168         MWindow *mwindow;
169         BC_TextBox *output_text;
170         int *output_value;
171 private:
172         char string[BCTEXTLEN];
173 };
174
175 class AssetEditHeader : public BC_TextBox
176 {
177 public:
178         AssetEditHeader(AssetEditWindow *fwindow,
179                 char *text, int x, int y);
180
181         int handle_event();
182
183         AssetEditWindow *fwindow;
184 };
185
186 class AssetEditByteOrderLOHI : public BC_Radial
187 {
188 public:
189         AssetEditByteOrderLOHI(AssetEditWindow *fwindow,
190                 int value, int x, int y);
191
192         int handle_event();
193
194         AssetEditWindow *fwindow;
195 };
196
197 class AssetEditByteOrderHILO : public BC_Radial
198 {
199 public:
200         AssetEditByteOrderHILO(AssetEditWindow *fwindow,
201                 int value, int x, int y);
202
203         int handle_event();
204
205         AssetEditWindow *fwindow;
206 };
207
208 class AssetEditSigned : public BC_CheckBox
209 {
210 public:
211         AssetEditSigned(AssetEditWindow *fwindow,
212                 int value, int x, int y);
213
214         int handle_event();
215
216         AssetEditWindow *fwindow;
217 };
218
219 class DetailAssetWindow : public BC_Window
220 {
221         MWindow *mwindow;
222         Asset *asset;
223         char info[65536];
224         BC_ScrollTextBox *text;
225 public:
226         DetailAssetWindow(MWindow *mwindow,
227                 DetailAssetDialog *detail_dialog, Asset *asset);
228         ~DetailAssetWindow();
229         void create_objects();
230         DetailAssetDialog *detail_dialog;
231 };
232
233 class DetailAssetDialog : public BC_DialogThread
234 {
235         MWindow *mwindow;
236         DetailAssetWindow *dwindow;
237 public:
238         DetailAssetDialog(MWindow *mwindow);
239         ~DetailAssetDialog();
240         void start(Asset *asset, int x, int y);
241         BC_Window* new_gui();
242
243         Asset *asset;
244         int x, y;
245 };
246
247
248 class DetailAssetButton : public BC_GenericButton
249 {
250 public:
251         DetailAssetButton(AssetEditWindow *fwindow, int x, int y);
252         ~DetailAssetButton();
253
254         AssetEditWindow *fwindow;
255         int handle_event();
256 };
257
258 #endif