PKGBUILD fix libva/vdpau deps
[goodguy/cinelerra.git] / cinelerra-5.1 / plugins / shiftinterlace / shiftinterlace.C
index e4cf3c4af49df0774ac34d0ac99efbecfa7031e7..3c8b15f305fafc4316bddc813f1784a4ccb98bf1 100644 (file)
  *
  */
 
-#include "bcdisplayinfo.h"
-#include "clip.h"
-#include "bchash.h"
-#include "filexml.h"
-#include "guicast.h"
-#include "language.h"
-#include "pluginvclient.h"
-#include "vframe.h"
+#include "shiftinterlace.h"
 
 
 
-#include <stdint.h>
-#include <string.h>
-
-
-
-
-
-
-
-class ShiftInterlaceWindow;
-class ShiftInterlaceMain;
-
-class ShiftInterlaceConfig
-{
-public:
-       ShiftInterlaceConfig();
-
-       int equivalent(ShiftInterlaceConfig &that);
-       void copy_from(ShiftInterlaceConfig &that);
-       void interpolate(ShiftInterlaceConfig &prev,
-               ShiftInterlaceConfig &next,
-               long prev_frame,
-               long next_frame,
-               long current_frame);
-
-
-       int odd_offset;
-       int even_offset;
-};
-
-
-class ShiftInterlaceOdd : public BC_ISlider
-{
-public:
-       ShiftInterlaceOdd(ShiftInterlaceMain *plugin, int x, int y);
-       int handle_event();
-       ShiftInterlaceMain *plugin;
-};
-
-class ShiftInterlaceEven : public BC_ISlider
-{
-public:
-       ShiftInterlaceEven(ShiftInterlaceMain *plugin, int x, int y);
-       int handle_event();
-       ShiftInterlaceMain *plugin;
-};
-
-class ShiftInterlaceWindow : public PluginClientWindow
-{
-public:
-       ShiftInterlaceWindow(ShiftInterlaceMain *plugin);
-
-       void create_objects();
-
-       ShiftInterlaceOdd *odd_offset;
-       ShiftInterlaceEven *even_offset;
-       ShiftInterlaceMain *plugin;
-};
-
-
-
-
-
-
-class ShiftInterlaceMain : public PluginVClient
-{
-public:
-       ShiftInterlaceMain(PluginServer *server);
-       ~ShiftInterlaceMain();
-
-// required for all realtime plugins
-       PLUGIN_CLASS_MEMBERS(ShiftInterlaceConfig)
-       int process_realtime(VFrame *input_ptr, VFrame *output_ptr);
-       int is_realtime();
-       void update_gui();
-       void save_data(KeyFrame *keyframe);
-       void read_data(KeyFrame *keyframe);
-
-
-       void shift_row(VFrame *input_frame,
-               VFrame *output_frame,
-               int offset,
-               int row);
-
-
-};
-
-
 
 
 PluginClient* new_plugin(PluginServer *server)
@@ -130,8 +35,22 @@ PluginClient* new_plugin(PluginServer *server)
 
 ShiftInterlaceConfig::ShiftInterlaceConfig()
 {
-       odd_offset = 0;
-       even_offset = 0;
+       reset(RESET_ALL);
+}
+
+void ShiftInterlaceConfig::reset(int clear)
+{
+       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;
+       }
 }
 
 
@@ -167,10 +86,10 @@ void ShiftInterlaceConfig::interpolate(ShiftInterlaceConfig &prev,
 
 ShiftInterlaceWindow::ShiftInterlaceWindow(ShiftInterlaceMain *plugin)
  : PluginClientWindow(plugin,
-       310,
-       100,
-       310,
-       100,
+       370,
+       110,
+       370,
+       110,
        0)
 {
        this->plugin = plugin;
@@ -181,17 +100,40 @@ void ShiftInterlaceWindow::create_objects()
 {
        int x = 10, y = 10;
        int margin = 30;
+       int x1 = 0; int clrBtn_w = 50;
 
        add_subwindow(new BC_Title(x, y, _("Odd offset:")));
        add_subwindow(odd_offset = new ShiftInterlaceOdd(plugin, x + 90, y));
+       x1 = x + 90 + odd_offset->get_w() + 10;
+       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));
+       add_subwindow(even_offsetClr = new ShiftInterlaceSliderClr(plugin, this, x1, y, clrBtn_w, RESET_EVEN_OFFSET));
 
+       y += 40;
+       add_subwindow(reset = new ShiftInterlaceReset(plugin, this, x, y));
        show_window();
        flush();
 }
 
+// for Reset button
+void ShiftInterlaceWindow::update_gui(int clear)
+{
+       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;
+       }
+}
+
 
 
 ShiftInterlaceOdd::ShiftInterlaceOdd(ShiftInterlaceMain *plugin, int x, int y)
@@ -240,6 +182,45 @@ int ShiftInterlaceEven::handle_event()
 
 
 
+ShiftInterlaceReset::ShiftInterlaceReset(ShiftInterlaceMain *plugin, ShiftInterlaceWindow *gui, int x, int y)
+ : BC_GenericButton(x, y, _("Reset"))
+{
+       this->plugin = plugin;
+       this->gui = gui;
+}
+ShiftInterlaceReset::~ShiftInterlaceReset()
+{
+}
+int ShiftInterlaceReset::handle_event()
+{
+       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_GenericButton(x, y, w, _("⌂"))
+{
+       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;
+}
+
+