X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Firissquare%2Firissquare.C;h=0408a394ded6fadb1819b32b38c418c076b901f7;hb=5c1aff2fd123b65be6e51ca7652185e14ddaf168;hp=c98646cb095671acbebe15f364a68aa5dd81a294;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/plugins/irissquare/irissquare.C b/cinelerra-5.1/plugins/irissquare/irissquare.C index c98646cb..0408a394 100644 --- a/cinelerra-5.1/plugins/irissquare/irissquare.C +++ b/cinelerra-5.1/plugins/irissquare/irissquare.C @@ -2,21 +2,21 @@ /* * CINELERRA * Copyright (C) 2008 Adam Williams - * + * * 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" @@ -39,13 +39,13 @@ REGISTER_PLUGIN(IrisSquareMain) -IrisSquareIn::IrisSquareIn(IrisSquareMain *plugin, +IrisSquareIn::IrisSquareIn(IrisSquareMain *plugin, IrisSquareWindow *window, int x, int y) - : BC_Radial(x, - y, - plugin->direction == 0, + : BC_Radial(x, + y, + plugin->direction == 0, _("In")) { this->plugin = plugin; @@ -61,13 +61,13 @@ int IrisSquareIn::handle_event() return 0; } -IrisSquareOut::IrisSquareOut(IrisSquareMain *plugin, +IrisSquareOut::IrisSquareOut(IrisSquareMain *plugin, IrisSquareWindow *window, int x, int y) - : BC_Radial(x, - y, - plugin->direction == 1, + : BC_Radial(x, + y, + plugin->direction == 1, _("Out")) { this->plugin = plugin; @@ -91,11 +91,11 @@ int IrisSquareOut::handle_event() IrisSquareWindow::IrisSquareWindow(IrisSquareMain *plugin) - : PluginClientWindow(plugin, - 320, - 50, - 320, - 50, + : PluginClientWindow(plugin, + 320, + 50, + 320, + 50, 0) { this->plugin = plugin; @@ -107,12 +107,12 @@ void IrisSquareWindow::create_objects() int x = 10, y = 10; add_subwindow(new BC_Title(x, y, _("Direction:"))); x += 100; - add_subwindow(in = new IrisSquareIn(plugin, + add_subwindow(in = new IrisSquareIn(plugin, this, x, y)); x += 100; - add_subwindow(out = new IrisSquareOut(plugin, + add_subwindow(out = new IrisSquareOut(plugin, this, x, y)); @@ -133,15 +133,15 @@ IrisSquareMain::IrisSquareMain(PluginServer *server) : PluginVClient(server) { direction = 0; - + } IrisSquareMain::~IrisSquareMain() { - + } -const char* IrisSquareMain::plugin_title() { return _("IrisSquare"); } +const char* IrisSquareMain::plugin_title() { return N_("IrisSquare"); } int IrisSquareMain::is_video() { return 1; } int IrisSquareMain::is_transition() { return 1; } int IrisSquareMain::uses_gui() { return 1; }