Fixed initialisation of tf in file_open(). Without setting the memory to 0,
[cinelerra_cv/mob.git] / plugins / microtheme / microtheme.h
blob3f58ebc748c34effed89ebc266b60c1b3ab98cfa
1 #ifndef MICROTHEME_H
2 #define MICROTHEME_H
4 #include "plugintclient.h"
5 #include "statusbar.inc"
6 #include "theme.h"
7 #include "trackcanvas.inc"
8 #include "timebar.inc"
10 class MicroTheme : public Theme
12 public:
13 MicroTheme();
14 ~MicroTheme();
16 void draw_mwindow_bg(MWindowGUI *gui);
17 void get_mwindow_sizes(MWindowGUI *gui, int w, int h);
18 void get_cwindow_sizes(CWindowGUI *gui);
19 void get_vwindow_sizes(VWindowGUI *gui);
20 void get_recordgui_sizes(RecordGUI *gui, int w, int h);
22 void initialize();
25 class MicroThemeMain : public PluginTClient
27 public:
28 MicroThemeMain(PluginServer *server);
29 ~MicroThemeMain();
31 char* plugin_title();
32 Theme* new_theme();
34 MicroTheme *theme;
40 #endif