X-Git-Url: http://git.cinelerra-gg.org/git/?p=goodguy%2Fhistory.git;a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Finterfaceprefs.h;h=1d1844c1e38fefda744460553cb3b991475f94ab;hp=d4efc81f6ab5105d36b3b4b30976de599467e516;hb=7e5a0760f40ff787cc3d93cb7768a901ebe52809;hpb=e5d1c3ec8b49e9e4cd31f30e991f52ab11de93b1 diff --git a/cinelerra-5.1/cinelerra/interfaceprefs.h b/cinelerra-5.1/cinelerra/interfaceprefs.h index d4efc81f..1d1844c1 100644 --- a/cinelerra-5.1/cinelerra/interfaceprefs.h +++ b/cinelerra-5.1/cinelerra/interfaceprefs.h @@ -48,7 +48,8 @@ public: IndexSize *isize; IndexCount *icount; IndexPathText *ipathtext; - DeleteAllIndexes *deleteall; + DeleteAllIndexes *del_indexes; + DeleteAllIndexes *del_clipngs; IndexFFMPEGMarkerFiles *ffmpeg_marker_files; ViewBehaviourText *button1, *button2, *button3; @@ -62,6 +63,7 @@ public: PrefsFileProbes *file_probes; PrefsTrapSigSEGV *trap_segv; PrefsTrapSigINTR *trap_intr; + SnapshotPathText *snapshot_path; }; @@ -273,5 +275,37 @@ public: PreferencesWindow *pwindow; }; +class SnapshotPathText : public BC_TextBox +{ +public: + SnapshotPathText(PreferencesWindow *pwindow, + InterfacePrefs *subwindow, int x, int y, int w); + ~SnapshotPathText(); + + int handle_event(); + PreferencesWindow *pwindow; + InterfacePrefs *subwindow; +}; + +class PrefsAutostartLV2UI : public BC_CheckBox +{ +public: + PrefsAutostartLV2UI(int x, int y, PreferencesWindow *pwindow); + int handle_event(); + PreferencesWindow *pwindow; +}; + +class PrefsLV2PathText : public BC_TextBox +{ +public: + PrefsLV2PathText(PreferencesWindow *pwindow, + InterfacePrefs *subwindow, int x, int y, int w); + ~PrefsLV2PathText(); + + int handle_event(); + PreferencesWindow *pwindow; + InterfacePrefs *subwindow; +}; + #endif