Credit Andrew - fix vorbis audio which was scratchy and ensure aging plugin does...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / appearanceprefs.h
index 5bde37be400496afceb760aee7137a71288a4dce..590732b5b9e4167dc27e4940107ea1ae71d6e69a 100644 (file)
@@ -242,7 +242,8 @@ public:
 
 class ViewViconColorMode : public BC_PopupMenu
 {
-       static const char *vicon_color_modes[3];
+#define MAX_VICON_COLOR_MODE 3
+       static const char *vicon_color_modes[MAX_VICON_COLOR_MODE];
 public:
        ViewViconColorMode(PreferencesWindow *pwindow, int x, int y);
        ~ViewViconColorMode();
@@ -286,6 +287,14 @@ public:
        PreferencesWindow *pwindow;
 };
 
+class OngoingBackups: public BC_CheckBox
+{
+public:
+       OngoingBackups(PreferencesWindow *pwindow, int x, int y);
+       int handle_event();
+       PreferencesWindow *pwindow;
+};
+
 class BD_WarnRoot : public BC_CheckBox
 {
 public:
@@ -369,7 +378,8 @@ public:
 class YuvColorSpace : public BC_PopupMenu
 {
 public:
-       static const char *color_space[3];
+#define MAX_COLOR_SPACE  5
+       static const char *color_space[MAX_COLOR_SPACE];
        YuvColorSpace(int x, int y, PreferencesWindow *pwindow);
        ~YuvColorSpace();
 
@@ -391,7 +401,8 @@ public:
 class YuvColorRange : public BC_PopupMenu
 {
 public:
-       static const char *color_range[2];
+#define MAX_COLOR_RANGE 2
+       static const char *color_range[MAX_COLOR_RANGE];
        YuvColorRange(int x, int y, PreferencesWindow *pwindow);
        ~YuvColorRange();