add binfolder path relative filters, fix gbrp color model, vwdw timebar tweaks, title...
[goodguy/history.git] / cinelerra-5.1 / cinelerra / plugintoggles.C
index bf474d0341756606edacd614dd559b1a533efba1..4755584420b478fdef525abe45f2ef1aa3509888 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 "language.h"
 
 
 PluginOn::PluginOn(MWindow *mwindow, int x, int y, Plugin *plugin)
- : BC_Toggle(x, 
-               y, 
-               mwindow->theme->get_image_set("plugin_on"),
-               plugin->on)
+ : BC_Toggle(x, y, mwindow->theme->get_image_set("plugin_on"), plugin->on)
 {
        this->mwindow = mwindow;
        this->plugin = plugin;
        in_use = 1;
-       set_tooltip(_("On"));
+       set_tooltip(plugin->on ? _("Turn Off") : _("Turn On"));
 }
 
 int PluginOn::calculate_w(MWindow *mwindow)
@@ -47,6 +44,7 @@ int PluginOn::calculate_w(MWindow *mwindow)
 void PluginOn::update(int x, int y, Plugin *plugin)
 {
        BC_Toggle::set_value(plugin->on, 0);
+       set_tooltip(plugin->on ? _("Turn Off") : _("Turn On"));
        reposition_window(x, y);
        this->plugin = plugin;
        in_use = 1;
@@ -55,6 +53,7 @@ void PluginOn::update(int x, int y, Plugin *plugin)
 int PluginOn::handle_event()
 {
        plugin->on = get_value();
+       set_tooltip(plugin->on ? _("Turn Off") : _("Turn On"));
        unlock_window();
        mwindow->restart_brender();
        mwindow->sync_parameters(CHANGE_EDL);
@@ -66,8 +65,8 @@ int PluginOn::handle_event()
 
 
 PluginShow::PluginShow(MWindow *mwindow, int x, int y, Plugin *plugin)
- : BC_Toggle(x, 
-               y, 
+ : BC_Toggle(x,
+               y,
                mwindow->theme->get_image_set("plugin_show"),
                plugin->show)
 {
@@ -93,7 +92,7 @@ void PluginShow::update(int x, int y, Plugin *plugin)
 int PluginShow::handle_event()
 {
        unlock_window();
-       if(get_value()) 
+       if(get_value())
                mwindow->show_plugin(plugin);
        else
                mwindow->hide_plugin(plugin, 1);
@@ -101,7 +100,31 @@ int PluginShow::handle_event()
        return 1;
 }
 
+PluginPresetEdit::PluginPresetEdit(MWindow *mwindow, int x, int y, Plugin *plugin)
+ : BC_Button(x, y, mwindow->theme->get_image_set("preset_edit"))
+{
+       this->mwindow = mwindow;
+       this->plugin = plugin;
+       in_use = 1;
+       set_tooltip(_("Preset Edit"));
+}
 
+int PluginPresetEdit::handle_event()
+{
+       mwindow->show_keyframe_gui(plugin);
+       return 1;
+}
 
+int PluginPresetEdit::calculate_w(MWindow *mwindow)
+{
+       VFrame **images = mwindow->theme->get_image_set("preset_edit");
+       return images[0]->get_w();
+}
 
+void PluginPresetEdit::update(int x, int y, Plugin *plugin)
+{
+       reposition_window(x, y);
+       this->plugin = plugin;
+       in_use = 1;
+}