Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

addtorrentdialog.cpp Example File
network/torrent/addtorrentdialog.cpp

 /****************************************************************************
 **
 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
 ** All rights reserved.
 ** Contact: Nokia Corporation (qt-info@nokia.com)
 **
 ** This file is part of the examples of the Qt Toolkit.
 **
 ** $QT_BEGIN_LICENSE:LGPL$
 ** Commercial Usage
 ** Licensees holding valid Qt Commercial licenses may use this file in
 ** accordance with the Qt Commercial License Agreement provided with the
 ** Software or, alternatively, in accordance with the terms contained in
 ** a written agreement between you and Nokia.
 **
 ** GNU Lesser General Public License Usage
 ** Alternatively, this file may be used under the terms of the GNU Lesser
 ** General Public License version 2.1 as published by the Free Software
 ** Foundation and appearing in the file LICENSE.LGPL included in the
 ** packaging of this file.  Please review the following information to
 ** ensure the GNU Lesser General Public License version 2.1 requirements
 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 **
 ** In addition, as a special exception, Nokia gives you certain additional
 ** rights.  These rights are described in the Nokia Qt LGPL Exception
 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 **
 ** GNU General Public License Usage
 ** Alternatively, this file may be used under the terms of the GNU
 ** General Public License version 3.0 as published by the Free Software
 ** Foundation and appearing in the file LICENSE.GPL included in the
 ** packaging of this file.  Please review the following information to
 ** ensure the GNU General Public License version 3.0 requirements will be
 ** met: http://www.gnu.org/copyleft/gpl.html.
 **
 ** If you have questions regarding the use of this file, please contact
 ** Nokia at qt-info@nokia.com.
 ** $QT_END_LICENSE$
 **
 ****************************************************************************/

 #include "addtorrentdialog.h"
 #include "metainfo.h"

 #include <QFile>
 #include <QFileDialog>
 #include <QLineEdit>
 #include <QMetaObject>

 static QString stringNumber(qint64 number)
 {
     QString tmp;
     if (number > (1024 * 1024 * 1024))
         tmp.sprintf("%.2fGB", number / (1024.0 * 1024.0 * 1024.0));
     else if (number > (1024 * 1024))
         tmp.sprintf("%.2fMB", number / (1024.0 * 1024.0));
     else if (number > (1024))
         tmp.sprintf("%.2fKB", number / (1024.0));
     else
         tmp.sprintf("%d bytes", int(number));
     return tmp;
 }

 AddTorrentDialog::AddTorrentDialog(QWidget *parent)
   : QDialog(parent, Qt::Sheet)
 {
     ui.setupUi(this);

     connect(ui.browseTorrents, SIGNAL(clicked()),
             this, SLOT(selectTorrent()));
     connect(ui.browseDestination, SIGNAL(clicked()),
             this, SLOT(selectDestination()));
     connect(ui.torrentFile, SIGNAL(textChanged(QString)),
             this, SLOT(setTorrent(QString)));

     ui.destinationFolder->setText(destinationDirectory = QDir::current().path());
     ui.torrentFile->setFocus();
 }

 void AddTorrentDialog::selectTorrent()
 {
     QString fileName = QFileDialog::getOpenFileName(this, tr("Choose a torrent file"),
                                                     lastDirectory,
                                                     tr("Torrents (*.torrent);; All files (*.*)"));
     if (fileName.isEmpty())
         return;
     lastDirectory = QFileInfo(fileName).absolutePath();
     setTorrent(fileName);
 }

 void AddTorrentDialog::selectDestination()
 {
     QString dir = QFileDialog::getExistingDirectory(this, tr("Choose a destination directory"),
                                                     lastDestinationDirectory);
     if (dir.isEmpty())
         return;
     lastDestinationDirectory = destinationDirectory = dir;
     ui.destinationFolder->setText(destinationDirectory);
     enableOkButton();
 }

 void AddTorrentDialog::enableOkButton()
 {
     ui.okButton->setEnabled(!ui.destinationFolder->text().isEmpty()
                             && !ui.torrentFile->text().isEmpty());
 }

 void AddTorrentDialog::setTorrent(const QString &torrentFile)
 {
     if (torrentFile.isEmpty()) {
         enableOkButton();
         return;
     }

     ui.torrentFile->setText(torrentFile);
     if (!torrentFile.isEmpty())
         lastDirectory = QFileInfo(torrentFile).absolutePath();

     if (lastDestinationDirectory.isEmpty())
         lastDestinationDirectory = lastDirectory;

     MetaInfo metaInfo;
     QFile torrent(torrentFile);
     if (!torrent.open(QFile::ReadOnly) || !metaInfo.parse(torrent.readAll())) {
         enableOkButton();
         return;
     }

     ui.torrentFile->setText(torrentFile);
     ui.announceUrl->setText(metaInfo.announceUrl());
     if (metaInfo.comment().isEmpty())
         ui.commentLabel->setText("<unknown>");
     else
         ui.commentLabel->setText(metaInfo.comment());
     if (metaInfo.createdBy().isEmpty())
         ui.creatorLabel->setText("<unknown>");
     else
         ui.creatorLabel->setText(metaInfo.createdBy());
     ui.sizeLabel->setText(stringNumber(metaInfo.totalSize()));
     if (metaInfo.fileForm() == MetaInfo::SingleFileForm) {
         ui.torrentContents->setHtml(metaInfo.singleFile().name);
     } else {
         QString html;
         foreach (MetaInfoMultiFile file, metaInfo.multiFiles()) {
             QString name = metaInfo.name();
             if (!name.isEmpty()) {
                 html += name;
                 if (!name.endsWith('/'))
                     html += '/';
             }
             html += file.path + "<br>";
         }
         ui.torrentContents->setHtml(html);
     }

     QFileInfo info(torrentFile);
     ui.destinationFolder->setText(info.absolutePath());

     enableOkButton();
 }

 QString AddTorrentDialog::torrentFileName() const
 {
     return ui.torrentFile->text();
 }

 QString AddTorrentDialog::destinationFolder() const
 {
     return ui.destinationFolder->text();
 }

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 44
  2. Microsoft ouvre aux autres compilateurs C++ AMP, la spécification pour la conception d'applications parallèles C++ utilisant le GPU 22
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. RIM : « 13 % des développeurs ont gagné plus de 100 000 $ sur l'AppWord », Qt et open-source au menu du BlackBerry DevCon Europe 0
  5. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
Page suivante

Le blog Digia au hasard

Logo

Déploiement d'applications Qt Commercial sur les tablettes Windows 8

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.6
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web