/* * This file Copyright (C) 2009-2010 Mnemosyne LLC * * This file is licensed by the GPL version 2. Works owned by the * Transmission project are granted a special exemption to clause 2(b) * so that the bulk of its code can remain under the MIT license. * This exemption does not extend to derived works not owned by * the Transmission project. * * $Id$ */ #include #include #include #include #include #include #include #include #include #include #include #include // tr_formatter #include "qticonloader.h" #include "utils.h" /*** **** ***/ 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; } void Utils :: toStderr( const QString& str ) { std::cerr << qPrintable(str) << std::endl; } 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 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 ); suffixes[DOCUMENT] << "abw" << "csv" << "doc" << "dvi" << "htm" << "html" << "ini" << "log" << "odp" << "ods" << "odt" << "pdf" << "ppt" << "ps" << "rtf" << "tex" << "txt" << "xml"; fileIcons[PICTURE] = QtIconLoader :: icon( "image-x-generic", fallback ); suffixes[PICTURE] << "bmp" << "gif" << "jpg" << "jpeg" << "pcx" << "png" << "psd" << "raw" << "tga" << "tiff"; fileIcons[VIDEO] = QtIconLoader :: icon( "video-x-generic", fallback ); suffixes[VIDEO] << "3gp" << "asf" << "avi" << "mov" << "mpeg" << "mpg" << "mp4" << "mkv" << "mov" << "ogm" << "ogv" << "qt" << "rm" << "wmv"; fileIcons[ARCHIVE] = QtIconLoader :: icon( "package-x-generic", fallback ); suffixes[ARCHIVE] << "7z" << "ace" << "bz2" << "cbz" << "gz" << "gzip" << "lzma" << "rar" << "sft" << "tar" << "zip"; fileIcons[AUDIO] = QtIconLoader :: icon( "audio-x-generic", fallback ); suffixes[AUDIO] << "aac" << "ac3" << "aiff" << "ape" << "au" << "flac" << "m3u" << "m4a" << "mid" << "midi" << "mp2" << "mp3" << "mpc" << "nsf" << "oga" << "ogg" << "ra" << "ram" << "shn" << "voc" << "wav" << "wma"; fileIcons[APP] = QtIconLoader :: icon( "application-x-executable", fallback ); suffixes[APP] << "bat" << "cmd" << "com" << "exe"; } QString suffix( QFileInfo( filename ).suffix( ).toLower( ) ); for( int i=0; i