Changeset 119 for smplayer/trunk/src/prefplaylist.cpp
- Timestamp:
- Dec 27, 2011, 5:44:12 PM (14 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
-
Property svn:mergeinfo
set to
/smplayer/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
smplayer/trunk/src/prefplaylist.cpp
r112 r119 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 0Ricardo Villalba <rvm@escomposlinux.org>2 Copyright (C) 2006-2011 Ricardo Villalba <rvm@escomposlinux.org> 3 3 4 4 This program is free software; you can redistribute it and/or modify … … 74 74 } 75 75 76 void PrefPlaylist::setDirectoryRecursion(bool b) { 77 recursive_check->setChecked(b); 78 } 79 80 bool PrefPlaylist::directoryRecursion() { 81 return recursive_check->isChecked(); 82 } 83 84 void PrefPlaylist::setAutoGetInfo(bool b) { 85 getinfo_check->setChecked(b); 86 } 87 88 bool PrefPlaylist::autoGetInfo() { 89 return getinfo_check->isChecked(); 90 } 91 92 void PrefPlaylist::setSavePlaylistOnExit(bool b) { 93 autosave_on_exit_check->setChecked(b); 94 } 95 96 bool PrefPlaylist::savePlaylistOnExit() { 97 return autosave_on_exit_check->isChecked(); 98 } 99 100 void PrefPlaylist::setPlayFilesFromStart(bool b) { 101 play_from_start_check->setChecked(b); 102 } 103 104 bool PrefPlaylist::playFilesFromStart() { 105 return play_from_start_check->isChecked(); 106 } 76 107 77 108 void PrefPlaylist::createHelp() { … … 88 119 "files (e.g. video_1.avi, video_2.avi...) and if found, they'll be " 89 120 "added to the playlist.") ); 121 122 setWhatsThis(recursive_check, tr("Add files in directories recursively"), 123 tr("Check this option if you want that adding a directory will also " 124 "add the files in subdirectories recursively. Otherwise only the " 125 "files in the selected directory will be added.")); 126 127 setWhatsThis(getinfo_check, tr("Add info automatically about files added"), 128 tr("Check this option to inquire the files to be added to the playlist " 129 "for some info. That allows to show the title name (if available) and " 130 "length of the files. Otherwise this info won't be available until " 131 "the file is actually played. Beware: this option can be slow, " 132 "specially if you add many files.")); 133 90 134 } 91 135
Note:
See TracChangeset
for help on using the changeset viewer.