X-Git-Url: https://cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Fsharpen%2Fsharpenwindow.h;fp=cinelerra-5.1%2Fplugins%2Fsharpen%2Fsharpenwindow.h;h=6c5bffb9a9ef4b7fcc1902ad390e08a23900fb13;hb=1c6e05239a27d92813c27c697ccac25378b9efa0;hp=2376fa9665b04a2de5a2f336affda2ae9846e86c;hpb=da82546b4d3b6b056c6c333b2d52fba1bdcb1f50;p=goodguy%2Fcinelerra.git diff --git a/cinelerra-5.1/plugins/sharpen/sharpenwindow.h b/cinelerra-5.1/plugins/sharpen/sharpenwindow.h index 2376fa96..6c5bffb9 100644 --- a/cinelerra-5.1/plugins/sharpen/sharpenwindow.h +++ b/cinelerra-5.1/plugins/sharpen/sharpenwindow.h @@ -39,6 +39,7 @@ class SharpenInterlace; class SharpenSlider; class SharpenHorizontal; class SharpenLuminance; +class SharpenReset; class SharpenWindow : public PluginClientWindow { @@ -47,12 +48,14 @@ public: ~SharpenWindow(); void create_objects(); + void update(); SharpenMain *client; SharpenSlider *sharpen_slider; SharpenInterlace *sharpen_interlace; SharpenHorizontal *sharpen_horizontal; SharpenLuminance *sharpen_luminance; + SharpenReset *reset; }; class SharpenSlider : public BC_ISlider @@ -96,5 +99,14 @@ public: SharpenMain *client; }; +class SharpenReset : public BC_GenericButton +{ +public: + SharpenReset(SharpenMain *client, SharpenWindow *gui, int x, int y); + ~SharpenReset(); + int handle_event(); + SharpenMain *client; + SharpenWindow *gui; +}; #endif