X-Git-Url: http://git.cinelerra-gg.org/git/?p=goodguy%2Fhistory.git;a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Ftimebar.C;fp=cinelerra-5.1%2Fcinelerra%2Ftimebar.C;h=755e8e4196e0a85779fd62199fed0c562da821c8;hp=10a095f9546edbb81a97c4a0a10ec38bca83a73c;hb=7fa4ccc2c91d37f20f3618261e4cbaa9d5d3c740;hpb=11b3a0bebdfdfe15ca2985624244fd1acd978fe4 diff --git a/cinelerra-5.1/cinelerra/timebar.C b/cinelerra-5.1/cinelerra/timebar.C index 10a095f9..755e8e41 100644 --- a/cinelerra-5.1/cinelerra/timebar.C +++ b/cinelerra-5.1/cinelerra/timebar.C @@ -71,6 +71,8 @@ LabelGUI::LabelGUI(MWindow *mwindow, TimeBar *timebar, LabelGUI::~LabelGUI() { + if( timebar->drag_label == this ) + timebar->drag_label = 0; } int LabelGUI::get_y(MWindow *mwindow, TimeBar *timebar) @@ -93,7 +95,7 @@ void LabelGUI::reposition(int flush) int LabelGUI::button_press_event() { - int result = 0; + int result = test_drag_label(1); if( this->is_event_win() && get_buttonpress() == 3 ) { if( label ) { @@ -110,6 +112,38 @@ int LabelGUI::button_press_event() return result; } +int LabelGUI::button_release_event() +{ + int ret = BC_Toggle::button_release_event(); + test_drag_label(0); + return ret; +} + +int LabelGUI::test_drag_label(int press) +{ + if( is_event_win() && get_buttonpress() == 1 ) { + switch( timebar->current_operation ) { + case TIMEBAR_NONE: + if( press && get_value() ) { + timebar->current_operation = TIMEBAR_DRAG_LABEL; + timebar->drag_label = this; + set_cursor(MOVE_CURSOR, 0, 0); + mwindow->undo->update_undo_before(_("drag label"), this); + return 1; + } + break; + case TIMEBAR_DRAG_LABEL: + if( !press ) { + timebar->current_operation = TIMEBAR_NONE; + set_cursor(ARROW_CURSOR, 0, 0); + mwindow->undo->update_undo_after(_("drag label"), LOAD_TIMEBAR); + } + break; + } + } + return 0; +} + int LabelGUI::handle_event() { timebar->select_label(position); @@ -171,6 +205,7 @@ TimeBar::TimeBar(MWindow *mwindow, BC_WindowBase *gui, //printf("TimeBar::TimeBar %d %d %d %d\n", x, y, w, h); this->gui = gui; this->mwindow = mwindow; + this->drag_label = 0; label_edit = new LabelEdit(mwindow, mwindow->awindow, 0); pane = 0; highlighted = 0; @@ -325,7 +360,7 @@ void TimeBar::draw_inout_highlight() int out_x = position_to_pixel(out_position); CLAMP(in_x, 0, get_w()); CLAMP(out_x, 0, get_w()); - set_color(GREEN); + set_color(mwindow->theme->inout_highlight_color); int lw = 5; set_line_width(lw); set_inverse(); @@ -767,6 +802,25 @@ int TimeBar::cursor_motion_event() result = move_preview(redraw); break; + case TIMEBAR_DRAG_LABEL: + if( drag_label ) { + int pixel = get_relative_cursor_x(); + double position = pixel_to_position(pixel); + if( drag_label->label ) + drag_label->label->position = position; + else if( drag_label == in_point ) { + EDL *edl = get_edl(); + edl->local_session->set_inpoint(position); + } + else if( drag_label == out_point ) { + EDL *edl = get_edl(); + edl->local_session->set_outpoint(position); + } + } + highlighted = 1; + redraw = 1; + break; + default: if( cursor_above() ) { highlighted = 1;