switch move/swap tracks, add mv trk shortcut, update msg
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / setformat.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 1997-2012 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 "clip.h"
23 #include "cwindow.h"
24 #include "cwindowgui.h"
25 #include "datatype.h"
26 #include "bchash.h"
27 #include "edl.h"
28 #include "edlsession.h"
29 #include "formatpresets.h"
30 #include "language.h"
31 #include "levelwindow.h"
32 #include "levelwindowgui.h"
33 #include "mainerror.h"
34 #include "mainundo.h"
35 #include "mutex.h"
36 #include "mwindow.h"
37 #include "mwindowgui.h"
38 #include "new.h"
39 #include "preferences.h"
40 #include "rotateframe.h"
41 #include "setformat.h"
42 #include "theme.h"
43 #include "vframe.h"
44 #include "vwindow.h"
45 #include "vwindowgui.h"
46
47
48
49 SetFormat::SetFormat(MWindow *mwindow)
50  : BC_MenuItem(_("Format..."), _("Shift-F"), 'F')
51 {
52         set_shift(1);
53         this->mwindow = mwindow;
54         thread = new SetFormatThread(mwindow);
55 }
56
57 SetFormat::~SetFormat()
58 {
59         delete thread;
60 }
61
62 int SetFormat::handle_event()
63 {
64         if(!thread->running())
65         {
66                 thread->start();
67         }
68         else
69         {
70 // window_lock has to be locked but window can't be locked until after
71 // it is known to exist, so we neglect window_lock for now
72                 if(thread->window)
73                 {
74                         thread->window_lock->lock("SetFormat::handle_event");
75                         thread->window->lock_window("SetFormat::handle_event");
76                         thread->window->raise_window();
77                         thread->window->unlock_window();
78                         thread->window_lock->unlock();
79                 }
80         }
81         return 1;
82 }
83
84 SetFormatThread::SetFormatThread(MWindow *mwindow)
85  : Thread(1, 0, 0)
86 {
87         this->mwindow = mwindow;
88         window_lock = new Mutex("SetFormatThread::window_lock");
89         window = 0;
90 }
91
92 SetFormatThread::~SetFormatThread()
93 {
94         if( running() ) {
95                 window->set_done(1);
96                 cancel();
97         }
98         join();
99         delete window_lock;
100 }
101
102 void SetFormatThread::run()
103 {
104         orig_dimension[0] = dimension[0] = mwindow->edl->session->output_w;
105         orig_dimension[1] = dimension[1] = mwindow->edl->session->output_h;
106         auto_aspect = mwindow->defaults->get("AUTOASPECT", 0);
107         constrain_ratio = 0;
108         ratio[0] = ratio[1] = 1;
109
110         new_settings = new EDL;
111         new_settings->create_objects();
112         new_settings->copy_session(mwindow->edl);
113
114 // This locks mwindow, so it must be done outside window_lock
115         int x = mwindow->gui->get_abs_cursor_x(1) - mwindow->theme->setformat_w / 2;
116         int y = mwindow->gui->get_abs_cursor_y(1) - mwindow->theme->setformat_h / 2;
117
118         window_lock->lock("SetFormatThread::run 1");
119         window = new SetFormatWindow(mwindow, this, x, y);
120         window->create_objects();
121         window_lock->unlock();
122
123         int result = window->run_window();
124
125
126         window_lock->lock("SetFormatThread::run 2");
127         delete window;
128         window = 0;
129         window_lock->unlock();
130
131
132         if(!result)
133         {
134                 apply_changes();
135         }
136
137         mwindow->defaults->update("AUTOASPECT", auto_aspect);
138         new_settings->Garbage::remove_user();
139 }
140
141 void SetFormatThread::apply_changes()
142 {
143         double new_samplerate = new_settings->session->sample_rate;
144         double old_samplerate = mwindow->edl->session->sample_rate;
145         double new_framerate = new_settings->session->frame_rate;
146         double old_framerate = mwindow->edl->session->frame_rate;
147         int new_channels = new_settings->session->audio_channels;
148         CLAMP(new_channels, 1, MAXCHANNELS);
149
150
151
152         mwindow->undo->update_undo_before();
153
154         memcpy(&mwindow->preferences->channel_positions[new_channels - 1],
155                 new_settings->session->achannel_positions,
156                 sizeof(mwindow->preferences->channel_positions[new_channels - 1]));
157
158
159         mwindow->edl->copy_session(new_settings, 1);
160         mwindow->edl->session->output_w = dimension[0];
161         mwindow->edl->session->output_h = dimension[1];
162         mwindow->edl->retrack();
163         mwindow->edl->rechannel();
164         mwindow->edl->resample(old_samplerate, new_samplerate, TRACK_AUDIO);
165         mwindow->edl->resample(old_framerate, new_framerate, TRACK_VIDEO);
166         mwindow->save_backup();
167         mwindow->undo->update_undo_after(_("set format"), LOAD_ALL);
168
169         mwindow->resync_guis();
170 }
171
172 void SetFormatThread::update()
173 {
174         window->sample_rate->update(new_settings->session->sample_rate);
175         window->channels->update((int64_t)new_settings->session->audio_channels);
176         window->frame_rate->update((float)new_settings->session->frame_rate);
177
178         auto_aspect = 0;
179         window->auto_aspect->update(0);
180
181         constrain_ratio = 0;
182         dimension[0] = new_settings->session->output_w;
183         window->dimension[0]->update((int64_t)dimension[0]);
184         dimension[1] = new_settings->session->output_h;
185         window->dimension[1]->update((int64_t)dimension[1]);
186
187         ratio[0] = (float)dimension[0] / orig_dimension[0];
188         window->ratio[0]->update(ratio[0]);
189         ratio[1] = (float)dimension[1] / orig_dimension[1];
190         window->ratio[1]->update(ratio[1]);
191
192         window->aspect_w->update(new_settings->session->aspect_w);
193         window->aspect_h->update(new_settings->session->aspect_h);
194         window->interlace_pulldown->update(new_settings->session->interlace_mode);
195         window->color_model->update_value(new_settings->session->color_model);
196
197         window->canvas->draw();
198 }
199
200 void SetFormatThread::update_window()
201 {
202         int i, result, modified_item = 0, dimension_modified = 0, ratio_modified = 0;
203
204         for(i = 0, result = 0; i < 2 && !result; i++)
205         {
206                 if(dimension[i] < 0)
207                 {
208                         dimension[i] *= -1;
209                         result = 1;
210                         modified_item = i;
211                         dimension_modified = 1;
212                 }
213                 if(ratio[i] < 0)
214                 {
215                         ratio[i] *= -1;
216                         result = 1;
217                         modified_item = i;
218                         ratio_modified = 1;
219                 }
220         }
221
222         if(result)
223         {
224                 if(dimension_modified)
225                         ratio[modified_item] = (float)dimension[modified_item] / orig_dimension[modified_item];
226
227                 if(ratio_modified && !constrain_ratio)
228                 {
229                         dimension[modified_item] = (int)(orig_dimension[modified_item] * ratio[modified_item]);
230                         window->dimension[modified_item]->update((int64_t)dimension[modified_item]);
231                 }
232
233                 for(i = 0; i < 2; i++)
234                 {
235                         if(dimension_modified ||
236                                 (i != modified_item && ratio_modified))
237                         {
238                                 if(constrain_ratio) ratio[i] = ratio[modified_item];
239                                 window->ratio[i]->update(ratio[i]);
240                         }
241
242                         if(ratio_modified ||
243                                 (i != modified_item && dimension_modified))
244                         {
245                                 if(constrain_ratio)
246                                 {
247                                         dimension[i] = (int)(orig_dimension[i] * ratio[modified_item]);
248                                         window->dimension[i]->update((int64_t)dimension[i]);
249                                 }
250                         }
251                 }
252         }
253
254         update_aspect();
255 }
256
257 void SetFormatThread::update_aspect()
258 {
259         if(auto_aspect)
260         {
261                 char string[BCTEXTLEN];
262                 MWindow::create_aspect_ratio(new_settings->session->aspect_w,
263                         new_settings->session->aspect_h,
264                         dimension[0],
265                         dimension[1]);
266                 sprintf(string, "%.02f", new_settings->session->aspect_w);
267                 window->aspect_w->update(string);
268                 sprintf(string, "%.02f", new_settings->session->aspect_h);
269                 window->aspect_h->update(string);
270         }
271 }
272
273
274 SetFormatWindow::SetFormatWindow(MWindow *mwindow,
275         SetFormatThread *thread, int x, int y)
276  : BC_Window(_(PROGRAM_NAME ": Set Format"), x, y,
277         mwindow->theme->setformat_w, mwindow->theme->setformat_h,
278         -1, -1, 0, 0, 1)
279 {
280         this->mwindow = mwindow;
281         this->thread = thread;
282         presets = 0;
283 }
284 SetFormatWindow::~SetFormatWindow()
285 {
286         delete presets;
287 }
288
289 void SetFormatWindow::create_objects()
290 {
291         lock_window("SetFormatWindow::create_objects");
292         int x = xS(10), y = mwindow->theme->setformat_y1;
293         BC_TextBox *textbox;
294         BC_Title *title;
295         mwindow->theme->draw_setformat_bg(this);
296
297         presets = new SetFormatPresets(mwindow, this, x, y);
298         presets->create_objects();
299         x = presets->x; //  y = presets->y;
300         y = mwindow->theme->setformat_y2;
301
302         add_subwindow(new BC_Title(mwindow->theme->setformat_x1, y,
303                 _("Audio"), LARGEFONT));
304         y = mwindow->theme->setformat_y3;
305
306         add_subwindow(new BC_Title(mwindow->theme->setformat_x1, y,
307                 _("Samplerate:")));
308         add_subwindow(sample_rate = new SetSampleRateTextBox(thread,
309                 mwindow->theme->setformat_x2,
310                 y));
311         add_subwindow(new SampleRatePulldown(mwindow, sample_rate,
312                 mwindow->theme->setformat_x2 + sample_rate->get_w(), y));
313
314         y += mwindow->theme->setformat_margin;
315         add_subwindow(new BC_Title(mwindow->theme->setformat_x1, y,
316                 _("Channels:")));
317         add_subwindow(channels = new SetChannelsTextBox(thread,
318                 mwindow->theme->setformat_x2, y));
319         add_subwindow(new BC_ITumbler(channels, 0, MAXCHANNELS,
320                 mwindow->theme->setformat_x2 + channels->get_w(), y));
321
322         y += mwindow->theme->setformat_margin;
323         add_subwindow(new BC_Title(mwindow->theme->setformat_x1, y,
324                 _("Channel positions:")));
325         y += mwindow->theme->setformat_margin;
326         add_subwindow(channels_reset = new SetChannelsReset(thread,
327                 mwindow->theme->setformat_x1, y,
328                 _("Reset")));
329         add_subwindow(canvas = new SetChannelsCanvas(mwindow,
330                 thread,
331                 mwindow->theme->setformat_channels_x,
332                 mwindow->theme->setformat_channels_y,
333                 mwindow->theme->setformat_channels_w,
334                 mwindow->theme->setformat_channels_h));
335         canvas->draw();
336
337
338
339         y = mwindow->theme->setformat_y2;
340         add_subwindow(new BC_Title(mwindow->theme->setformat_x3,
341                 y,
342                 _("Video"),
343                 LARGEFONT));
344
345         y = mwindow->theme->setformat_y3;
346         add_subwindow(new BC_Title(mwindow->theme->setformat_x3,
347                 y,
348                 _("Frame rate:")));
349         add_subwindow(frame_rate = new SetFrameRateTextBox(thread,
350                 mwindow->theme->setformat_x4,
351                 y));
352         add_subwindow(new FrameRatePulldown(mwindow,
353                 frame_rate,
354                 mwindow->theme->setformat_x4 + frame_rate->get_w(),
355                 y));
356
357         y += mwindow->theme->setformat_margin;
358         add_subwindow(new BC_Title(mwindow->theme->setformat_x3,
359                 y,
360                 _("Canvas size:")));
361
362         y += mwindow->theme->setformat_margin;
363         add_subwindow(title = new BC_Title(mwindow->theme->setformat_x3, y, _("Width:")));
364         add_subwindow(dimension[0] = new ScaleSizeText(mwindow->theme->setformat_x4,
365                 y,
366                 thread,
367                 &(thread->dimension[0])));
368
369         y += mwindow->theme->setformat_margin;
370         add_subwindow(new BC_Title(mwindow->theme->setformat_x3, y, _("Height:")));
371         add_subwindow(dimension[1] = new ScaleSizeText(mwindow->theme->setformat_x4,
372                 y,
373                 thread,
374                 &(thread->dimension[1])));
375
376         x = mwindow->theme->setformat_x4 + dimension[0]->get_w();
377         FrameSizePulldown *pulldown;
378         add_subwindow(pulldown = new FrameSizePulldown(mwindow->theme,
379                 dimension[0],
380                 dimension[1],
381                 x,
382                 y - mwindow->theme->setformat_margin));
383
384         add_subwindow(new FormatSwapExtents(mwindow,
385                 thread,
386                 this,
387                 x + pulldown->get_w() + 5,
388                 y - mwindow->theme->setformat_margin));
389
390         y += mwindow->theme->setformat_margin;
391         add_subwindow(new BC_Title(mwindow->theme->setformat_x3,
392                 y,
393                 _("W Ratio:")));
394         add_subwindow(ratio[0] = new ScaleRatioText(mwindow->theme->setformat_x4,
395                 y,
396                 thread,
397                 &(thread->ratio[0])));
398
399         y += mwindow->theme->setformat_margin;
400         add_subwindow(new BC_Title(mwindow->theme->setformat_x3,
401                 y,
402                 _("H Ratio:")));
403         add_subwindow(ratio[1] = new ScaleRatioText(mwindow->theme->setformat_x4,
404                 y,
405                 thread,
406                 &(thread->ratio[1])));
407
408         y += mwindow->theme->setformat_margin;
409         add_subwindow(new BC_Title(mwindow->theme->setformat_x3,
410                 y,
411                 _("Color model:")));
412         x = mwindow->theme->setformat_x4;
413         add_subwindow(textbox = new BC_TextBox(x, y, xS(100), 1, ""));
414         x += textbox->get_w();
415         add_subwindow(color_model = new ColormodelPulldown(mwindow, textbox,
416                 &thread->new_settings->session->color_model, x, y));
417
418         y += mwindow->theme->setformat_margin;
419         add_subwindow(new BC_Title(mwindow->theme->setformat_x3,
420                 y,
421                 _("Aspect ratio:")));
422         y += mwindow->theme->setformat_margin;
423         x = mwindow->theme->setformat_x3;
424         add_subwindow(aspect_w = new ScaleAspectText(x, y, thread,
425                 &(thread->new_settings->session->aspect_w)));
426         x += aspect_w->get_w() + xS(5);
427         add_subwindow(new BC_Title(x, y, ":"));
428         x += xS(10);
429         add_subwindow(aspect_h = new ScaleAspectText(x,
430                 y,
431                 thread,
432                 &(thread->new_settings->session->aspect_h)));
433         x += aspect_h->get_w();
434         add_subwindow(new AspectPulldown(mwindow,
435                 aspect_w,
436                 aspect_h,
437                 x,
438                 y));
439         x += xS(30);
440         add_subwindow(auto_aspect = new ScaleAspectAuto(x, y, thread));
441         y += mwindow->theme->setformat_margin;
442
443         // --------------------
444         add_subwindow(new BC_Title(mwindow->theme->setformat_x3,
445                 y,
446                 _("Interlace mode:")));
447         add_subwindow(textbox = new BC_TextBox(mwindow->theme->setformat_x4, y,
448                 xS(140), 1, ""));
449         add_subwindow(interlace_pulldown = new InterlacemodePulldown(mwindow,
450                 textbox, &(thread->new_settings->session->interlace_mode),
451                 (ArrayList<BC_ListBoxItem*>*)&mwindow->interlace_project_modes,
452                 mwindow->theme->setformat_x4 + textbox->get_w(), y));
453         y += mwindow->theme->setformat_margin;
454
455         BC_OKTextButton *ok;
456         BC_CancelTextButton *cancel;
457         add_subwindow(ok = new BC_OKTextButton(this));
458         add_subwindow(cancel = new BC_CancelTextButton(this));
459         add_subwindow(new SetFormatApply((ok->get_x() + cancel->get_x()) / 2,
460                 ok->get_y(), thread));
461         flash();
462         show_window();
463         unlock_window();
464 }
465
466 const char* SetFormatWindow::get_preset_text()
467 {
468         return "";
469 }
470
471
472 SetFormatPresets::SetFormatPresets(MWindow *mwindow,
473         SetFormatWindow *gui,
474         int x,
475         int y)
476  : FormatPresets(mwindow, 0, gui, x, y)
477 {
478
479 }
480
481 SetFormatPresets::~SetFormatPresets()
482 {
483 }
484
485 int SetFormatPresets::handle_event()
486 {
487         format_gui->thread->update();
488         return format_gui->channels_reset->handle_event();
489 }
490
491 EDL* SetFormatPresets::get_edl()
492 {
493         return format_gui->thread->new_settings;
494 }
495
496
497
498 SetSampleRateTextBox::SetSampleRateTextBox(SetFormatThread *thread, int x, int y)
499  : BC_TextBox(x, y, xS(100), 1, (int64_t)thread->new_settings->session->sample_rate)
500 {
501         this->thread = thread;
502 }
503 int SetSampleRateTextBox::handle_event()
504 {
505         thread->new_settings->session->sample_rate = CLIP(atol(get_text()), 1, 1000000);
506         return 1;
507 }
508
509 SetChannelsTextBox::SetChannelsTextBox(SetFormatThread *thread, int x, int y)
510  : BC_TextBox(x, y, xS(100), 1, thread->new_settings->session->audio_channels)
511 {
512         this->thread = thread;
513 }
514 int SetChannelsTextBox::handle_event()
515 {
516         int new_channels = CLIP(atoi(get_text()), 0, MAXCHANNELS);
517         thread->new_settings->session->audio_channels = new_channels;
518         if(new_channels > 0) {
519                 memcpy(thread->new_settings->session->achannel_positions,
520                         &thread->mwindow->preferences->channel_positions[new_channels - 1],
521                         sizeof(thread->new_settings->session->achannel_positions));
522         }
523
524         thread->window->canvas->draw();
525         return 1;
526 }
527
528 SetChannelsReset::SetChannelsReset(SetFormatThread *thread, int x, int y, const char *text)
529  : BC_GenericButton(x, y, text)
530 {
531         this->thread = thread;
532 }
533
534 int SetChannelsReset::handle_event()
535 {
536         int channels = thread->new_settings->session->audio_channels;
537         int *achannels = thread->new_settings->session->achannel_positions;
538         for( int i=0; i<MAX_CHANNELS; ++i )
539                 achannels[i] = default_audio_channel_position(i, channels);
540         thread->window->canvas->draw();
541         return 1;
542 }
543
544 SetChannelsCanvas::SetChannelsCanvas(MWindow *mwindow,
545         SetFormatThread *thread, int x, int y, int w, int h)
546  : BC_SubWindow(x, y, w, h)
547 {
548         this->thread = thread;
549         this->mwindow = mwindow;
550         active_channel = -1;
551         box_r = mwindow->theme->channel_position_data->get_w() / 2;
552         temp_picon = new VFrame(
553                 mwindow->theme->channel_position_data->get_w(),
554                 mwindow->theme->channel_position_data->get_h(),
555                 mwindow->theme->channel_position_data->get_color_model(),
556                 0);
557         rotater = new RotateFrame(mwindow->preferences->processors,
558                 mwindow->theme->channel_position_data->get_w(),
559                 mwindow->theme->channel_position_data->get_h());
560 }
561 SetChannelsCanvas::~SetChannelsCanvas()
562 {
563         delete temp_picon;
564         delete rotater;
565 }
566
567 int SetChannelsCanvas::draw(int angle)
568 {
569         set_color(RED);
570         //int real_w = get_w() - box_r * 2;
571         //int real_h = get_h() - box_r * 2;
572         //int real_x = box_r;
573         //int real_y = box_r;
574
575         draw_top_background(get_top_level(), 0, 0, get_w(), get_h());
576 //      draw_vframe(mwindow->theme->channel_bg_data, 0, 0);
577
578
579
580
581         int x, y, w, h;
582         char string[32];
583         set_color(mwindow->theme->channel_position_color);
584         for(int i = 0; i < thread->new_settings->session->audio_channels; i++)
585         {
586                 get_dimensions(thread->new_settings->session->achannel_positions[i],
587                         x, y, w, h);
588                 double rotate_angle = thread->new_settings->session->achannel_positions[i];
589                 rotate_angle = -rotate_angle;
590                 while(rotate_angle < 0) rotate_angle += 360;
591                 rotater->rotate(temp_picon,
592                         mwindow->theme->channel_position_data,
593                         rotate_angle,
594                         0);
595
596                 BC_Pixmap temp_pixmap(this,
597                         temp_picon,
598                         PIXMAP_ALPHA,
599                         0);
600                 draw_pixmap(&temp_pixmap, x, y);
601                 sprintf(string, "%d", i + 1);
602                 draw_text(x + 2, y + box_r * 2 - 2, string);
603         }
604
605         if(angle > -1)
606         {
607                 sprintf(string, _("%d degrees"), angle);
608                 draw_text(this->get_w() / 2 - 40, this->get_h() / 2, string);
609         }
610
611         flash();
612         return 0;
613 }
614
615 int SetChannelsCanvas::get_dimensions(int channel_position,
616                 int &x, int &y, int &w, int &h)
617 {
618         int xs10 = xS(10), ys10 = yS(10);
619         int real_w = this->get_w() - box_r * 2 - xs10;
620         int real_h = this->get_h() - box_r * 2 - ys10;
621         float corrected_position = channel_position;
622         if(corrected_position < 0) corrected_position += 360;
623         Units::polar_to_xy((float)corrected_position, real_w / 2, x, y);
624         x += real_w / 2 + xs10 / 2;
625         y += real_h / 2 + ys10 / 2;
626         w = box_r * 2;
627         h = box_r * 2;
628         return 0;
629 }
630
631 int SetChannelsCanvas::button_press_event()
632 {
633         if(!cursor_inside()) return 0;
634 // get active channel
635         for( int i = 0; i < thread->new_settings->session->audio_channels; i++ ) {
636                 int x, y, w, h;
637                 get_dimensions(thread->new_settings->session->achannel_positions[i], x, y, w, h);
638                 if( get_cursor_x() > x && get_cursor_y() > y &&
639                     get_cursor_x() < x + w && get_cursor_y() < y + h ) {
640                         active_channel = i;
641                         degree_offset = (int)Units::xy_to_polar(get_cursor_x() - this->get_w() / 2, get_cursor_y() - this->get_h() / 2);
642                         degree_offset += 90;
643                         if(degree_offset >= 360) degree_offset -= 360;
644                         degree_offset -= thread->new_settings->session->achannel_positions[i];
645                         draw(thread->new_settings->session->achannel_positions[i]);
646                         return 1;
647                 }
648         }
649         return 0;
650 }
651
652 int SetChannelsCanvas::button_release_event()
653 {
654         if(active_channel >= 0)
655         {
656                 active_channel = -1;
657                 draw(-1);
658                 return 1;
659         }
660         return 0;
661 }
662
663 int SetChannelsCanvas::cursor_motion_event()
664 {
665         if(active_channel >= 0)
666         {
667 // get degrees of new channel
668                 int new_d;
669                 new_d = (int)Units::xy_to_polar(get_cursor_x() - this->get_w() / 2, get_cursor_y() - this->get_h() / 2);
670                 new_d += 90;
671                 new_d -= degree_offset;
672
673                 while(new_d >= 360) new_d -= 360;
674                 while(new_d < 0) new_d += 360;
675
676                 if(thread->new_settings->session->achannel_positions[active_channel] != new_d)
677                 {
678                         thread->new_settings->session->achannel_positions[active_channel] = new_d;
679                         int new_channels = thread->new_settings->session->audio_channels;
680                         memcpy(&thread->mwindow->preferences->channel_positions[new_channels - 1],
681                                 thread->new_settings->session->achannel_positions,
682                                 sizeof(thread->mwindow->preferences->channel_positions[new_channels - 1]));
683                         draw(thread->new_settings->session->achannel_positions[active_channel]);
684                 }
685                 return 1;
686         }
687         return 0;
688 }
689
690
691 SetFrameRateTextBox::SetFrameRateTextBox(SetFormatThread *thread, int x, int y)
692  : BC_TextBox(x, y, xS(100), 1, (float)thread->new_settings->session->frame_rate)
693 {
694         this->thread = thread;
695 }
696
697 int SetFrameRateTextBox::handle_event()
698 {
699         thread->new_settings->session->frame_rate = Units::atoframerate(get_text());
700         return 1;
701 }
702
703
704 //
705 // SetVChannels::SetVChannels(SetFormatThread *thread, int x, int y)
706 //  : BC_TextBox(x, y, xS(100), 1, thread->channels)
707 // {
708 //      this->thread = thread;
709 // }
710 // int SetVChannels::handle_event()
711 // {
712 //      thread->channels = atol(get_text());
713 //      return 1;
714 // }
715
716
717
718
719 ScaleSizeText::ScaleSizeText(int x, int y, SetFormatThread *thread, int *output)
720  : BC_TextBox(x, y, xS(100), 1, *output)
721 {
722         this->thread = thread;
723         this->output = output;
724 }
725 ScaleSizeText::~ScaleSizeText()
726 {
727 }
728 int ScaleSizeText::handle_event()
729 {
730         *output = atol(get_text());
731         *output /= 2;  *output *= 2;
732         if(*output <= 0) *output = 2;
733         if(*output > 10000) *output = 10000;
734         *output *= -1;
735         thread->update_window();
736         return 1;
737 }
738
739
740
741 ScaleRatioText::ScaleRatioText(int x,
742         int y,
743         SetFormatThread *thread,
744         float *output)
745  : BC_TextBox(x, y, xS(100), 1, *output)
746 {
747         this->thread = thread;
748         this->output = output;
749 }
750 ScaleRatioText::~ScaleRatioText()
751 {
752 }
753 int ScaleRatioText::handle_event()
754 {
755         *output = atof(get_text());
756         //if(*output <= 0) *output = 1;
757         if(*output > 10000) *output = 10000;
758         if(*output < -10000) *output = -10000;
759         *output *= -1;
760         thread->update_window();
761         return 1;
762 }
763
764
765 ScaleAspectAuto::ScaleAspectAuto(int x, int y, SetFormatThread *thread)
766  : BC_CheckBox(x, y, thread->auto_aspect, _("Auto"))
767 {
768         this->thread = thread;
769 }
770
771 ScaleAspectAuto::~ScaleAspectAuto()
772 {
773 }
774
775 int ScaleAspectAuto::handle_event()
776 {
777         thread->auto_aspect = get_value();
778         thread->update_aspect();
779         return 1;
780 }
781
782 ScaleAspectText::ScaleAspectText(int x, int y, SetFormatThread *thread, float *output)
783  : BC_TextBox(x, y, xS(70), 1, *output)
784 {
785         this->output = output;
786         this->thread = thread;
787 }
788 ScaleAspectText::~ScaleAspectText()
789 {
790 }
791
792 int ScaleAspectText::handle_event()
793 {
794         *output = atof(get_text());
795         return 1;
796 }
797
798
799 SetFormatApply::SetFormatApply(int x, int y, SetFormatThread *thread)
800  : BC_GenericButton(x, y, _("Apply"))
801 {
802         this->thread = thread;
803 }
804
805 int SetFormatApply::handle_event()
806 {
807         thread->apply_changes();
808         return 1;
809 }
810
811
812 FormatSwapExtents::FormatSwapExtents(MWindow *mwindow,
813         SetFormatThread *thread,
814         SetFormatWindow *gui,
815         int x,
816         int y)
817  : BC_Button(x, y, mwindow->theme->get_image_set("swap_extents"))
818 {
819         this->mwindow = mwindow;
820         this->thread = thread;
821         this->gui = gui;
822         set_tooltip(_("Swap dimensions"));
823 }
824
825 int FormatSwapExtents::handle_event()
826 {
827         int w = thread->dimension[0];
828         int h = thread->dimension[1];
829         thread->dimension[0] = -h;
830         gui->dimension[0]->update((int64_t)h);
831         gui->dimension[1]->update((int64_t)w);
832         thread->update_window();
833         thread->dimension[1] = -w;
834         thread->update_window();
835         return 1;
836 }
837