2009-04-09 18:55:47 +00:00
|
|
|
/*
|
2010-08-01 20:36:13 +00:00
|
|
|
* This file Copyright (C) Mnemosyne LLC
|
2009-04-09 18:55:47 +00:00
|
|
|
*
|
2010-08-01 20:36:13 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
2009-04-09 18:55:47 +00:00
|
|
|
*
|
2009-05-31 19:33:48 +00:00
|
|
|
* $Id$
|
2009-04-09 18:55:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QDataStream>
|
|
|
|
#include <QFile>
|
2010-06-04 01:00:27 +00:00
|
|
|
#include <QFileDialog>
|
2009-04-09 18:55:47 +00:00
|
|
|
#include <QFileInfo>
|
2010-06-04 01:00:27 +00:00
|
|
|
#include <QInputDialog>
|
2009-04-09 18:55:47 +00:00
|
|
|
#include <QObject>
|
|
|
|
#include <QSet>
|
|
|
|
#include <QStyle>
|
|
|
|
|
|
|
|
#include <libtransmission/transmission.h>
|
2010-06-22 04:34:16 +00:00
|
|
|
#include <libtransmission/utils.h> // tr_formatter
|
2009-04-09 18:55:47 +00:00
|
|
|
|
|
|
|
#include "qticonloader.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
2010-07-03 00:25:22 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2010-06-04 01:00:27 +00:00
|
|
|
QString
|
|
|
|
Utils :: remoteFileChooser( QWidget * parent, const QString& title, const QString& myPath, bool dir, bool local )
|
|
|
|
{
|
|
|
|
QString path;
|
|
|
|
|
|
|
|
if( local )
|
|
|
|
{
|
|
|
|
if( dir )
|
|
|
|
path = QFileDialog::getExistingDirectory( parent, title, myPath );
|
|
|
|
else
|
|
|
|
path = QFileDialog::getOpenFileName( parent, title, myPath );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
path = QInputDialog::getText( parent, title, tr( "Enter a location:" ), QLineEdit::Normal, myPath, NULL );
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2009-04-09 18:55:47 +00:00
|
|
|
void
|
|
|
|
Utils :: toStderr( const QString& str )
|
|
|
|
{
|
2009-08-08 13:22:38 +00:00
|
|
|
std::cerr << qPrintable(str) << std::endl;
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const QIcon&
|
|
|
|
Utils :: guessMimeIcon( const QString& filename )
|
|
|
|
{
|
|
|
|
enum { DISK, DOCUMENT, PICTURE, VIDEO, ARCHIVE, AUDIO, APP, TYPE_COUNT };
|
|
|
|
static QIcon fallback;
|
|
|
|
static QIcon fileIcons[TYPE_COUNT];
|
|
|
|
static QSet<QString> suffixes[TYPE_COUNT];
|
|
|
|
|
|
|
|
if( fileIcons[0].isNull( ) )
|
|
|
|
{
|
|
|
|
fallback = QApplication::style()->standardIcon( QStyle :: SP_FileIcon );
|
|
|
|
|
|
|
|
fileIcons[DISK]= QtIconLoader :: icon( "media-optical", fallback );
|
|
|
|
suffixes[DISK] << "iso";
|
|
|
|
|
|
|
|
fileIcons[DOCUMENT] = QtIconLoader :: icon( "text-x-generic", fallback );
|
2010-05-24 02:45:39 +00:00
|
|
|
suffixes[DOCUMENT] << "abw" << "csv" << "doc" << "dvi" << "htm" << "html" << "ini" << "log"
|
|
|
|
<< "odp" << "ods" << "odt" << "pdf" << "ppt" << "ps" << "rtf" << "tex"
|
|
|
|
<< "txt" << "xml";
|
2009-04-09 18:55:47 +00:00
|
|
|
|
|
|
|
fileIcons[PICTURE] = QtIconLoader :: icon( "image-x-generic", fallback );
|
2010-05-24 02:45:39 +00:00
|
|
|
suffixes[PICTURE] << "bmp" << "gif" << "jpg" << "jpeg" << "pcx" << "png" << "psd" << "raw"
|
|
|
|
<< "tga" << "tiff";
|
2009-04-09 18:55:47 +00:00
|
|
|
|
|
|
|
fileIcons[VIDEO] = QtIconLoader :: icon( "video-x-generic", fallback );
|
2010-05-24 02:45:39 +00:00
|
|
|
suffixes[VIDEO] << "3gp" << "asf" << "avi" << "mov" << "mpeg" << "mpg" << "mp4" << "mkv"
|
|
|
|
<< "mov" << "ogm" << "ogv" << "qt" << "rm" << "wmv";
|
2009-04-09 18:55:47 +00:00
|
|
|
|
|
|
|
fileIcons[ARCHIVE] = QtIconLoader :: icon( "package-x-generic", fallback );
|
2010-05-24 02:45:39 +00:00
|
|
|
suffixes[ARCHIVE] << "7z" << "ace" << "bz2" << "cbz" << "gz" << "gzip" << "lzma" << "rar"
|
|
|
|
<< "sft" << "tar" << "zip";
|
2009-04-09 18:55:47 +00:00
|
|
|
|
|
|
|
fileIcons[AUDIO] = QtIconLoader :: icon( "audio-x-generic", fallback );
|
2010-05-24 02:45:39 +00:00
|
|
|
suffixes[AUDIO] << "aac" << "ac3" << "aiff" << "ape" << "au" << "flac" << "m3u" << "m4a"
|
|
|
|
<< "mid" << "midi" << "mp2" << "mp3" << "mpc" << "nsf" << "oga" << "ogg"
|
|
|
|
<< "ra" << "ram" << "shn" << "voc" << "wav" << "wma";
|
2009-04-09 18:55:47 +00:00
|
|
|
|
|
|
|
fileIcons[APP] = QtIconLoader :: icon( "application-x-executable", fallback );
|
2010-05-24 02:45:39 +00:00
|
|
|
suffixes[APP] << "bat" << "cmd" << "com" << "exe";
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString suffix( QFileInfo( filename ).suffix( ).toLower( ) );
|
|
|
|
|
|
|
|
for( int i=0; i<TYPE_COUNT; ++i )
|
|
|
|
if( suffixes[i].contains( suffix ) )
|
|
|
|
return fileIcons[i];
|
|
|
|
|
|
|
|
return fallback;
|
|
|
|
}
|