Ignore:
Timestamp:
May 15, 2014, 7:53:54 PM (11 years ago)
Author:
Silvan Scherrer
Message:

SMPlayer: update vendor to 0.8.7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • smplayer/vendor/current/src/preferences.h

    r154 r163  
    11/*  smplayer, GUI front-end for mplayer.
    2     Copyright (C) 2006-2013 Ricardo Villalba <rvm@users.sourceforge.net>
     2    Copyright (C) 2006-2014 Ricardo Villalba <rvm@users.sourceforge.net>
    33
    44    This program is free software; you can redistribute it and/or modify
     
    5050        enum OptionState { Detect = -1, Disabled = 0, Enabled = 1 };
    5151        enum H264LoopFilter { LoopDisabled = 0, LoopEnabled = 1, LoopDisabledOnHD = 2 };
     52        enum AutoAddToPlaylistFilter { NoFiles = 0, VideoFiles = 1, AudioFiles = 2, MultimediaFiles = 3, ConsecutiveFiles = 4 };
    5253
    5354        Q_DECLARE_FLAGS(WheelFunctions, WheelFunction);
     
    9899
    99100#if defined(Q_OS_WIN) || defined(Q_OS_OS2)
     101        #ifdef SCREENSAVER_OFF
    100102        bool turn_screensaver_off;
     103        #endif
     104        #ifdef AVOID_SCREENSAVER
    101105        bool avoid_screensaver;
     106        #endif
    102107#else
    103108        bool disable_screensaver;
     
    127132        bool mute;
    128133
     134        // Global equalizer
     135        bool global_audio_equalizer;
     136        AudioEqualizerList audio_equalizer;
     137
    129138        bool autosync;
    130139        int autosync_factor;
     
    134143        double mc_value;
    135144
     145        // When playing a mp4 file, it will use a m4a file for audio if a there's a file with same name but extension m4a
     146        bool autoload_m4a;
     147        int min_step; //<! Step to increase of decrease the controls for color, contrast, brightness and so on
     148
    136149        // Misc
    137150        int osd;
     
    147160        QString dvd_device;
    148161        QString cdrom_device;
     162#ifdef BLURAY_SUPPORT
     163        QString bluray_device;
     164#endif
    149165
    150166#ifdef Q_OS_WIN
     
    230246        //! If false, options requiring freetype won't be used
    231247        bool freetype_support;
     248#ifdef Q_OS_WIN
     249        bool use_windowsfontdir;
     250#endif
    232251
    233252
     
    249268
    250269        bool use_idx; //!< Use -idx
     270        bool use_lavf_demuxer;
    251271
    252272        // Let the user pass options to mplayer
     
    330350        int wheel_function;
    331351
    332         QFlags<WheelFunctions> wheel_function_cycle;
    333 
     352        WheelFunctions wheel_function_cycle;
    334353        bool wheel_function_seeking_reverse;
    335354
     
    353372        bool reset_stop; //! Pressing the stop button resets the position
    354373
     374        //! If true, the left click in the video is delayed some ms
     375        //! to check if the user double clicked
     376        bool delay_left_click;
     377
    355378        QString language;
    356379        QString iconset;
     
    396419
    397420        bool auto_add_to_playlist; //!< Add files to open to playlist
    398         bool add_to_playlist_consecutive_files;
     421        AutoAddToPlaylistFilter media_to_add_to_playlist;
    399422
    400423#if LOGO_ANIMATION
     
    485508        bool floating_control_animated;
    486509        bool floating_display_in_compact_mode;
    487 #ifndef Q_OS_WIN
    488         bool bypass_window_manager;
    489 #endif
     510        int floating_activation_area;
     511        int floating_hide_delay;
    490512
    491513
Note: See TracChangeset for help on using the changeset viewer.