3 * Copyright (C) 2014 Adam Williams <broadcast at earthling dot net>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "automation.h"
22 #include "bcdisplayinfo.h"
25 #include "crikeywindow.h"
28 #include "cwindowgui.h"
30 #include "edlsession.h"
32 #include "mainerror.h"
35 #include "pluginserver.h"
39 #define COLOR_W xS(50)
40 #define COLOR_H yS(30)
42 CriKeyNum::CriKeyNum(CriKeyWindow *gui, int x, int y, float output)
43 : BC_TumbleTextBox(gui, output, -32767.0f, 32767.0f, x, y, xS(120))
50 CriKeyNum::~CriKeyNum()
54 int CriKeyPointX::handle_event()
56 if( !CriKeyNum::handle_event() ) return 0;
57 CriKeyPointList *point_list = gui->point_list;
58 int hot_point = point_list->get_selection_number(0, 0);
59 CriKeyPoints &points = gui->plugin->config.points;
60 int sz = points.size();
61 if( hot_point >= 0 && hot_point < sz ) {
62 float v = atof(get_text());
63 points[hot_point]->x = v;
64 point_list->set_point(hot_point, PT_X, v);
66 point_list->update_list(hot_point);
67 gui->send_configure_change();
70 int CriKeyPointY::handle_event()
72 if( !CriKeyNum::handle_event() ) return 0;
73 CriKeyPointList *point_list = gui->point_list;
74 int hot_point = point_list->get_selection_number(0, 0);
75 CriKeyPoints &points = gui->plugin->config.points;
76 int sz = points.size();
77 if( hot_point >= 0 && hot_point < sz ) {
78 float v = atof(get_text());
79 points[hot_point]->y = v;
80 point_list->set_point(hot_point, PT_Y, v);
82 point_list->update_list(hot_point);
83 gui->send_configure_change();
87 int CriKeyDrawModeItem::handle_event()
89 ((CriKeyDrawMode *)get_popup_menu())->update(id);
92 CriKeyDrawMode::CriKeyDrawMode(CriKeyWindow *gui, int x, int y)
93 : BC_PopupMenu(x, y, xS(100), "", 1)
96 draw_modes[DRAW_ALPHA] = _("Alpha");
97 draw_modes[DRAW_EDGE] = _("Edge");
98 draw_modes[DRAW_MASK] = _("Mask");
101 void CriKeyDrawMode::create_objects()
103 for( int i=0; i<DRAW_MODES; ++i )
104 add_item(new CriKeyDrawModeItem(draw_modes[i], i));
105 update(gui->plugin->config.draw_mode, 0);
107 void CriKeyDrawMode::update(int mode, int send)
109 if( this->mode == mode ) return;
111 set_text(draw_modes[mode]);
112 gui->plugin->config.draw_mode = mode;
113 if( send ) gui->send_configure_change();
117 CriKeyWindow::CriKeyWindow(CriKey *plugin)
118 : PluginClientWindow(plugin, xS(380), yS(400), xS(380), yS(400), 0)
120 this->plugin = plugin;
121 this->title_x = 0; this->point_x = 0;
122 this->title_y = 0; this->point_y = 0;
123 this->new_point = 0; this->del_point = 0;
124 this->point_up = 0; this->point_dn = 0;
125 this->drag = 0; this->dragging = 0;
126 this->last_x = 0; this->last_y = 0;
127 this->point_list = 0; this->pending_config = 0;
130 CriKeyWindow::~CriKeyWindow()
136 void CriKeyWindow::create_objects()
138 int xs10 = xS(10), xs32 = xS(32);
139 int ys5 = yS(5), ys10 = yS(10);
141 int margin = plugin->get_theme()->widget_border;
143 add_subwindow(title = new BC_Title(x, y+ys5, _("Draw mode:")));
144 int x1 = x + title->get_w() + xs10 + margin;
145 add_subwindow(draw_mode = new CriKeyDrawMode(this, x1, y));
146 draw_mode->create_objects();
147 y += draw_mode->get_h() + ys10 + margin;
149 CriKeyPoint *pt = plugin->config.points[plugin->config.selected];
150 add_subwindow(title_x = new BC_Title(x, y, _("X:")));
151 x1 = x + title_x->get_w() + margin;
152 point_x = new CriKeyPointX(this, x1, y, pt->x);
153 point_x->create_objects();
154 x1 += point_x->get_w() + margin;
155 add_subwindow(new_point = new CriKeyNewPoint(this, plugin, x1, y));
156 x1 += new_point->get_w() + margin;
157 add_subwindow(point_up = new CriKeyPointUp(this, x1, y));
158 y += point_x->get_h() + margin;
159 add_subwindow(title_y = new BC_Title(x, y, _("Y:")));
160 x1 = x + title_y->get_w() + margin;
161 point_y = new CriKeyPointY(this, x1, y, pt->y);
162 point_y->create_objects();
163 x1 += point_y->get_w() + margin;
164 add_subwindow(del_point = new CriKeyDelPoint(this, plugin, x1, y));
165 x1 += del_point->get_w() + margin;
166 add_subwindow(point_dn = new CriKeyPointDn(this, x1, y));
167 y += point_y->get_h() + margin + ys10;
168 add_subwindow(title = new BC_Title(x, y, _("Threshold:")));
169 y += title->get_h() + margin;
170 add_subwindow(threshold = new CriKeyThreshold(this, x, y, get_w() - x * 2));
171 y += threshold->get_h() + margin;
173 add_subwindow(drag = new CriKeyDrag(this, x, y));
174 if( plugin->config.drag ) {
175 if( !grab(plugin->server->mwindow->cwindow->gui) )
176 eprintf("drag enabled, but compositor already grabbed\n");
178 x1 = x + drag->get_w() + margin + xs32;
179 add_subwindow(reset = new CriKeyReset(this, plugin, x1, y+yS(3)));
180 y += drag->get_h() + margin;
182 add_subwindow(point_list = new CriKeyPointList(this, plugin, x, y));
183 point_list->update(plugin->config.selected);
185 y += point_list->get_h() + ys10;
186 add_subwindow(notes = new BC_Title(x, y,
187 _("Right click in composer: create new point\n"
188 "Shift-left click in Enable field:\n"
189 " if any off, turns all on\n"
190 " if all on, turns rest off.")));
194 void CriKeyWindow::send_configure_change()
197 plugin->send_configure_change();
200 int CriKeyWindow::grab_event(XEvent *event)
202 int ret = do_grab_event(event);
203 if( pending_config && !grab_event_count() )
204 send_configure_change();
208 int CriKeyWindow::do_grab_event(XEvent *event)
210 switch( event->type ) {
211 case ButtonPress: break;
212 case ButtonRelease: break;
213 case MotionNotify: break;
218 MWindow *mwindow = plugin->server->mwindow;
219 CWindowGUI *cwindow_gui = mwindow->cwindow->gui;
220 CWindowCanvas *canvas = cwindow_gui->canvas;
221 int cursor_x, cursor_y;
222 cwindow_gui->get_relative_cursor(cursor_x, cursor_y);
223 float output_x = cursor_x - canvas->view_x;
224 float output_y = cursor_y - canvas->view_y;
227 if( output_x < 0 || output_x >= canvas->view_w ||
228 output_y < 0 || output_y >= canvas->view_h )
232 switch( event->type ) {
234 if( dragging ) return 0;
235 if( event->xbutton.button == WHEEL_UP ) return threshold->wheel_event(1);
236 if( event->xbutton.button == WHEEL_DOWN ) return threshold->wheel_event(-1);
237 dragging = event->xbutton.state & ShiftMask ? -1 : 1;
240 if( !dragging ) return 0;
244 if( !dragging ) return 0;
250 float track_x, track_y;
251 canvas->canvas_to_output(mwindow->edl, 0, output_x, output_y);
252 plugin->output_to_track(output_x, output_y, track_x, track_y);
253 point_x->update((int64_t)track_x);
254 point_y->update((int64_t)track_y);
255 CriKeyPoints &points = plugin->config.points;
258 switch( event->type ) {
260 int button_no = event->xbutton.button;
262 if( button_no == RIGHT_BUTTON ) {
263 hot_point = plugin->new_point();
264 CriKeyPoint *pt = points[hot_point];
265 pt->x = track_x; pt->y = track_y;
266 point_list->update(hot_point);
269 int sz = points.size();
270 if( hot_point < 0 && sz > 0 ) {
271 CriKeyPoint *pt = points[hot_point=0];
272 double dist = DISTANCE(track_x,track_y, pt->x,pt->y);
273 for( int i=1; i<sz; ++i ) {
275 double d = DISTANCE(track_x,track_y, pt->x,pt->y);
276 if( d >= dist ) continue;
277 dist = d; hot_point = i;
279 pt = points[hot_point];
281 plugin->track_to_output(pt->x, pt->y, cx, cy);
282 canvas->output_to_canvas(mwindow->edl, 0, cx, cy);
283 cx += canvas->view_x; cy += canvas->view_y;
284 dist = DISTANCE(cx,cy, cursor_x,cursor_y);
285 if( dist >= HANDLE_W )
288 if( hot_point >= 0 && sz > 0 ) {
289 CriKeyPoint *pt = points[hot_point];
290 point_list->set_point(hot_point, PT_X, pt->x = track_x);
291 point_list->set_point(hot_point, PT_Y, pt->y = track_y);
292 for( int i=0; i<sz; ++i ) {
294 pt->e = i==hot_point ? !pt->e : 0;
295 point_list->set_point(i, PT_E, pt->e ? "*" : "");
297 point_list->update_list(hot_point);
301 int hot_point = point_list->get_selection_number(0, 0);
302 if( hot_point >= 0 && hot_point < points.size() ) {
303 CriKeyPoint *pt = points[hot_point];
304 if( pt->x == track_x && pt->y == track_y ) break;
305 point_list->set_point(hot_point, PT_X, pt->x = track_x);
306 point_list->set_point(hot_point, PT_Y, pt->y = track_y);
307 point_x->update(pt->x);
308 point_y->update(pt->y);
309 point_list->update_list(hot_point);
315 switch( event->type ) {
317 float dx = track_x - last_x, dy = track_y - last_y;
318 int sz = points.size();
319 for( int i=0; i<sz; ++i ) {
320 CriKeyPoint *pt = points[i];
321 point_list->set_point(i, PT_X, pt->x += dx);
322 point_list->set_point(i, PT_Y, pt->y += dy);
324 int hot_point = point_list->get_selection_number(0, 0);
325 if( hot_point >= 0 && hot_point < sz ) {
326 CriKeyPoint *pt = points[hot_point];
327 point_x->update(pt->x);
328 point_y->update(pt->y);
329 point_list->update_list(hot_point);
335 last_x = track_x; last_y = track_y;
340 void CriKeyWindow::done_event(int result)
342 ungrab(client->server->mwindow->cwindow->gui);
345 CriKeyPointList::CriKeyPointList(CriKeyWindow *gui, CriKey *plugin, int x, int y)
346 : BC_ListBox(x, y, xS(360), yS(130), LISTBOX_TEXT)
349 this->plugin = plugin;
350 titles[PT_E] = _("E"); widths[PT_E] = xS(50);
351 titles[PT_X] = _("X"); widths[PT_X] = xS(90);
352 titles[PT_Y] = _("Y"); widths[PT_Y] = xS(90);
353 titles[PT_T] = _("T"); widths[PT_T] = xS(70);
354 titles[PT_TAG] = _("Tag"); widths[PT_TAG] = xS(50);
356 CriKeyPointList::~CriKeyPointList()
360 void CriKeyPointList::clear()
362 for( int i=PT_SZ; --i>=0; )
363 cols[i].remove_all_objects();
366 int CriKeyPointList::column_resize_event()
368 for( int i=PT_SZ; --i>=0; )
369 widths[i] = get_column_width(i);
373 int CriKeyPointList::handle_event()
375 int hot_point = get_selection_number(0, 0);
376 const char *x_text = "", *y_text = "";
377 float t = plugin->config.threshold;
378 CriKeyPoints &points = plugin->config.points;
380 int sz = points.size();
381 if( hot_point >= 0 && sz > 0 ) {
382 if( get_cursor_x() < widths[0] ) {
384 int all_on = points[0]->e;
385 for( int i=1; i<sz && all_on; ++i ) all_on = points[i]->e;
386 int e = !all_on ? 1 : 0;
387 for( int i=0; i<sz; ++i ) points[i]->e = e;
388 points[hot_point]->e = 1;
391 points[hot_point]->e = !points[hot_point]->e;
393 x_text = gui->point_list->cols[PT_X].get(hot_point)->get_text();
394 y_text = gui->point_list->cols[PT_Y].get(hot_point)->get_text();
395 t = points[hot_point]->t;
397 gui->point_x->update(x_text);
398 gui->point_y->update(y_text);
399 gui->threshold->update(t);
401 gui->send_configure_change();
405 int CriKeyPointList::selection_changed()
411 void CriKeyPointList::new_point(const char *ep, const char *xp, const char *yp,
412 const char *tp, const char *tag)
414 cols[PT_E].append(new BC_ListBoxItem(ep));
415 cols[PT_X].append(new BC_ListBoxItem(xp));
416 cols[PT_Y].append(new BC_ListBoxItem(yp));
417 cols[PT_T].append(new BC_ListBoxItem(tp));
418 cols[PT_TAG].append(new BC_ListBoxItem(tag));
421 void CriKeyPointList::del_point(int i)
423 for( int sz1=cols[0].size()-1, c=PT_SZ; --c>=0; )
424 cols[c].remove_object_number(sz1-i);
427 void CriKeyPointList::set_point(int i, int c, float v)
429 char s[BCSTRLEN]; sprintf(s,"%0.4f",v);
432 void CriKeyPointList::set_point(int i, int c, const char *cp)
434 cols[c].get(i)->set_text(cp);
437 int CriKeyPointList::set_selected(int k)
439 CriKeyPoints &points = plugin->config.points;
440 int sz = points.size();
443 for( int i=0; i<sz; ++i ) points[i]->e = 0;
445 update_selection(&cols[0], k);
448 void CriKeyPointList::update_list(int k)
450 int xpos = get_xposition(), ypos = get_yposition();
451 if( k < 0 ) k = get_selection_number(0, 0);
452 update_selection(&cols[0], k);
453 BC_ListBox::update(&cols[0], &titles[0],&widths[0],PT_SZ, xpos,ypos,k);
456 void CriKeyPointList::update(int k)
459 CriKeyPoints &points = plugin->config.points;
460 int sz = points.size();
461 for( int i=0; i<sz; ++i ) {
462 CriKeyPoint *pt = points[i];
463 char etxt[BCSTRLEN]; sprintf(etxt,"%s", pt->e ? "*" : "");
464 char xtxt[BCSTRLEN]; sprintf(xtxt,"%0.4f", pt->x);
465 char ytxt[BCSTRLEN]; sprintf(ytxt,"%0.4f", pt->y);
466 char ttxt[BCSTRLEN]; sprintf(ttxt,"%0.4f", pt->t);
467 char ttag[BCSTRLEN]; sprintf(ttag,"%d", pt->tag);
468 new_point(etxt, xtxt, ytxt, ttxt, ttag);
470 if( k >= 0 && k < sz ) {
471 gui->point_x->update(gui->point_list->cols[PT_X].get(k)->get_text());
472 gui->point_y->update(gui->point_list->cols[PT_Y].get(k)->get_text());
473 plugin->config.selected = k;
479 void CriKeyWindow::update_gui()
481 draw_mode->update(plugin->config.draw_mode);
482 threshold->update(plugin->config.threshold);
483 drag->update(plugin->config.drag);
484 point_list->update(-1);
488 CriKeyThreshold::CriKeyThreshold(CriKeyWindow *gui, int x, int y, int w)
489 : BC_FSlider(x, y, 0, w, w, 0, 1, gui->plugin->config.threshold, 0)
492 set_precision(0.005);
493 set_pagination(0.01, 0.1);
496 int CriKeyThreshold::wheel_event(int v)
498 if( v > 0 ) increase_value();
499 else if( v < 0 ) decrease_value();
505 int CriKeyThreshold::handle_event()
507 float v = get_value();
508 gui->plugin->config.threshold = v;
509 int hot_point = gui->point_list->get_selection_number(0, 0);
510 if( hot_point >= 0 ) {
511 CriKeyPoints &points = gui->plugin->config.points;
512 CriKeyPoint *pt = points[hot_point];
513 pt->t = v; pt->e = 1;
514 gui->point_list->update(hot_point);
516 gui->send_configure_change();
521 CriKeyPointUp::CriKeyPointUp(CriKeyWindow *gui, int x, int y)
522 : BC_GenericButton(x, y, _("Up"))
526 CriKeyPointUp::~CriKeyPointUp()
530 int CriKeyPointUp::handle_event()
532 CriKeyPoints &points = gui->plugin->config.points;
533 int sz = points.size();
534 int hot_point = gui->point_list->get_selection_number(0, 0);
536 if( sz > 1 && hot_point > 0 ) {
537 CriKeyPoint *&pt0 = points[hot_point];
538 CriKeyPoint *&pt1 = points[--hot_point];
539 CriKeyPoint *t = pt0; pt0 = pt1; pt1 = t;
540 gui->point_list->update(hot_point);
542 gui->send_configure_change();
546 CriKeyPointDn::CriKeyPointDn(CriKeyWindow *gui, int x, int y)
547 : BC_GenericButton(x, y, _("Dn"))
551 CriKeyPointDn::~CriKeyPointDn()
555 int CriKeyPointDn::handle_event()
557 CriKeyPoints &points = gui->plugin->config.points;
558 int sz = points.size();
559 int hot_point = gui->point_list->get_selection_number(0, 0);
560 if( sz > 1 && hot_point < sz-1 ) {
561 CriKeyPoint *&pt0 = points[hot_point];
562 CriKeyPoint *&pt1 = points[++hot_point];
563 CriKeyPoint *t = pt0; pt0 = pt1; pt1 = t;
564 gui->point_list->update(hot_point);
566 gui->send_configure_change();
570 CriKeyDrag::CriKeyDrag(CriKeyWindow *gui, int x, int y)
571 : BC_CheckBox(x, y, gui->plugin->config.drag, _("Drag"))
575 int CriKeyDrag::handle_event()
577 CWindowGUI *cwindow_gui = gui->plugin->server->mwindow->cwindow->gui;
578 int value = get_value();
580 if( !gui->grab(cwindow_gui) ) {
586 gui->ungrab(cwindow_gui);
587 gui->plugin->config.drag = value;
588 gui->send_configure_change();
592 CriKeyNewPoint::CriKeyNewPoint(CriKeyWindow *gui, CriKey *plugin, int x, int y)
593 : BC_GenericButton(x, y, xS(80), _("New"))
596 this->plugin = plugin;
598 CriKeyNewPoint::~CriKeyNewPoint()
601 int CriKeyNewPoint::handle_event()
603 int k = plugin->new_point();
604 gui->point_list->update(k);
605 gui->send_configure_change();
609 CriKeyDelPoint::CriKeyDelPoint(CriKeyWindow *gui, CriKey *plugin, int x, int y)
610 : BC_GenericButton(x, y, xS(80), C_("Del"))
613 this->plugin = plugin;
615 CriKeyDelPoint::~CriKeyDelPoint()
618 int CriKeyDelPoint::handle_event()
620 int hot_point = gui->point_list->get_selection_number(0, 0);
621 CriKeyPoints &points = plugin->config.points;
622 if( hot_point >= 0 && hot_point < points.size() ) {
623 plugin->config.del_point(hot_point);
624 if( !points.size() ) plugin->new_point();
625 int sz = points.size();
626 if( hot_point >= sz && hot_point > 0 ) --hot_point;
627 gui->point_list->update(hot_point);
628 gui->send_configure_change();
633 CriKeyReset::CriKeyReset(CriKeyWindow *gui, CriKey *plugin, int x, int y)
634 : BC_GenericButton(x, y, _("Reset"))
637 this->plugin = plugin;
639 CriKeyReset::~CriKeyReset()
642 int CriKeyReset::handle_event()
644 CriKeyPoints &points = plugin->config.points;
645 points.remove_all_objects();
647 gui->point_list->update(0);
648 gui->send_configure_change();