X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Fshiftinterlace%2Fshiftinterlace.C;h=c7b4e0ba7c94e099871320b8b4b73483402e4f7f;hb=1529091cdf16df199a901aabe6e8fa1813a933af;hp=853fb57f6d1e14892c1fa457e2d102d55cea756f;hpb=54cc56bff09f5004b2a6cd454375f06e56acf5a0;p=goodguy%2Fcinelerra.git diff --git a/cinelerra-5.1/plugins/shiftinterlace/shiftinterlace.C b/cinelerra-5.1/plugins/shiftinterlace/shiftinterlace.C index 853fb57f..c7b4e0ba 100644 --- a/cinelerra-5.1/plugins/shiftinterlace/shiftinterlace.C +++ b/cinelerra-5.1/plugins/shiftinterlace/shiftinterlace.C @@ -35,13 +35,22 @@ PluginClient* new_plugin(PluginServer *server) ShiftInterlaceConfig::ShiftInterlaceConfig() { - reset(); + reset(RESET_ALL); } -void ShiftInterlaceConfig::reset() +void ShiftInterlaceConfig::reset(int clear) { - odd_offset = 0; - even_offset = 0; + switch(clear) { + case RESET_ODD_OFFSET : odd_offset = 0; + break; + case RESET_EVEN_OFFSET : even_offset = 0; + break; + case RESET_ALL : + default: + odd_offset = 0; + even_offset = 0; + break; + } } @@ -77,10 +86,10 @@ void ShiftInterlaceConfig::interpolate(ShiftInterlaceConfig &prev, ShiftInterlaceWindow::ShiftInterlaceWindow(ShiftInterlaceMain *plugin) : PluginClientWindow(plugin, - 310, - 110, - 310, - 110, + xS(370), + yS(110), + xS(370), + yS(110), 0) { this->plugin = plugin; @@ -89,25 +98,42 @@ ShiftInterlaceWindow::ShiftInterlaceWindow(ShiftInterlaceMain *plugin) void ShiftInterlaceWindow::create_objects() { - int x = 10, y = 10; - int margin = 30; + int xs10 = xS(10), xs30 = xS(30), xs50 = xS(50), xs90 = xS(90); + int ys10 = yS(10), ys40 = yS(40); + int x = xs10, y = ys10; + int margin = xs30; + int x1 = 0; int clrBtn_w = xs50; add_subwindow(new BC_Title(x, y, _("Odd offset:"))); - add_subwindow(odd_offset = new ShiftInterlaceOdd(plugin, x + 90, y)); + add_subwindow(odd_offset = new ShiftInterlaceOdd(plugin, x + xs90, y)); + x1 = x + xs90 + odd_offset->get_w() + xs10; + add_subwindow(odd_offsetClr = new ShiftInterlaceSliderClr(plugin, this, x1, y, clrBtn_w, RESET_ODD_OFFSET)); + y += margin; add_subwindow(new BC_Title(x, y, _("Even offset:"))); - add_subwindow(even_offset = new ShiftInterlaceEven(plugin, x + 90, y)); - y += 40; + add_subwindow(even_offset = new ShiftInterlaceEven(plugin, x + xs90, y)); + add_subwindow(even_offsetClr = new ShiftInterlaceSliderClr(plugin, this, x1, y, clrBtn_w, RESET_EVEN_OFFSET)); + + y += ys40; add_subwindow(reset = new ShiftInterlaceReset(plugin, this, x, y)); show_window(); flush(); } // for Reset button -void ShiftInterlaceWindow::update() +void ShiftInterlaceWindow::update_gui(int clear) { - odd_offset->update(plugin->config.odd_offset); - even_offset->update(plugin->config.even_offset); + switch(clear) { + case RESET_ODD_OFFSET : odd_offset->update(plugin->config.odd_offset); + break; + case RESET_EVEN_OFFSET : even_offset->update(plugin->config.even_offset); + break; + case RESET_ALL : + default: + odd_offset->update(plugin->config.odd_offset); + even_offset->update(plugin->config.even_offset); + break; + } } @@ -116,8 +142,8 @@ ShiftInterlaceOdd::ShiftInterlaceOdd(ShiftInterlaceMain *plugin, int x, int y) : BC_ISlider(x, y, 0, - 200, - 200, + xS(200), + yS(200), -100, 100, plugin->config.odd_offset) @@ -138,8 +164,8 @@ ShiftInterlaceEven::ShiftInterlaceEven(ShiftInterlaceMain *plugin, int x, int y) : BC_ISlider(x, y, 0, - 200, - 200, + xS(200), + yS(200), -100, 100, plugin->config.even_offset) @@ -169,13 +195,33 @@ ShiftInterlaceReset::~ShiftInterlaceReset() } int ShiftInterlaceReset::handle_event() { - plugin->config.reset(); - gui->update(); + plugin->config.reset(RESET_ALL); + gui->update_gui(RESET_ALL); plugin->send_configure_change(); return 1; } +ShiftInterlaceSliderClr::ShiftInterlaceSliderClr(ShiftInterlaceMain *plugin, ShiftInterlaceWindow *gui, int x, int y, int w, int clear) + : BC_Button(x, y, w, plugin->get_theme()->get_image_set("reset_button")) +{ + this->plugin = plugin; + this->gui = gui; + this->clear = clear; +} +ShiftInterlaceSliderClr::~ShiftInterlaceSliderClr() +{ +} +int ShiftInterlaceSliderClr::handle_event() +{ + // clear==1 ==> Odd slider + // clear==2 ==> Even slider + plugin->config.reset(clear); + gui->update_gui(clear); + plugin->send_configure_change(); + return 1; +} +