mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-01 18:56:23 -04:00
added for plugins own dir
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1850 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
97d8640f3a
commit
87344de7d4
809 changed files with 790 additions and 722 deletions
137
plugins/smplayer_plugin/prefdrives.cpp
Normal file
137
plugins/smplayer_plugin/prefdrives.cpp
Normal file
|
@ -0,0 +1,137 @@
|
|||
/* 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
|
||||
QDir dev_dir("/dev");
|
||||
QStringList devices = dev_dir.entryList( QStringList() << "dvd*" << "cdrom*" << "cdrw*" << "sr*" << "cdrecorder*",
|
||||
QDir::Files | QDir::System | QDir::Readable);
|
||||
for (int n=0; n < devices.count(); n++) {
|
||||
QString device_name = "/dev/" + devices[n];
|
||||
qDebug("PrefDrives::PrefDrives: device found: '%s'", device_name.toUtf8().constData());
|
||||
dvd_device_combo->addItem(device_name);
|
||||
cdrom_device_combo->addItem(device_name);
|
||||
}
|
||||
#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"
|
Loading…
Add table
Add a link
Reference in a new issue