merged hv7 mod
[goodguy/history.git] / cinelerra-5.1 / cinelerra / recordmonitor.h
index ac3bd1d6a212f3149afee2e978eb8e2c0cee78e1..65bf732d078bfaa2bbcb4e34c5e48fffd53d7ccf 100644 (file)
@@ -86,6 +86,8 @@ public:
 
 class ReverseInterlace;
 class RecordMonitorCanvas;
+class DoCursor;
+class DoBigCursor;
 
 class RecordMonitorGUI : public BC_Window
 {
@@ -113,6 +115,8 @@ public:
 #endif
        RecordChannelPicker *channel_picker;
        ScopeEnable *scope_toggle;
+       DoCursor *cursor_toggle;
+       DoBigCursor *big_cursor_toggle;
        ReverseInterlace *reverse_interlace;
        int cursor_x_origin, cursor_y_origin;
        int translate_x_origin, translate_y_origin;
@@ -235,6 +239,24 @@ public:
        Record *record;
 };
 
+class DoCursor : public BC_CheckBox
+{
+public:
+       DoCursor(Record *record, int x, int y);
+       ~DoCursor();
+       int handle_event();
+       Record *record;
+};
+
+class DoBigCursor : public BC_CheckBox
+{
+public:
+       DoBigCursor(Record *record, int x, int y);
+       ~DoBigCursor();
+       int handle_event();
+       Record *record;
+};
+
 class ReverseInterlace : public BC_CheckBox
 {
 public: