X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Finterfaceprefs.h;h=674bdc0f93bddf5761a7efd05db879846152f2cb;hb=a0cf574cd7814600dc5730b8204b51cb91f8ad12;hp=a16cb750720b3f9872309d3fb91273fe5ac18adc;hpb=d85ee0843fbbd79a0a7d2ffa0aac57968e24f6d7;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/interfaceprefs.h b/cinelerra-5.1/cinelerra/interfaceprefs.h index a16cb750..674bdc0f 100644 --- a/cinelerra-5.1/cinelerra/interfaceprefs.h +++ b/cinelerra-5.1/cinelerra/interfaceprefs.h @@ -22,9 +22,10 @@ #ifndef INTERFACEPREFS_H #define INTERFACEPREFS_H +class InterfacePrefs; +class IndexPathText; class IndexSize; class IndexCount; -class IndexPathText; class TimeFormatHMS; class TimeFormatHMSF; class TimeFormatSamples; @@ -32,19 +33,35 @@ class TimeFormatFrames; class TimeFormatHex; class TimeFormatFeet; class TimeFormatSeconds; +class TimeFormatFeetSetting; class MeterMinDB; class MeterMaxDB; class MeterVUDB; class MeterVUInt; class ViewBehaviourText; +class ViewBehaviourItem; class ViewTheme; -class ViewThumbnails; class ViewThemeItem; +class ViewPluginIcons; +class ViewPluginIconItem; +class ViewThumbnails; class UseTipWindow; +class UseWarnIndecies; +class UseWarnVersion; +class BD_WarnRoot; +class ScanCommercials; +class AndroidRemote; +class PopupMenuBtnup; +class ActivateFocusPolicy; +class DeactivateFocusPolicy; +class AndroidPIN; +class AndroidPort; +class ShBtnPrefs; class StillImageUseDuration; class StillImageDuration; class KeyframeReticle; -class PopupMenuBtnup; +class HairlineItem; +class IndexFFMPEGMarkerFiles; #include "browsebutton.h" #include "deleteallindexes.inc" @@ -70,6 +87,7 @@ public: IndexCount *icount; IndexPathText *ipathtext; DeleteAllIndexes *deleteall; + IndexFFMPEGMarkerFiles *ffmpeg_marker_files; TimeFormatHMS *hms; TimeFormatHMSF *hmsf; @@ -263,20 +281,40 @@ public: PreferencesWindow *pwindow; }; -class ViewThumbnails : public BC_CheckBox +class ViewThemeItem : public BC_MenuItem { public: - ViewThumbnails(int x, int y, PreferencesWindow *pwindow); + ViewThemeItem(ViewTheme *popup, const char *text); int handle_event(); + ViewTheme *popup; +}; + +class ViewPluginIcons : public BC_PopupMenu +{ +public: + ViewPluginIcons(int x, int y, PreferencesWindow *pwindow); + ~ViewPluginIcons(); + + void create_objects(); + int handle_event(); + PreferencesWindow *pwindow; }; -class ViewThemeItem : public BC_MenuItem +class ViewPluginIconItem : public BC_MenuItem { public: - ViewThemeItem(ViewTheme *popup, char *text); + ViewPluginIconItem(ViewPluginIcons *popup, const char *text); int handle_event(); - ViewTheme *popup; + ViewPluginIcons *popup; +}; + +class ViewThumbnails : public BC_CheckBox +{ +public: + ViewThumbnails(int x, int y, PreferencesWindow *pwindow); + int handle_event(); + PreferencesWindow *pwindow; }; class UseTipWindow : public BC_CheckBox @@ -414,4 +452,16 @@ public: int hairline; }; +class IndexFFMPEGMarkerFiles : public BC_CheckBox +{ +public: + IndexFFMPEGMarkerFiles(InterfacePrefs *iface_prefs, int x, int y); + ~IndexFFMPEGMarkerFiles(); + + int handle_event(); + + InterfacePrefs *iface_prefs; +}; + + #endif