mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
139 lines
3.3 KiB
C++
139 lines
3.3 KiB
C++
|
/* smplayer, GUI front-end for mplayer.
|
||
|
Copyright (C) 2006-2008 Ricardo Villalba <rvm@escomposlinux.org>
|
||
|
|
||
|
This program is free software; you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation; either version 2 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
This program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program; if not, write to the Free Software
|
||
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "prefdrives.h"
|
||
|
#include "images.h"
|
||
|
#include "preferences.h"
|
||
|
|
||
|
#include <QFile>
|
||
|
#include <QFileInfoList>
|
||
|
#include <QDir>
|
||
|
|
||
|
#ifdef Q_OS_WIN
|
||
|
#include <windows.h>
|
||
|
|
||
|
bool isCDDevice(QString drive) {
|
||
|
if (QSysInfo::WindowsVersion >= QSysInfo::WV_NT) {
|
||
|
unsigned int r = GetDriveTypeW((LPCWSTR) drive.utf16());
|
||
|
qDebug("isCDDevice: '%s' r: %d", drive.toUtf8().data(), r);
|
||
|
return (r == DRIVE_CDROM);
|
||
|
} else {
|
||
|
//Win98
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|
||
|
PrefDrives::PrefDrives(QWidget * parent, Qt::WindowFlags f)
|
||
|
: PrefWidget(parent, f )
|
||
|
{
|
||
|
setupUi(this);
|
||
|
|
||
|
// DVD device combo
|
||
|
// In windows, insert the drives letters
|
||
|
#ifdef Q_OS_WIN
|
||
|
QFileInfoList list = QDir::drives();
|
||
|
for (int n = 0; n < list.size(); n++) {
|
||
|
QString s = list[n].filePath();
|
||
|
if (isCDDevice(s)) {
|
||
|
if (s.endsWith("/")) s = s.remove( s.length()-1,1);
|
||
|
dvd_device_combo->addItem( s );
|
||
|
cdrom_device_combo->addItem( s );
|
||
|
}
|
||
|
}
|
||
|
#else
|
||
|
#define ADD_IF_EXISTS( string ) \
|
||
|
if (QFile::exists( string )) { \
|
||
|
dvd_device_combo->addItem( string ); \
|
||
|
cdrom_device_combo->addItem( string ); \
|
||
|
}
|
||
|
|
||
|
ADD_IF_EXISTS("/dev/dvd");
|
||
|
ADD_IF_EXISTS("/dev/dvdrecorder");
|
||
|
ADD_IF_EXISTS("/dev/cdrom");
|
||
|
ADD_IF_EXISTS("/dev/cdrecorder");
|
||
|
#endif
|
||
|
|
||
|
retranslateStrings();
|
||
|
}
|
||
|
|
||
|
PrefDrives::~PrefDrives()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
QString PrefDrives::sectionName() {
|
||
|
return tr("Drives");
|
||
|
}
|
||
|
|
||
|
QPixmap PrefDrives::sectionIcon() {
|
||
|
return Images::icon("pref_devices");
|
||
|
}
|
||
|
|
||
|
|
||
|
void PrefDrives::retranslateStrings() {
|
||
|
retranslateUi(this);
|
||
|
|
||
|
cdrom_drive_icon->setPixmap( Images::icon("cdrom_drive") );
|
||
|
dvd_drive_icon->setPixmap( Images::icon("dvd_drive") );
|
||
|
|
||
|
createHelp();
|
||
|
}
|
||
|
|
||
|
void PrefDrives::setData(Preferences * pref) {
|
||
|
setDVDDevice( pref->dvd_device );
|
||
|
setCDRomDevice( pref->cdrom_device );
|
||
|
}
|
||
|
|
||
|
void PrefDrives::getData(Preferences * pref) {
|
||
|
requires_restart = false;
|
||
|
|
||
|
pref->dvd_device = dvdDevice();
|
||
|
pref->cdrom_device = cdromDevice();
|
||
|
}
|
||
|
|
||
|
void PrefDrives::setDVDDevice( QString dir ) {
|
||
|
dvd_device_combo->setCurrentText( dir );
|
||
|
}
|
||
|
|
||
|
QString PrefDrives::dvdDevice() {
|
||
|
return dvd_device_combo->currentText();
|
||
|
}
|
||
|
|
||
|
void PrefDrives::setCDRomDevice( QString dir ) {
|
||
|
cdrom_device_combo->setCurrentText( dir );
|
||
|
}
|
||
|
|
||
|
QString PrefDrives::cdromDevice() {
|
||
|
return cdrom_device_combo->currentText();
|
||
|
}
|
||
|
|
||
|
void PrefDrives::createHelp() {
|
||
|
clearHelp();
|
||
|
|
||
|
setWhatsThis(cdrom_device_combo, tr("CD device"),
|
||
|
tr("Choose your CDROM device. It will be used to play "
|
||
|
"VCDs and Audio CDs.") );
|
||
|
|
||
|
setWhatsThis(dvd_device_combo, tr("DVD device"),
|
||
|
tr("Choose your DVD device. It will be used to play DVDs.") );
|
||
|
}
|
||
|
|
||
|
#include "moc_prefdrives.cpp"
|