add timecode units/alignment/probe, add prefs auto_rotate,
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / appearanceprefs.h
index e7ef3426f1a5d2071ed0872eeb5fc68dddbf1ad5..96a6a41e85721a9751a0a1e60c2e4387d29fc3ac 100644 (file)
@@ -42,6 +42,7 @@ public:
        int update(int new_value);
        TimeFormatHMS *hms;
        TimeFormatHMSF *hmsf;
+       TimeFormatTimecode *timecode;
        TimeFormatSamples *samples;
        TimeFormatHex *hex;
        TimeFormatFrames *frames;
@@ -76,6 +77,15 @@ public:
        AppearancePrefs *tfwindow;
 };
 
+class TimeFormatTimecode : public BC_Radial
+{
+public:
+       TimeFormatTimecode(PreferencesWindow *pwindow, AppearancePrefs *tfwindow, int value, int x, int y);
+       int handle_event();
+       PreferencesWindow *pwindow;
+       AppearancePrefs *tfwindow;
+};
+
 class TimeFormatSamples : public BC_Radial
 {
 public:
@@ -311,6 +321,14 @@ public:
        PreferencesWindow *pwindow;
 };
 
+class AutoRotate: public BC_CheckBox
+{
+public:
+       AutoRotate(PreferencesWindow *pwindow, int x, int y);
+       int handle_event();
+       PreferencesWindow *pwindow;
+};
+
 class ForwardRenderDisplacement : public BC_CheckBox
 {
 public: