X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Frecordmonitor.h;h=65bf732d078bfaa2bbcb4e34c5e48fffd53d7ccf;hb=066bf914215f31bbfe598f2cbce10d130f7fc519;hp=ac3bd1d6a212f3149afee2e978eb8e2c0cee78e1;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/recordmonitor.h b/cinelerra-5.1/cinelerra/recordmonitor.h index ac3bd1d6..65bf732d 100644 --- a/cinelerra-5.1/cinelerra/recordmonitor.h +++ b/cinelerra-5.1/cinelerra/recordmonitor.h @@ -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: