Changeset 163 for smplayer/vendor/current/src/preferences.h
- Timestamp:
- May 15, 2014, 7:53:54 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/vendor/current/src/preferences.h
r154 r163 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 3Ricardo Villalba <rvm@users.sourceforge.net>2 Copyright (C) 2006-2014 Ricardo Villalba <rvm@users.sourceforge.net> 3 3 4 4 This program is free software; you can redistribute it and/or modify … … 50 50 enum OptionState { Detect = -1, Disabled = 0, Enabled = 1 }; 51 51 enum H264LoopFilter { LoopDisabled = 0, LoopEnabled = 1, LoopDisabledOnHD = 2 }; 52 enum AutoAddToPlaylistFilter { NoFiles = 0, VideoFiles = 1, AudioFiles = 2, MultimediaFiles = 3, ConsecutiveFiles = 4 }; 52 53 53 54 Q_DECLARE_FLAGS(WheelFunctions, WheelFunction); … … 98 99 99 100 #if defined(Q_OS_WIN) || defined(Q_OS_OS2) 101 #ifdef SCREENSAVER_OFF 100 102 bool turn_screensaver_off; 103 #endif 104 #ifdef AVOID_SCREENSAVER 101 105 bool avoid_screensaver; 106 #endif 102 107 #else 103 108 bool disable_screensaver; … … 127 132 bool mute; 128 133 134 // Global equalizer 135 bool global_audio_equalizer; 136 AudioEqualizerList audio_equalizer; 137 129 138 bool autosync; 130 139 int autosync_factor; … … 134 143 double mc_value; 135 144 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 136 149 // Misc 137 150 int osd; … … 147 160 QString dvd_device; 148 161 QString cdrom_device; 162 #ifdef BLURAY_SUPPORT 163 QString bluray_device; 164 #endif 149 165 150 166 #ifdef Q_OS_WIN … … 230 246 //! If false, options requiring freetype won't be used 231 247 bool freetype_support; 248 #ifdef Q_OS_WIN 249 bool use_windowsfontdir; 250 #endif 232 251 233 252 … … 249 268 250 269 bool use_idx; //!< Use -idx 270 bool use_lavf_demuxer; 251 271 252 272 // Let the user pass options to mplayer … … 330 350 int wheel_function; 331 351 332 QFlags<WheelFunctions> wheel_function_cycle; 333 352 WheelFunctions wheel_function_cycle; 334 353 bool wheel_function_seeking_reverse; 335 354 … … 353 372 bool reset_stop; //! Pressing the stop button resets the position 354 373 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 355 378 QString language; 356 379 QString iconset; … … 396 419 397 420 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; 399 422 400 423 #if LOGO_ANIMATION … … 485 508 bool floating_control_animated; 486 509 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; 490 512 491 513
Note:
See TracChangeset
for help on using the changeset viewer.