X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fplugintoggles.C;h=4755584420b478fdef525abe45f2ef1aa3509888;hb=38cb4182e11e57fc426bede3825e825e9d61433b;hp=f06cb94f87b3a818f80292d584527ec2e1e6c23e;hpb=21c2e6b36d6a96c2f662a89459d607b5a387f4eb;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/plugintoggles.C b/cinelerra-5.1/cinelerra/plugintoggles.C index f06cb94f..47555844 100644 --- a/cinelerra-5.1/cinelerra/plugintoggles.C +++ b/cinelerra-5.1/cinelerra/plugintoggles.C @@ -28,15 +28,12 @@ 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); @@ -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; +}