remove whitespace at eol
[goodguy/history.git] / cinelerra-5.1 / plugins / slide / slide.C
index ad03b5c133bafb0c3fb08fdc6a9d9c6b8e885f88..4c918213e96192da79194bb98708f479cbe2bc71 100644 (file)
@@ -2,21 +2,21 @@
 /*
  * CINELERRA
  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
- * 
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- * 
+ *
  */
 
 #include "bcdisplayinfo.h"
@@ -40,13 +40,13 @@ REGISTER_PLUGIN(SlideMain)
 
 
 
-SlideLeft::SlideLeft(SlideMain *plugin, 
+SlideLeft::SlideLeft(SlideMain *plugin,
        SlideWindow *window,
        int x,
        int y)
- : BC_Radial(x, 
-               y, 
-               plugin->motion_direction == 0, 
+ : BC_Radial(x,
+               y,
+               plugin->motion_direction == 0,
                _("Left"))
 {
        this->plugin = plugin;
@@ -62,13 +62,13 @@ int SlideLeft::handle_event()
        return 0;
 }
 
-SlideRight::SlideRight(SlideMain *plugin, 
+SlideRight::SlideRight(SlideMain *plugin,
        SlideWindow *window,
        int x,
        int y)
- : BC_Radial(x, 
-               y, 
-               plugin->motion_direction == 1, 
+ : BC_Radial(x,
+               y,
+               plugin->motion_direction == 1,
                _("Right"))
 {
        this->plugin = plugin;
@@ -84,13 +84,13 @@ int SlideRight::handle_event()
        return 0;
 }
 
-SlideIn::SlideIn(SlideMain *plugin, 
+SlideIn::SlideIn(SlideMain *plugin,
        SlideWindow *window,
        int x,
        int y)
- : BC_Radial(x, 
-               y, 
-               plugin->direction == 0, 
+ : BC_Radial(x,
+               y,
+               plugin->direction == 0,
                _("In"))
 {
        this->plugin = plugin;
@@ -106,13 +106,13 @@ int SlideIn::handle_event()
        return 0;
 }
 
-SlideOut::SlideOut(SlideMain *plugin, 
+SlideOut::SlideOut(SlideMain *plugin,
        SlideWindow *window,
        int x,
        int y)
- : BC_Radial(x, 
-               y, 
-               plugin->direction == 1, 
+ : BC_Radial(x,
+               y,
+               plugin->direction == 1,
                _("Out"))
 {
        this->plugin = plugin;
@@ -136,11 +136,11 @@ int SlideOut::handle_event()
 
 
 SlideWindow::SlideWindow(SlideMain *plugin)
- : PluginClientWindow(plugin, 
-       320, 
-       100, 
-       320, 
-       100, 
+ : PluginClientWindow(plugin,
+       320,
+       100,
+       320,
+       100,
        0)
 {
        this->plugin = plugin;
@@ -156,12 +156,12 @@ void SlideWindow::create_objects()
        int x = 10, y = 10;
        add_subwindow(new BC_Title(x, y, _("Direction:")));
        x += 100;
-       add_subwindow(left = new SlideLeft(plugin, 
+       add_subwindow(left = new SlideLeft(plugin,
                this,
                x,
                y));
        x += 100;
-       add_subwindow(right = new SlideRight(plugin, 
+       add_subwindow(right = new SlideRight(plugin,
                this,
                x,
                y));
@@ -170,12 +170,12 @@ void SlideWindow::create_objects()
        x = 10;
        add_subwindow(new BC_Title(x, y, _("Direction:")));
        x += 100;
-       add_subwindow(in = new SlideIn(plugin, 
+       add_subwindow(in = new SlideIn(plugin,
                this,
                x,
                y));
        x += 100;
-       add_subwindow(out = new SlideOut(plugin, 
+       add_subwindow(out = new SlideOut(plugin,
                this,
                x,
                y));
@@ -199,12 +199,12 @@ SlideMain::SlideMain(PluginServer *server)
 {
        motion_direction = 0;
        direction = 0;
-       
+
 }
 
 SlideMain::~SlideMain()
 {
-       
+
 }
 
 const char* SlideMain::plugin_title() { return _("Slide"); }
@@ -356,7 +356,7 @@ int SlideMain::process_realtime(VFrame *incoming, VFrame *outgoing)
                        SLIDE(uint16_t, 4)
                        break;
        }
-       
+
 //     int64_t dif= get_difference(&start_time);
 //     printf("diff: %lli\n", dif);