X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fctimebar.C;h=b22b4db7ffcf06bfeac8f0cba4eb319c4119e0c5;hb=463702f1b724c43a1cb7951ce7d71986f9715d5f;hp=8cdb4cbdabbc749a37f5bdd34ef5c58c87190af1;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/ctimebar.C b/cinelerra-5.1/cinelerra/ctimebar.C index 8cdb4cbd..b22b4db7 100644 --- a/cinelerra-5.1/cinelerra/ctimebar.C +++ b/cinelerra-5.1/cinelerra/ctimebar.C @@ -32,18 +32,9 @@ #include "theme.h" -CTimeBar::CTimeBar(MWindow *mwindow, - CWindowGUI *gui, - int x, - int y, - int w, - int h) - : TimeBar(mwindow, - gui, - x, - y, - w, - h) +CTimeBar::CTimeBar(MWindow *mwindow, CWindowGUI *gui, + int x, int y, int w, int h) + : TimeBar(mwindow, gui, x, y, w, h) { this->mwindow = mwindow; this->gui = gui; @@ -75,13 +66,12 @@ double CTimeBar::pixel_to_position(int pixel) { double start = 0, length = 0; EDL *edl = get_edl(); - if(edl) - { + if( edl ) { start = edl->local_session->preview_start; - if(start >= 0) + if( start >= 0 ) length = edl->local_session->preview_end - start; } - if(length <= 0) + if( length <= 0 ) length = get_edl_length(); return start + (double)pixel * length / get_w(); } @@ -98,29 +88,22 @@ void CTimeBar::update_cursor() void CTimeBar::select_label(double position) { - EDL *edl = mwindow->edl; - - gui->unlock_window(); - mwindow->gui->mbuttons->transport->handle_transport(STOP, 1, 0, 0); - gui->lock_window(); + gui->stop_transport("CTimeBar::select_label"); - position = mwindow->edl->align_to_frame(position, 1); + EDL *edl = mwindow->edl; + position = edl->align_to_frame(position, 1); - if(shift_down()) - { - if(position > edl->local_session->get_selectionend(1) / 2 + - edl->local_session->get_selectionstart(1) / 2) - { + if( shift_down() ) { + if( position > edl->local_session->get_selectionend(1) / 2 + + edl->local_session->get_selectionstart(1) / 2 ) { edl->local_session->set_selectionend(position); } - else - { + else { edl->local_session->set_selectionstart(position); } } - else - { + else { edl->local_session->set_selectionstart(position); edl->local_session->set_selectionend(position); } @@ -133,19 +116,10 @@ void CTimeBar::select_label(double position) mwindow->gui->lock_window(); mwindow->gui->hide_cursor(0); mwindow->gui->draw_cursor(1); - mwindow->gui->update(0, - 1, // 1 for incremental drawing. 2 for full refresh - 1, - 0, - 1, - 1, - 0); + mwindow->gui->update(0, 1, // 1 for incremental drawing. 2 for full refresh + 1, 0, 1, 1, 0); mwindow->gui->unlock_window(); mwindow->update_plugin_guis(); //printf("CTimeBar::select_label 2\n"); } - - - -