r1006: configure: Use libx264_pic instead of libx264 if available.
[cinelerra_cv/mob.git] / cinelerra / plugintoggles.h
blob99da6c247b1828807cdc832f99c97f54359cff3b
1 #ifndef PLUGINTOGGLES_H
2 #define PLUGINTOGGLES_H
5 #include "guicast.h"
6 #include "mwindow.inc"
7 #include "plugin.inc"
10 class PluginOn : public BC_Toggle
12 public:
13 PluginOn(MWindow *mwindow, int x, int y, Plugin *plugin);
14 static int calculate_w(MWindow *mwindow);
15 void update(int x, int y, Plugin *plugin);
16 int handle_event();
17 MWindow *mwindow;
18 int in_use;
19 Plugin *plugin;
24 class PluginShow : public BC_Toggle
26 public:
27 PluginShow(MWindow *mwindow, int x, int y, Plugin *plugin);
28 MWindow *mwindow;
29 static int calculate_w(MWindow *mwindow);
30 void update(int x, int y, Plugin *plugin);
31 int handle_event();
32 int in_use;
33 Plugin *plugin;
39 #endif