6 #include "channelinfo.h"
11 #include "devicedvbinput.h"
13 #include "edlsession.h"
15 #include "mainerror.h"
17 #include "mainsession.h"
19 #include "mwindowgui.h"
21 #include "bcmenuitem.h"
23 #include "recordconfig.h"
25 #include "videodevice.h"
26 #include "videoconfig.h"
27 #include "videodevice.h"
28 #include "libzmpeg3.h"
32 static inline int min(int a,int b) { return a<b ? a : b; }
34 static inline int max(int a,int b) { return a>b ? a : b; }
37 ChanSearch::ChanSearch(ChannelInfo *iwindow)
40 this->iwindow = iwindow;
41 window_lock = new Mutex("ChanSearch::window_lock");
45 ChanSearch::~ChanSearch()
52 void ChanSearch::start()
54 window_lock->lock("ChanSearch::start1");
55 if( Thread::running() ) {
56 gui->lock_window("ChanSearch::start2");
62 gui = new ChanSearchGUI(this);
65 window_lock->unlock();
68 void ChanSearch::stop()
70 if( Thread::running() ) {
71 window_lock->lock("ChanSearch::stop");
72 if( gui ) gui->set_done(1);
73 window_lock->unlock();
79 void ChanSearch::run()
81 gui->lock_window("ChanSearch::run");
82 gui->create_objects();
85 window_lock->lock("ChanSearch::stop");
87 window_lock->unlock();
91 ChanSearchTitleText::ChanSearchTitleText(ChanSearchGUI *gui, int x, int y)
92 : BC_CheckBox(x, y, &gui->title_text_enable, _("titles"))
97 ChanSearchTitleText::~ChanSearchTitleText()
101 int ChanSearchTitleText::handle_event()
103 gui->title_text_enable = get_value();
104 if( !gui->title_text_enable ) gui->info_text->update(1);
109 ChanSearchInfoText::ChanSearchInfoText(ChanSearchGUI *gui, int x, int y)
110 : BC_CheckBox(x, y, &gui->info_text_enable, _("info"))
115 ChanSearchInfoText::~ChanSearchInfoText()
119 int ChanSearchInfoText::handle_event()
121 gui->info_text_enable = get_value();
122 if( !gui->info_text_enable ) gui->title_text->update(1);
127 ChanSearchMatchCase::ChanSearchMatchCase(ChanSearchGUI *gui, int x, int y)
128 : BC_CheckBox(x, y, &gui->match_case_enable, _("match case"))
133 ChanSearchMatchCase::~ChanSearchMatchCase()
137 int ChanSearchMatchCase::handle_event()
139 gui->match_case_enable = get_value();
144 ChanSearchText::ChanSearchText(ChanSearchGUI *gui, int x, int y, int w)
145 : BC_TextBox(x, y, w, 1, "")
150 ChanSearchText::~ChanSearchText()
155 int ChanSearchText::handle_event()
160 int ChanSearchText::keypress_event()
162 switch(get_keypress())
169 return BC_TextBox::keypress_event();
173 ChanSearchStart::ChanSearchStart(ChanSearchGUI *gui, int x, int y)
174 : BC_GenericButton(x, y, _("Search"))
179 ChanSearchStart::~ChanSearchStart()
183 int ChanSearchStart::handle_event()
190 ChanSearchCancel::ChanSearchCancel(ChanSearchGUI *gui, int x, int y)
191 : BC_CancelButton(x, y)
196 ChanSearchCancel::~ChanSearchCancel()
200 int ChanSearchCancel::handle_event()
207 ChanSearchList::ChanSearchList(ChanSearchGUI *gui, int x, int y, int w, int h)
208 : BC_ListBox(x, y, w, h, LISTBOX_TEXT, &gui->search_items[0],
209 &gui->search_column_titles[0], &gui->search_column_widths[0],
210 lengthof(gui->search_items))
213 set_sort_column(gui->sort_column);
214 set_sort_order(gui->sort_order);
215 set_allow_drag_column(1);
218 ChanSearchList::~ChanSearchList()
222 int ChanSearchList::handle_event()
224 if( get_double_click() ) {
225 ChannelPanel *panel = gui->panel;
226 panel->lock_window("ChanSearchList::handle_event");
227 ChannelEvent *item = gui->highlighted_event;
229 item->text_color(-1);
232 int i = get_highlighted_item();
233 item = gui->search_results.get(i);
234 int x = item->x0-panel->x0 - panel->frame_w/2 + item->get_w()/2;
236 int w = panel->x1 - panel->x0;
238 panel->time_line_scroll->update_value(x);
239 panel->set_x_scroll(x);
240 item->text_color(YELLOW);
242 gui->highlighted_event = item;
243 panel->unlock_window();
248 int ChanSearchList::sort_order_event()
250 gui->sort_events(get_sort_column(), get_sort_order());
254 int ChanSearchList::move_column_event()
256 gui->move_column(get_from_column(), get_to_column());
260 void ChanSearchGUI::create_objects()
262 int pady = BC_TextBox::calculate_h(this, MEDIUMFONT, 0, 1) + 5;
263 int padx = BC_Title::calculate_w(this, (char*)"X", MEDIUMFONT);
264 int x = padx/2, y = pady/4;
265 text_x = x; text_y = y;
266 BC_Title *title = new BC_Title(text_x, text_y, _("Text:"), MEDIUMFONT, YELLOW);
267 add_subwindow(title); x += title->get_w();
268 search_text = new ChanSearchText(this, x, y, get_w()-x-10);
269 add_subwindow(search_text);
270 x = padx; y += pady + 5;
271 title_text = new ChanSearchTitleText(this, x, y);
272 add_subwindow(title_text); x += title_text->get_w() + padx;
273 info_text = new ChanSearchInfoText(this, x, y);
274 add_subwindow(info_text); x += title_text->get_w() + padx;
275 match_case = new ChanSearchMatchCase(this, x, y);
276 add_subwindow(match_case); x += match_case->get_w() + padx;
277 results_x = x + 20; results_y = y + 5;
278 results = new BC_Title(results_x, results_y, " ", MEDIUMFONT, YELLOW);
279 add_subwindow(results);
280 x = padx; y += pady + 5;
282 search_y = get_h() - BC_GenericButton::calculate_h() - 10;
283 search_start = new ChanSearchStart(this, search_x, search_y);
284 add_subwindow(search_start);
285 cancel_w = ChanSearchCancel::calculate_w();
286 cancel_h = ChanSearchCancel::calculate_h();
287 cancel_x = get_w() - cancel_w - 10;
288 cancel_y = get_h() - cancel_h - 10;
289 cancel = new ChanSearchCancel(this, cancel_x, cancel_y);
290 add_subwindow(cancel);
291 list_x = x; list_y = y;
292 int list_w = get_w()-10 - list_x;
293 int list_h = min(search_y, cancel_y)-10 - list_y;
294 search_list = new ChanSearchList(this, list_x, list_y, list_w, list_h);
295 add_subwindow(search_list);
296 search_list->show_window();
297 int clktip_x = list_x;
298 int clktip_y = list_y + list_h + 5;
299 click_tip = new BC_Title(clktip_x, clktip_y, _("dbl clk row to find title"));
300 add_subwindow(click_tip);
302 set_icon(iwindow->mwindow->theme->get_image("record_icon"));
303 search_text->activate();
306 ChanSearchGUI::ChanSearchGUI(ChanSearch *cswindow)
307 : BC_Window(_(PROGRAM_NAME ": ChanSearch"),
308 cswindow->iwindow->gui->get_abs_cursor_x(1) - 500 / 2,
309 cswindow->iwindow->gui->get_abs_cursor_y(1) - 300 / 2,
312 this->cswindow = cswindow;
313 this->iwindow = cswindow->iwindow;
314 this->panel = cswindow->iwindow->gui->panel;
325 search_x = search_y = text_x = text_y = 0;
326 cancel_x = cancel_y = cancel_w = cancel_h = 0;
327 list_x = list_y = list_w = list_h = 0;
328 results_x = results_y = 0;
329 sort_column = sort_order = 0;
331 title_text_enable = 1;
332 info_text_enable = 0;
333 match_case_enable = 0;
334 highlighted_event = 0;
336 search_columns[0] = 0;
337 search_columns[1] = 1;
338 search_columns[2] = 2;
339 search_column_titles[0] = _("Source");
340 search_column_titles[1] = _("Title");
341 search_column_titles[2] = _("Start time");
342 search_column_widths[0] = 120;
343 search_column_widths[2] = 120;
344 search_column_widths[1] = get_w()-search_column_widths[0]-search_column_widths[2]-32;
347 ChanSearchGUI::~ChanSearchGUI()
350 ChannelEvent *item = highlighted_event;
352 panel->lock_window("ChanSearchGUI::~ChanSearchGUI");
353 item->text_color(-1);
355 panel->unlock_window();
357 for( int i=0; i<lengthof(search_items); ++i )
358 search_items[i].remove_all_objects();
361 int ChanSearchGUI::resize_event(int w, int h)
363 search_text->reposition_window(text_x, text_y, w-text_x-10);
364 int cancel_x = w - BC_CancelButton::calculate_w() - 10;
365 int cancel_y = h - BC_CancelButton::calculate_h() - 10;
366 cancel->reposition_window(cancel_x, cancel_y);
368 search_y = h - BC_GenericButton::calculate_h() - 10;
369 search_start->reposition_window(search_x, search_y);
370 int list_w = w-10 - list_x;
371 int list_h = min(search_y, cancel_y)-10 - list_y;
372 search_column_widths[1] = w-search_column_widths[0]-search_column_widths[2]-32;
373 search_list->reposition_window(list_x, list_y, list_w, list_h);
374 int clktip_x = list_x;
375 int clktip_y = list_y + list_h + 5;
376 click_tip->reposition_window(clktip_x, clktip_y);
381 int ChanSearchGUI::close_event()
387 int ChanSearchGUI::search(const char *sp)
389 char const *tp = search_text->get_text();
391 for( const char *cp=sp; *cp!=0; ++cp ) {
392 if( match_case_enable ? !strncmp(tp, cp, n) :
393 !strncasecmp(tp, cp, n) ) return 1;
398 void ChanSearchGUI::search()
400 search_results.remove_all();
402 int n = panel->channel_event_items.size();
403 for( int i=0; i<n; ++i ) {
404 ChannelEvent *item = panel->channel_event_items.get(i);
405 if( (title_text_enable && search(item->get_text())) ||
406 (info_text_enable && search(item->get_tooltip()) ) )
407 search_results.append(item);
413 void ChanSearchGUI::update()
416 for( int i=0; i<lengthof(search_items); ++i )
417 search_items[i].remove_all_objects();
419 char text[BCTEXTLEN];
420 int n = search_results.size();
421 for( int i=0; i<n; ++i ) {
422 ChannelEvent *item = search_results.get(i);
423 for( int k=0; k<lengthof(search_columns); ++k ) {
425 switch( search_columns[k] ) {
426 case 0: cp = item->channel->title; break;
427 case 1: cp = item->get_text(); break;
429 struct tm stm; localtime_r(&item->start_time,&stm);
430 double seconds = stm.tm_hour*3600 + stm.tm_min*60 + stm.tm_sec;
431 Units::totext(text, seconds, TIME_HMS3);
434 if( cp ) search_items[k].append(new BC_ListBoxItem(cp, LTYELLOW));
438 search_list->update(search_items, &search_column_titles[0],
439 &search_column_widths[0], lengthof(search_items));
440 sprintf(text, _("%d found"), n);
441 results->update(text);
445 #define CmprFn(nm,key) int ChanSearchGUI:: \
446 cmpr_##nm(const void *a, const void *b) { \
447 ChannelEvent *&ap = *(ChannelEvent **)a; \
448 ChannelEvent *&bp = *(ChannelEvent **)b; \
449 int n = key; if( !n ) n = ap->no-bp->no; \
453 CmprFn(Text_dn, strcasecmp(ap->get_text(), bp->get_text()))
454 CmprFn(text_dn, strcmp(ap->get_text(), bp->get_text()))
455 CmprFn(Text_up, strcasecmp(bp->get_text(), ap->get_text()))
456 CmprFn(text_up, strcmp(bp->get_text(), ap->get_text()))
457 CmprFn(time_dn, ap->start_time - bp->start_time)
458 CmprFn(time_up, bp->start_time - ap->start_time)
459 CmprFn(Title_dn, strcasecmp(ap->channel->title, bp->channel->title))
460 CmprFn(title_dn, strcmp(ap->channel->title, bp->channel->title))
461 CmprFn(Title_up, strcasecmp(bp->channel->title, ap->channel->title))
462 CmprFn(title_up, strcmp(bp->channel->title, ap->channel->title))
465 void ChanSearchGUI::sort_events(int column, int order)
467 sort_column = column; sort_order = order;
468 int n = search_results.size();
470 ChannelEvent **events = &search_results.values[0];
471 for( int i=0; i<n; ++i ) events[i]->no = i;
473 int(*cmpr)(const void *, const void *) = 0;
474 switch( search_columns[sort_column] ) {
475 case 0: cmpr = match_case_enable ?
476 (sort_order ? cmpr_Title_up : cmpr_Title_dn) :
477 (sort_order ? cmpr_title_up : cmpr_title_dn) ;
479 case 1: cmpr = match_case_enable ?
480 (sort_order ? cmpr_Text_up : cmpr_Text_dn) :
481 (sort_order ? cmpr_text_up : cmpr_text_dn) ;
483 case 2: cmpr = sort_order ? cmpr_time_up : cmpr_time_dn;
488 ChannelEvent **events = &search_results.values[0];
489 qsort(events, n, sizeof(*events), cmpr);
494 void ChanSearchGUI::move_column(int src, int dst)
496 if( src == dst ) return;
497 int src_column = search_columns[src];
498 const char *src_column_title = search_column_titles[src];
499 int src_column_width = search_column_widths[src];
501 for( int i=src; i<dst; ++i ) {
502 search_columns[i] = search_columns[i+1];
503 search_column_titles[i] = search_column_titles[i+1];
504 search_column_widths[i] = search_column_widths[i+1];
508 for( int i=src; i>dst; --i ) {
509 search_columns[i] = search_columns[i-1];
510 search_column_titles[i] = search_column_titles[i-1];
511 search_column_widths[i] = search_column_widths[i-1];
514 search_columns[dst] = src_column;
515 search_column_titles[dst] = src_column_title;
516 search_column_widths[dst] = src_column_width;
521 ChannelProgress::ChannelProgress(ChannelInfoGUI *gui,
522 int x, int y, int w, int h, int len)
524 BC_SubWindow(x, y, w, h)
533 eta_timer = new Timer;
536 ChannelProgress::~ChannelProgress()
542 void ChannelProgress::create_objects()
544 int w = BC_Title::calculate_w(gui, (char*)"XXXXX", MEDIUMFONT);
545 eta = new BC_Title(0, 0, "+0:00", MEDIUMFONT, -1, 0, w);
547 int x = eta->get_w();
548 bar = new BC_ProgressBar(x, 0, get_w()-x, length);
553 void ChannelProgress::start()
560 void ChannelProgress::stop()
562 if( Thread::running() ) {
569 void ChannelProgress::run()
573 if( update() ) break;
580 int ChannelProgress::update()
582 double elapsed = (double)eta_timer->get_scaled_difference(1000) / 1000.;
583 double estimate = value < 1 ? 0 : (length/value-1)*elapsed;
584 char text[BCTEXTLEN], *cp = &text[0];
585 Units::totext(cp, estimate, TIME_MS1);
586 gui->lock_window("ChannelProgress::update");
589 gui->unlock_window();
590 return value < length ? 0 : 1;
595 TimeLineItem::TimeLineItem(ChannelPanel *panel, int x, int y, char *text)
596 : BC_Title(x-panel->x_scroll, 0, text, MEDIUMFONT,
597 x==panel->x_now ? GREEN : YELLOW)
603 TimeLineItem::~TimeLineItem()
608 TimeLine::TimeLine(ChannelPanel *panel)
609 : BC_SubWindow(panel->frame_x, 0, panel->frame_w, panel->path_h)
614 TimeLine::~TimeLine()
618 int TimeLine::resize_event(int w, int h)
625 ChannelDataItem::ChannelDataItem(ChannelPanel *panel, int x, int y, int w,
626 int color, const char *text)
627 : BC_Title(x, y-panel->y_scroll, text, MEDIUMFONT, color)
631 in_window = tooltip_done = 0;
633 set_force_tooltip(1);
636 ChannelDataItem::~ChannelDataItem()
641 int ChannelDataItem::cursor_enter_event()
643 if( is_event_win() ) { in_window = 1; tooltip_done = 0; }
648 int ChannelDataItem::cursor_leave_event()
650 if( tooltip_done ) { hide_tooltip(); in_window = 0; }
654 int ChannelDataItem::repeat_event(int64_t duration)
656 if( !tooltip_done && tip_info && in_window &&
657 duration == get_resources()->tooltip_delay ) {
665 void ChannelDataItem::set_tooltip(const char *tip)
667 BC_Title::set_tooltip(tip_info = tip ? cstrdup(tip) : 0);
671 ChannelData::ChannelData(ChannelPanel *panel, int x, int y, int w, int h)
672 : BC_SubWindow(x, y, w, h, LTBLACK)
677 ChannelData::~ChannelData()
681 int ChannelData::resize_event(int w, int h)
688 ChannelScroll::ChannelScroll(ChannelPanel *panel, int x, int y, int h)
689 : BC_ScrollBar(x, y, SCROLL_VERT, h, 0, 0, 0)
694 ChannelScroll::~ChannelScroll()
698 int ChannelScroll::handle_event()
700 panel->set_y_scroll(get_value());
705 TimeLineScroll::TimeLineScroll(ChannelPanel *panel, int x, int y, int w)
706 : BC_ScrollBar(x, y, SCROLL_HORIZ, w, 0, 0, 0)
711 TimeLineScroll::~TimeLineScroll()
715 int TimeLineScroll::handle_event()
717 panel->set_x_scroll(get_value());
722 ChannelEventLine::ChannelEventLine(ChannelPanel *panel,
723 int x, int y, int w, int h, int color)
724 : BC_SubWindow(0, y, w, h, color)
730 ChannelEventLine::~ChannelEventLine()
734 void ChannelEventLine::resize(int w, int h)
740 ChannelEvent::ChannelEvent(ChannelEventLine *channel_line, Channel *channel,
741 time_t start_time, time_t end_time, int x, int y, int w, const char *text)
742 : BC_GenericButton( x-channel_line->panel->x_scroll,
743 y-channel_line->panel->y_scroll, w, text)
745 this->channel_line = channel_line;
746 this->channel = channel;
747 this->start_time = start_time;
748 this->end_time = end_time;
749 x0 = x; y0 = y; no = 0;
751 set_force_tooltip(1);
754 ChannelEvent::~ChannelEvent()
759 int ChannelEvent::handle_event()
761 ChannelInfoGUI *gui = channel_line->panel->gui;
762 Batch *batch = gui->batch_bay->get_editing_batch();
763 char *path = batch->asset->path;
764 int len = sizeof(batch->asset->path)-1;
765 const char *text = get_text();
766 const char *dir = gui->channel_dir->get_directory();
768 while( i<len && *dir ) path[i++] = *dir++;
769 if( i > 0 && dir[i-1] != '/' ) path[i++] = '/';
770 while( i<len && *text ) {
772 if( !isalnum(ch) ) ch = '_';
775 if( i < len ) path[i++] = '.';
776 if( i < len ) path[i++] = 't';
777 if( i < len ) path[i++] = 's';
779 int early = (int)gui->early_time->get_time();
780 int late = (int)gui->late_time->get_time();
781 time_t st = start_time + early;
782 struct tm stm; localtime_r(&st,&stm);
783 batch->record_mode = RECORD_TIMED;
785 batch->start_day = stm.tm_wday;
786 batch->start_time = stm.tm_hour*3600 + stm.tm_min*60 + stm.tm_sec;
787 batch->duration = end_time - start_time - early + late;
788 batch->channel = channel;
789 gui->batch_bay->update_batches();
790 gui->update_channel_tools();
794 void ChannelEvent::set_tooltip(const char *tip)
796 BC_GenericButton::set_tooltip(tip_info = tip ? cstrdup(tip) : 0);
800 ChannelFrame::ChannelFrame(ChannelPanel *panel)
801 : BC_SubWindow(panel->frame_x, panel->frame_y,
802 panel->frame_w, panel->frame_h, BLACK)
807 ChannelFrame::~ChannelFrame()
812 void ChannelPanel::create_objects()
814 iwd = BC_ScrollBar::get_span(SCROLL_VERT);
815 iht = BC_ScrollBar::get_span(SCROLL_HORIZ);
817 frame_x = path_w; frame_y = path_h;
818 frame_w = iwindow_w-frame_x - iwd;
819 frame_h = iwindow_h-frame_y - iht;
821 time_line = new TimeLine(this);
822 add_subwindow(time_line);
823 time_line_scroll = new TimeLineScroll(this, frame_x, iwindow_h-iht, frame_w);
824 add_subwindow(time_line_scroll);
825 channel_data = new ChannelData(this, 0, frame_y, path_w, frame_h);
826 add_subwindow(channel_data);
827 channel_frame = new ChannelFrame(this);
828 add_subwindow(channel_frame);
829 channel_scroll = new ChannelScroll(this, iwindow_w-iwd, frame_y, frame_h);
830 add_subwindow(channel_scroll);
833 ChannelPanel::ChannelPanel(ChannelInfoGUI *gui,
834 int x, int y, int w, int h)
835 : BC_SubWindow(x, y, w, h)
838 gettimeofday(&tv, &tz);
839 st_org = ((tv.tv_sec+1800-1) / 1800) * 1800 - 1800;
840 x_now = (tv.tv_sec-st_org)/1800 * hhr_w;
841 path_w = gui->path_w; path_h = gui->path_h;
842 x0 = y0 = x1 = y1 = t0 = t1 = 0;
843 x_scroll = y_scroll = 0;
844 x_moved = y_moved = 0;
845 iwindow_w = w; iwindow_h = h;
846 hhr_w = BC_GenericButton::calculate_w(gui, (char*)"XXXXXXXX") + 5;
849 ChannelPanel::~ChannelPanel()
853 ChannelEventLine *ChannelPanel::NewChannelLine(int y, int h, int color)
855 ChannelEventLine *channel_line =
856 new ChannelEventLine(this, 0, y, frame_w, h, color);
857 channel_frame->add_subwindow(channel_line);
858 channel_line_items.append(channel_line);
862 void ChannelPanel::resize(int w, int h)
864 frame_w = (iwindow_w=w) - frame_x - iwd;
865 frame_h = (iwindow_h=h) - frame_y - iht;
866 time_line->resize_window(frame_w, path_h);
867 time_line_scroll->reposition_window(frame_x, frame_y+frame_h, frame_w);
868 time_line_scroll->update_length(x1-x0, x_scroll-x0, frame_w,0);
869 time_line_scroll->update_value(-x0);
870 channel_data->resize_window(path_w, frame_h);
871 channel_frame->resize_window(frame_w, frame_h);
872 int nitems = channel_line_items.size();
873 for( int i=0; i<nitems; ++i )
874 channel_line_items.values[i]->resize_window(frame_w, path_h);
875 channel_scroll->reposition_window(frame_x+frame_w, frame_y, frame_h);
876 channel_scroll->update_length(y1-y0, y_scroll-y0, frame_h,0);
880 int ChannelPanel::button_press_event()
882 if(get_buttonpress() == 3 && cursor_inside()) {
883 gui->lock_window("ChannelPanel::button_press_event");
884 gui->channel_search->start();
885 gui->unlock_window();
891 void ChannelPanel::bounding_box(int ix0, int iy0, int ix1, int iy1)
893 int x_changed = 0, y_changed = 0;
894 if( ix0 < x0 ) { x0 = ix0; x_changed = 1; }
895 if( iy0 < y0 ) { y0 = iy0; y_changed = 1; }
896 if( ix1 > x1 ) { x1 = ix1; x_changed = 1; }
897 if( iy1 > y1 ) { y1 = iy1; y_changed = 1; }
899 time_line_update(x0, x1);
900 time_line_scroll->update_length(x1-x0, x_scroll-x0, frame_w, 0);
901 if( !x_moved ) time_line_scroll->update_value(-x0);
904 channel_scroll->update_length(y1-y0, y_scroll-y0, frame_h, 0);
905 if( x_changed || y_changed ) flush();
908 void ChannelPanel::set_x_scroll(int v)
915 void ChannelPanel::set_y_scroll(int v)
922 void ChannelPanel::reposition()
925 n = time_line_items.size();
926 for( i=0; i<n; ++i ) {
927 TimeLineItem *item = time_line_items[i];
928 if( item->get_x() == item->x0-x_scroll &&
929 item->get_y() == item->y0-y_scroll) continue;
930 item->reposition_window(item->x0-x_scroll, item->y0);
932 n = channel_data_items.size();
933 for( i=0; i<n; ++i ) {
934 ChannelDataItem *item = channel_data_items[i];
935 if( item->get_x() == item->x0-x_scroll &&
936 item->get_y() == item->y0-y_scroll) continue;
937 item->reposition_window(item->x0, item->y0-y_scroll);
939 n = channel_line_items.size();
940 for( i=0; i<n; ++i ) {
941 ChannelEventLine *item = channel_line_items[i];
942 if( item->get_x() == item->x0-x_scroll &&
943 item->get_y() == item->y0-y_scroll) continue;
944 item->reposition_window(item->x0, item->y0-y_scroll);
946 n = channel_event_items.size();
947 for( i=0; i<n; ++i ) {
948 ChannelEvent *item = channel_event_items[i];
949 if( item->get_x() == item->x0-x_scroll &&
950 item->get_y() == item->y0-y_scroll) continue;
951 item->reposition_window(item->x0-x_scroll, item->y0);
955 void ChannelPanel::get_xtime(int x, char *cp)
957 time_t xt = st_org + (x/hhr_w) * 1800;
958 if( !strcmp(tzname[0],"UTC") ) xt -= tz.tz_minuteswest*60;
959 struct tm xtm; localtime_r(&xt,&xtm);
960 cp += sprintf(cp,"%02d:%02d",xtm.tm_hour, xtm.tm_min);
961 if( !xtm.tm_hour && !xtm.tm_min ) {
962 sprintf(cp,_("(%3.3s) "),&_("sunmontuewedthufrisat")[xtm.tm_wday*3]);
966 void ChannelPanel::time_line_update(int ix0, int ix1)
968 int x; char text[BCTEXTLEN];
969 for( x=t0; x>=ix0; x-=hhr_w ) {
970 get_xtime(x, text); t0 = x;
971 TimeLineItem *time_line_item = new TimeLineItem(this, t0, 0, text);
972 time_line->add_subwindow(time_line_item);
973 time_line_items.insert(time_line_item,0);
975 for( x=t1; x<ix1; x+=hhr_w ) {
976 get_xtime(x, text); t1 = x;
977 TimeLineItem *time_line_item = new TimeLineItem(this, t1, 0, text);
978 time_line->add_subwindow(time_line_item);
979 time_line_items.append(time_line_item);
984 ChannelInfoCron(ChannelInfoGUI *gui, int x, int y, int *value)
985 : BC_CheckBox(x, y, value, gui->cron_caption)
988 set_tooltip(_("activate batch record when ok pressed"));
996 int ChannelInfoCron::
999 gui->iwindow->cron_enable = get_value();
1004 ChannelInfoPowerOff::ChannelInfoPowerOff(ChannelInfoGUI *gui, int x, int y, int *value)
1005 : BC_CheckBox(x, y , value, gui->power_caption)
1008 set_tooltip(_("poweroff system when batch record done"));
1011 ChannelInfoPowerOff::~ChannelInfoPowerOff()
1015 int ChannelInfoPowerOff::handle_event()
1017 gui->iwindow->poweroff_enable = get_value();
1022 ChannelInfoFind::ChannelInfoFind(ChannelInfoGUI *gui, int x, int y)
1023 : BC_GenericButton(x, y, _("Find"))
1026 set_tooltip(_("search event titles/info"));
1029 ChannelInfoFind::~ChannelInfoFind()
1033 int ChannelInfoFind::handle_event()
1035 gui->lock_window("ChannelInfoFind::handle_event");
1036 gui->channel_search->start();
1037 gui->unlock_window();
1041 void ChannelThread::start()
1043 if( !Thread::running() ) {
1049 void ChannelThread::stop()
1051 if( Thread::running() ) {
1058 ChannelThread::ChannelThread(ChannelInfoGUI *gui)
1062 this->iwindow = gui->iwindow;
1063 this->panel = gui->panel;
1069 ChannelThread::~ChannelThread()
1074 int ChannelThread::load_ident(int n, int y, char *ident)
1076 ChannelDataItem *data_item = new ChannelDataItem(panel, 0, y,
1077 panel->path_w, !n ? YELLOW : LTYELLOW, ident);
1078 panel->channel_data->add_subwindow(data_item);
1079 panel->channel_data_items.append(data_item);
1081 char info[BCTEXTLEN];
1082 int i = mpeg3_dvb_get_chan_info(fd, n, -1, 0, info, sizeof(info)-1);
1083 while( --i >= 0 && (info[i]=='\n' || info[i]==' ') ) info[i] = 0;
1084 if( info[0] ) data_item->set_tooltip(info);
1089 int ChannelThread::load_info(Channel *channel, ChannelEventLine *channel_line)
1091 int n = channel->element;
1094 while( ord < 0x80 ) {
1095 char info[65536], *cp = &info[0];
1096 int len = mpeg3_dvb_get_chan_info(fd,n,ord,i++,cp,sizeof(info)-1);
1097 if( len < 0 ) { i = 0; ++ord; continue; }
1098 char *bp = cp; cp += len;
1099 struct tm stm; memset(&stm,0,sizeof(stm));
1100 struct tm etm; memset(&etm,0,sizeof(etm));
1101 int k, l = sscanf(bp,"%d:%d:%d-%d:%d:%d %n",
1102 &stm.tm_hour, &stm.tm_min, &stm.tm_sec,
1103 &etm.tm_hour, &etm.tm_min, &etm.tm_sec,
1106 printf(_("bad scan time: %s\n"),info);
1109 char *title = (bp += k);
1110 while( bp<cp && *bp!='\n' ) ++bp;
1111 char *dp = bp; *bp++ = 0;
1113 printf(_("bad title: %s\n"),info);
1116 char stm_wday[4]; memset(&stm_wday,0,sizeof(stm_wday));
1117 l = sscanf(bp, "(%3s) %d/%d/%d", &stm_wday[0],
1118 &stm.tm_year, &stm.tm_mon, &stm.tm_mday);
1120 printf(_("bad scan date: %s\n"),info);
1123 while( bp<cp && *bp!='\n' ) ++bp;
1125 etm.tm_year = (stm.tm_year -= 1900);
1126 etm.tm_mon = --stm.tm_mon;
1127 etm.tm_mday = stm.tm_mday;
1128 stm.tm_isdst = etm.tm_isdst = -1;
1129 time_t st = mktime(&stm);
1130 time_t et = mktime(&etm);
1131 if( et < st ) et += 24*3600;
1133 printf(_("end before start: %s\n"),info);
1136 if( panel->st_org - et > 24*3600*2) {
1137 printf(_("end time early: %s\n"),info);
1140 if( st - panel->st_org > 24*3600*12 ) {
1141 printf(_("start time late: %s\n"),info);
1144 time_t st_min = (st - panel->st_org)/60;
1145 time_t et_min = (et - panel->st_org)/60;
1146 int dt = et_min - st_min;
1148 printf(_("zero duration: %s\n"),info);
1152 int w = (dt * panel->hhr_w) / 30;
1153 int x = (st_min * panel->hhr_w) / 30;
1154 int y = channel_line->y0;
1155 panel->bounding_box(x, y, x+w, y+panel->path_h);
1156 ChannelEvent *channel_event =
1157 new ChannelEvent(channel_line, channel,
1158 st, et, x, 0, w, title);
1159 channel_line->add_subwindow(channel_event);
1160 panel->channel_event_items.append(channel_event);
1162 *dp = '\n'; *bp++ = '\n';
1163 for( char *lp=bp; bp<cp; ++bp ) {
1164 if( *bp == '\n' || ((bp-lp)>=60 && *bp==' ') )
1168 for( bp=&info[0]; --cp>=bp && (*cp=='\n' || *cp==' '); *cp=0 );
1169 if( info[0] ) channel_event->set_tooltip(info);
1174 void ChannelThread::run()
1177 Channel *channel = 0;
1179 int nchannels = total_channels();
1182 for(int ch=0; !done && ch<nchannels; gui->update_progress(++ch) ) {
1183 Channel *chan = get_channel(ch);
1184 if( !chan ) continue;
1186 iwindow->vdevice_lock->lock("ChannelThread::run");
1187 DeviceDVBInput *dvb_input = iwindow->dvb_input;
1188 if( !channel || chan->entry != channel->entry ) {
1190 while( dvb_input->set_channel(chan) && --retry >= 0 );
1195 y += panel->separator(y);
1196 gui->unlock_window();
1202 else if( chan->element == channel->element )
1206 if( !done && chan && channel && (fd=dvb_input->get_src()) ) {
1208 load_ident(chan->element, y, chan->title);
1209 ChannelEventLine *channel_line = panel->NewChannelLine(y);
1210 load_info(chan, channel_line);
1211 channel_line->show_window();
1212 gui->unlock_window();
1213 dvb_input->put_src();
1216 iwindow->vdevice_lock->unlock();
1220 gui->lock_window("ChannelProgress::run");
1221 gui->channel_status->hide_window();
1222 gui->unlock_window();
1225 iwindow->close_vdevice();
1229 ChannelInfoOK::ChannelInfoOK(ChannelInfoGUI *gui, int x, int y)
1233 set_tooltip(_("end channel info, start record"));
1236 ChannelInfoOK::~ChannelInfoOK()
1240 int ChannelInfoOK::button_press_event()
1242 if(get_buttonpress() == 1 && is_event_win() && cursor_inside()) {
1249 int ChannelInfoOK::keypress_event()
1255 ChannelInfoCancel::ChannelInfoCancel(ChannelInfoGUI *gui, int x, int y)
1256 : BC_CancelButton(x, y)
1261 ChannelInfoCancel::~ChannelInfoCancel()
1265 int ChannelInfoCancel::button_press_event()
1267 if(get_buttonpress() == 1 && is_event_win() && cursor_inside()) {
1275 ChannelInfoGUIBatches::ChannelInfoGUIBatches(ChannelInfoGUI *gui,
1276 int x, int y, int w, int h)
1277 : RecordBatchesGUI(gui->iwindow->record_batches, x, y, w, h)
1282 ChannelInfoGUIBatches::~ChannelInfoGUIBatches()
1286 int ChannelInfoGUIBatches::selection_changed()
1288 return RecordBatchesGUI::selection_changed();
1291 int ChannelInfoGUIBatches::handle_event()
1293 if( get_double_click() )
1294 gui->update_channel_tools();
1299 void ChannelInfoGUI::create_objects()
1301 panel = new ChannelPanel(this,0,0,panel_w,panel_h);
1302 add_subwindow(panel);
1303 panel->create_objects();
1304 int items = iwindow->channeldb->size();
1305 if( items < 1 ) items = 1;
1306 progress = new ChannelProgress(this, 0, 0, path_w, path_h, items);
1307 add_subwindow(progress);
1308 progress->create_objects();
1309 ok = new ChannelInfoOK(this, ok_x, ok_y);
1311 channel_cron = new ChannelInfoCron(this, cron_x, cron_y, &iwindow->cron_enable);
1312 add_subwindow(channel_cron);
1313 channel_poweroff = new ChannelInfoPowerOff(this,
1314 power_x, power_y, &iwindow->poweroff_enable);
1315 add_subwindow(channel_poweroff);
1316 channel_find = new ChannelInfoFind(this, find_x, find_y);
1317 add_subwindow(channel_find);
1318 cancel = new ChannelInfoCancel(this, cancel_x, cancel_y);
1319 add_subwindow(cancel);
1320 batch_bay = new ChannelInfoGUIBatches(this,bay_x, bay_y, bay_w, bay_h);
1321 add_subwindow(batch_bay);
1322 iwindow->record_batches.gui = batch_bay;
1323 batch_bay->set_current_batch(-1);
1324 batch_bay->update_batches(-1);
1326 pad = BC_TextBox::calculate_h(this, MEDIUMFONT, 0, 1) + 5;
1327 x0 = bay_x+bay_w + 10;
1333 add_subwindow(directory_title = new BC_Title(x, y, _("Directory:")));
1334 ww = max(directory_title->get_w(), ww); y += pad;
1335 add_subwindow(path_title = new BC_Title(x, y, _("Path:")));
1336 ww = max(path_title->get_w(), ww); y += pad;
1337 add_subwindow(start_title = new BC_Title(x, y, _("Start:")));
1338 ww = max(start_title->get_w(), ww); y += pad;
1339 add_subwindow(duration_title = new BC_Title(x, y, _("Duration:")));
1340 ww = max(duration_title->get_w(), ww); y += pad;
1341 add_subwindow(source_title = new BC_Title(x, y, _("Source:")));
1342 ww = max(source_title->get_w(), ww); y += pad;
1345 int x1 = x0 + title_w + pad;
1346 x = x1; y = y0; ww = 0;
1348 char *dir = iwindow->record_batches.get_default_directory();
1349 add_subwindow(channel_dir = new ChannelDir(this, dir, x, y));
1350 ww = max(channel_dir->get_w(), ww); y += pad;
1351 add_subwindow(channel_path = new ChannelPath(this, x, y));
1352 ww = max(channel_path->get_w(), ww); y += pad;
1353 channel_start = new ChannelStart(this, x, y);
1354 channel_start->create_objects();
1355 ww = max(channel_start->get_w(), ww); y += pad;
1356 int w = BC_Title::calculate_w(this, (char*)"+00:00:00+", MEDIUMFONT);
1357 channel_duration = new ChannelDuration(this, x, y, w);
1358 channel_duration->create_objects();
1359 int x2 = x + channel_duration->get_w();
1360 double *early_margin = iwindow->record_batches.get_early_margin();
1361 early_time = new ChannelEarlyTime(this, x2, y, early_margin);
1362 early_time->create_objects();
1363 x2 += early_time->get_w();
1364 double *late_margin = iwindow->record_batches.get_late_margin();
1365 late_time = new ChannelLateTime(this, x2, y, late_margin);
1366 late_time->create_objects();
1367 x2 += late_time->get_w();
1368 ww = max(x2-x1, ww); y += pad;
1369 channel_source = new ChannelSource(this, x, y);
1370 channel_source->create_objects();
1371 ww = max(channel_source->get_w(), ww); y += pad;
1372 data_w = x1-x0 + ww;
1375 add_subwindow(channel_clear_batch = new ChannelClearBatch(this, x, y));
1376 x += channel_clear_batch->get_w() + 10;
1377 add_subwindow(channel_new_batch = new ChannelNewBatch(this, x, y));
1378 x += channel_new_batch->get_w() + 10;
1379 add_subwindow(channel_delete_batch = new ChannelDeleteBatch(this, x, y));
1380 x += channel_delete_batch->get_w();
1382 data_w = max(ww, data_w);
1384 channel_status = new ChannelStatus(this, x0+data_w, y0);
1385 add_subwindow(channel_status);
1386 channel_status->create_objects();
1387 status_w = channel_status->get_w();
1389 channel_search = new ChanSearch(iwindow);
1393 ChannelInfoGUI::ChannelInfoGUI(ChannelInfo *iwindow,
1394 int x, int y, int w, int h)
1395 : BC_Window(_(PROGRAM_NAME ": Channel Info"), x, y, w, h, 600, 400,
1396 1, 0, 0 , -1, iwindow->mwindow->get_cwindow_display())
1398 this->iwindow = iwindow;
1404 channel_duration = 0;
1406 channel_clear_batch = 0;
1407 channel_new_batch = 0;
1408 channel_delete_batch = 0;
1409 early_time = late_time = 0;
1410 directory_title = 0;
1415 cron_caption = _("Start Cron");
1416 power_caption = _("Poweroff");
1420 path_w = 16*BC_Title::calculate_w(this, (char*)"X", MEDIUMFONT);
1421 path_h = BC_TextBox::calculate_h(this, MEDIUMFONT, 0, 1);
1422 x0 = y0 = title_w = data_w = status_w = pad = 0;
1423 ok_w = BC_OKButton::calculate_w();
1424 ok_h = BC_OKButton::calculate_h();
1426 ok_y = h - ok_h - 10;
1427 BC_CheckBox::calculate_extents(this, &cron_w, &cron_h, cron_caption);
1429 cron_y = ok_y - cron_h - 10;
1430 BC_CheckBox::calculate_extents(this, &power_w, &power_h, power_caption);
1432 power_y = cron_y - power_h - 5;
1433 find_h = BC_GenericButton::calculate_h();
1435 find_y = power_y - find_h - 10;
1436 cancel_w = BC_CancelButton::calculate_w();
1437 cancel_h = BC_CancelButton::calculate_h();
1438 cancel_x = w - cancel_w - 10,
1439 cancel_y = h - cancel_h - 10;
1443 int x1 = cron_x+cron_w + 10;
1444 if( x1 > bay_x ) bay_x = x1;
1445 x1 = power_x+power_w + 10;
1446 if( x1 > bay_x ) bay_x = x1;
1448 // data_w,status_w zero, updated in create_objects
1449 bay_w = (w-bay_x) - (data_w+10) - (max(cancel_w, status_w)+20);
1450 if( bay_w > max_bay_w ) bay_w = max_bay_w;
1452 panel_h = h - bay_h;
1455 ChannelInfoGUI::~ChannelInfoGUI()
1458 channel_search->stop();
1460 delete channel_status;
1461 delete channel_search;
1462 delete channel_start;
1463 delete channel_duration;
1466 delete channel_source;
1469 void ChannelInfoGUI::stop(int v)
1471 if( !iwindow->gui_done ) {
1472 iwindow->gui_done = 1;
1477 int ChannelInfoGUI::translation_event()
1479 iwindow->mwindow->session->cswindow_x = get_x();
1480 iwindow->mwindow->session->cswindow_y = get_y();
1484 int ChannelInfoGUI::resize_event(int w, int h)
1486 iwindow->mwindow->session->cswindow_w = w;
1487 iwindow->mwindow->session->cswindow_h = h;
1489 panel_h = h - bay_h;
1490 panel->resize(panel_w,panel_h);
1491 panel->reposition_window(0,0,panel_w,panel_h);
1493 ok_y = h - ok_h - 10;
1494 ok->reposition_window(ok_x, ok_y);
1496 cron_y = ok_y - cron_h - 10;
1497 channel_cron->reposition_window(cron_x, cron_y);
1499 power_y = cron_y - power_h - 5;
1500 channel_poweroff->reposition_window(power_x, power_y);
1502 find_y = power_y - find_h - 10;
1503 channel_find->reposition_window(find_x, find_y);
1504 cancel_x = w - cancel_w - 10,
1505 cancel_y = h - cancel_h - 10;
1506 cancel->reposition_window(cancel_x, cancel_y);
1508 int x1 = cron_x+cron_w + 10;
1509 if( x1 > bay_x ) bay_x = x1;
1510 x1 = power_x+power_w + 10;
1511 if( x1 > bay_x ) bay_x = x1;
1513 bay_w = (w-bay_x) - (data_w+10) - (max(cancel_w, status_w)+20);
1514 if( bay_w > max_bay_w ) bay_w = max_bay_w;
1515 batch_bay->reposition_window(bay_x, bay_y, bay_w, bay_h);
1517 int x0 = bay_x+bay_w + 10;
1522 directory_title->reposition_window(x, y); y += pad;
1523 path_title->reposition_window(x, y); y += pad;
1524 start_title->reposition_window(x, y); y += pad;
1525 duration_title->reposition_window(x, y); y += pad;
1526 source_title->reposition_window(x, y);
1528 x = x0 + title_w + pad;
1531 channel_dir->reposition_window(x, y); y += pad;
1532 channel_path->reposition_window(x, y); y += pad;
1533 channel_start->reposition_window(x, y); y += pad;
1534 channel_duration->reposition_window(x, y);
1535 int x2 = x + channel_duration->get_w();
1536 early_time->reposition_window(x2, y);
1537 x2 += early_time->get_w();
1538 late_time->reposition_window(x2, y); y += pad;
1539 channel_source->reposition_window(x, y); y += pad;
1542 channel_clear_batch->reposition_window(x, y);
1543 x += channel_clear_batch->get_w() + 10;
1544 channel_new_batch->reposition_window(x, y);
1545 x += channel_new_batch->get_w() + 10;
1546 channel_delete_batch->reposition_window(x, y);
1550 channel_status->reposition_window(x, y);
1554 int ChannelInfoGUI::close_event()
1560 void ChannelInfoGUI::update_channel_tools()
1562 Batch *batch = batch_bay->get_editing_batch();
1563 channel_path->update(batch->asset->path);
1564 channel_start->update(&batch->start_day, &batch->start_time);
1565 channel_duration->update(0, &batch->duration);
1566 channel_source->update(batch->get_source_text());
1570 void ChannelInfoGUI::incr_event(int start_time_incr, int duration_incr)
1572 Batch *batch = batch_bay->get_editing_batch();
1573 batch->start_time += start_time_incr;
1574 batch->duration += duration_incr;
1575 batch_bay->update_batches();
1576 update_channel_tools();
1580 ChannelInfo::ChannelInfo(MWindow *mwindow)
1582 record_batches(mwindow)
1584 this->mwindow = mwindow;
1585 this->record = mwindow->gui->record;
1586 scan_lock = new Condition(0,"ChannelInfo::scan_lock");
1587 window_lock = new Mutex("ChannelInfo::window_lock");
1588 vdevice_lock = new Mutex("ChannelInfo::vdevice_lock");
1589 progress_lock = new Mutex("ChannelInfo::progress_lock");
1597 poweroff_enable = 0;
1605 ChannelInfo::~ChannelInfo()
1609 delete gui; gui = 0;
1611 record_batches.clear();
1615 delete vdevice_lock;
1616 delete progress_lock;
1619 void ChannelInfo::run_scan()
1621 window_lock->lock("ChannelInfo::run_scan");
1623 gui->lock_window("ChannelInfo::run_scan");
1624 gui->raise_window();
1625 gui->unlock_window();
1628 scan_lock->unlock();
1629 window_lock->unlock();
1632 void ChannelInfo::toggle_scan()
1634 window_lock->lock("ChannelInfo::toggle_scan");
1638 scan_lock->unlock();
1639 window_lock->unlock();
1642 void ChannelInfo::start()
1644 if( !Thread::running() ) {
1650 void ChannelInfo::stop()
1652 if( Thread::running() ) {
1654 scan_lock->unlock();
1655 window_lock->lock("ChannelInfo::stop");
1656 if( gui ) gui->stop(1);
1657 window_lock->unlock();
1663 void ChannelInfo::run()
1665 int root_w = mwindow->gui->get_root_w(1);
1666 int root_h = mwindow->gui->get_root_h(1);
1672 if( record->Thread::running() ) {
1673 char string[BCTEXTLEN];
1674 sprintf(string,_("Recording in progress\n"));
1675 MainError::show_error(string);
1678 EDLSession *session = mwindow->edl->session;
1679 VideoInConfig *vconfig_in = session->vconfig_in;
1680 if( vconfig_in->driver != CAPTURE_DVB ) {
1681 char string[BCTEXTLEN];
1682 sprintf(string,_("capture driver not dvb\n"));
1683 MainError::show_error(string);
1686 int x = mwindow->session->cswindow_x;
1687 int y = mwindow->session->cswindow_y;
1688 int w = mwindow->session->cswindow_w;
1689 int h = mwindow->session->cswindow_h;
1690 if( w < 600 ) w = 600;
1691 if( h < 400 ) h = 400;
1692 int scr_x = mwindow->gui->get_screen_x(1, -1);
1693 int scr_w = mwindow->gui->get_screen_w(1, -1);
1694 if( x < scr_x ) x = scr_x;
1695 if( x > scr_x+scr_w ) x = scr_x+scr_w;
1696 if( x+w > root_w ) x = root_w - w;
1697 if( x < 0 ) { x = 0; w = scr_w; }
1698 if( y+h > root_h ) y = root_h - h;
1699 if( y < 0 ) { y = 0; h = root_h; }
1700 if( y+h > root_h ) h = root_h-y;
1701 mwindow->session->cswindow_x = x;
1702 mwindow->session->cswindow_y = y;
1703 mwindow->session->cswindow_w = w;
1704 mwindow->session->cswindow_h = h;
1706 poweroff_enable = 0;
1707 vdevice = new VideoDevice(mwindow);
1708 int result = vdevice->open_input(vconfig_in, 0, 0, 1., vconfig_in->in_framerate);
1709 dvb_input = result ? 0 : (DeviceDVBInput *)vdevice->mpeg_device();
1711 channeldb = new ChannelDB;
1712 VideoDevice::load_channeldb(channeldb, vconfig_in);
1713 record_batches.load_defaults(channeldb);
1715 window_lock->lock("ChannelInfo::run 0");
1717 gui = new ChannelInfoGUI(this, x, y, w, h);
1718 gui->lock_window("ChannelInfo::gui_create_objects");
1719 gui->create_objects();
1720 gui->set_icon(mwindow->theme->get_image("record_icon"));
1721 gui->reposition_window(x, y);
1722 gui->resize_event(w, h);
1723 dvb_input->set_signal_status(gui->channel_status);
1724 gui->unlock_window();
1725 thread = new ChannelThread(gui);
1727 window_lock->unlock();
1728 result = gui->run_window();
1729 delete thread; thread = 0;
1732 gui->unlock_window();
1733 window_lock->lock("ChannelInfo::run 1");
1734 delete gui; gui = 0;
1735 window_lock->unlock();
1736 record_batches.save_defaults(channeldb);
1738 record_batches.save_default_channel(channeldb);
1740 record->init_lock->lock();
1742 record->set_power_off(poweroff_enable);
1743 record->start_cron_thread();
1746 record_batches.clear();
1747 delete channeldb; channeldb = 0;
1751 char string[BCTEXTLEN];
1752 sprintf(string,_("cannot open dvb video device\n"));
1753 MainError::show_error(string);
1758 void ChannelInfo::close_vdevice()
1760 vdevice_lock->lock("ChannelInfo::close_vdevice");
1761 progress_lock->lock("ChannelInfo::close_vdevice");
1763 vdevice->close_all();
1764 delete vdevice; vdevice = 0;
1766 progress_lock->unlock();
1767 vdevice_lock->unlock();
1770 Batch *ChannelInfo::new_batch()
1772 Batch *batch = new Batch(gui->iwindow->mwindow, 0);
1773 batch->create_objects();
1774 batch->calculate_news();
1775 gui->iwindow->record_batches.append(batch);
1779 void ChannelInfo::delete_batch()
1781 // Abort if one batch left
1782 int edit_batch = editing_batch();
1783 int total_batches = record_batches.total();
1784 if( total_batches > 1 && edit_batch < total_batches ) {
1785 Batch *batch = record_batches[edit_batch];
1786 record_batches.remove(batch); delete batch;
1790 ChannelScan::ChannelScan(MWindow *mwindow)
1791 : BC_MenuItem(_("Scan..."), _("Shift-S"), 'S')
1794 this->mwindow = mwindow;
1797 ChannelScan::~ChannelScan()
1801 int ChannelScan::handle_event()
1803 mwindow->gui->channel_info->run_scan();
1808 ChannelDir::ChannelDir(ChannelInfoGUI *gui, const char *dir, int x, int y)
1809 : RecordBatchesGUI::Dir(gui->iwindow->record_batches, dir, x, y)
1815 ChannelPath::ChannelPath(ChannelInfoGUI *gui, int x, int y)
1816 : RecordBatchesGUI::Path(gui->iwindow->record_batches, x, y)
1822 ChannelStart::ChannelStart(ChannelInfoGUI *gui, int x, int y)
1823 : RecordBatchesGUI::StartTime(gui, gui->iwindow->record_batches, x, y)
1829 ChannelDuration::ChannelDuration(ChannelInfoGUI *gui, int x, int y, int w)
1830 : RecordBatchesGUI::Duration(gui, gui->iwindow->record_batches, x, y, w)
1836 ChannelEarlyTime::ChannelEarlyTime(ChannelInfoGUI *gui, int x, int y,
1837 double *output_time)
1838 : TimeEntryTumbler(gui, x, y, 0, output_time, 15, TIME_MS2, 75)
1843 int ChannelEarlyTime::handle_up_event()
1845 gui->incr_event(incr,-incr);
1846 return TimeEntryTumbler::handle_up_event();
1849 int ChannelEarlyTime::handle_down_event()
1851 gui->incr_event(-incr,incr);
1852 return TimeEntryTumbler::handle_down_event();
1856 ChannelLateTime::ChannelLateTime(ChannelInfoGUI *gui, int x, int y,
1857 double *output_time)
1858 : TimeEntryTumbler(gui, x, y, 0, output_time, 15, TIME_MS2, 75)
1863 int ChannelLateTime::handle_up_event()
1865 gui->incr_event(0,incr);
1866 return TimeEntryTumbler::handle_up_event();
1869 int ChannelLateTime::handle_down_event()
1871 gui->incr_event(0,-incr);
1872 return TimeEntryTumbler::handle_down_event();
1876 ChannelSource::ChannelSource(ChannelInfoGUI *gui, int x, int y)
1877 : RecordBatchesGUI::Source(gui, gui->iwindow->record_batches, x, y)
1882 void ChannelSource::create_objects()
1884 RecordBatchesGUI::Source::create_objects();
1885 ChannelDB *channeldb = gui->iwindow->channeldb;
1886 sources.remove_all_objects();
1887 for(int i = 0; i < channeldb->size(); i++) {
1888 sources.append(new BC_ListBoxItem(channeldb->get(i)->title));
1890 update_list(&sources);
1893 int ChannelSource::handle_event()
1895 int chan_no = get_number();
1896 Channel *channel = gui->iwindow->channeldb->get(chan_no);
1898 Batch *batch = batches.get_editing_batch();
1899 if( batch ) batch->channel = channel;
1900 update(channel->title);
1902 return RecordBatchesGUI::Source::handle_event();
1906 ChannelClearBatch::ChannelClearBatch(ChannelInfoGUI *gui, int x, int y)
1907 : RecordBatchesGUI::ClearBatch(gui->iwindow->record_batches, x, y)
1910 set_tooltip(_("Delete all clips."));
1913 int ChannelClearBatch::handle_event()
1915 gui->iwindow->record_batches.clear();
1916 gui->iwindow->new_batch();
1917 gui->batch_bay->set_current_batch(-1);
1918 gui->batch_bay->set_editing_batch(0);
1919 gui->batch_bay->update_batches(0);
1920 return RecordBatchesGUI::ClearBatch::handle_event();
1924 ChannelNewBatch::ChannelNewBatch(ChannelInfoGUI *gui, int x, int y)
1925 : RecordBatchesGUI::NewBatch(gui->iwindow->record_batches, x, y)
1928 set_tooltip(_("Create new clip."));
1930 int ChannelNewBatch::handle_event()
1932 gui->iwindow->new_batch();
1933 return RecordBatchesGUI::NewBatch::handle_event();
1937 ChannelDeleteBatch::ChannelDeleteBatch(ChannelInfoGUI *gui, int x, int y)
1938 : RecordBatchesGUI::DeleteBatch(gui->iwindow->record_batches, x, y)
1941 set_tooltip(_("Delete clip."));
1944 int ChannelDeleteBatch::handle_event()
1946 gui->iwindow->delete_batch();
1947 return RecordBatchesGUI::DeleteBatch::handle_event();