Qt based Ftp dialog : QFtp « Qt « C++

Home
C++
1.Bitset
2.Class
3.Console
4.Data Structure
5.Data Type
6.Deque
7.Development
8.File
9.Function
10.Generic
11.Language
12.List
13.Map Multimap
14.Overload
15.Pointer
16.Qt
17.Queue Stack
18.Set Multiset
19.STL Algorithms Binary search
20.STL Algorithms Heap
21.STL Algorithms Helper
22.STL Algorithms Iterator
23.STL Algorithms Merge
24.STL Algorithms Min Max
25.STL Algorithms Modifying sequence operations
26.STL Algorithms Non modifying sequence operations
27.STL Algorithms Sorting
28.STL Basics
29.String
30.Valarray
31.Vector
C / ANSI-C
C Tutorial
C++ Tutorial
Visual C++ .NET
C++ » Qt » QFtpScreenshots 
Qt based Ftp dialog
  


Foundations of Qt Development\Chapter14\ftp\ftpdialog.cpp
/*
 * Copyright (c) 2006-2007, Johan Thelin
 
 * All rights reserved.
 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 
 *     * Redistributions of source code must retain the above copyright notice, 
 *       this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright notice,  
 *       this list of conditions and the following disclaimer in the documentation 
 *       and/or other materials provided with the distribution.
 *     * Neither the name of APress nor the names of its contributors 
 *       may be used to endorse or promote products derived from this software 
 *       without specific prior written permission.
 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */

#include <QFileDialog>
#include <QMessageBox>

#include "ftpdialog.h"

FtpDialog::FtpDialog() : QDialog()
{
  file = 0;
  
  ui.setupUithis );
  
  connectui.connectButton, SIGNAL(clicked()), this, SLOT(connectClicked()) );
  connectui.disconnectButton, SIGNAL(clicked()), this, SLOT(disconnectClicked()) );
  connectui.cdButton, SIGNAL(clicked()), this, SLOT(cdClicked()) );
  connectui.upButton, SIGNAL(clicked()), this, SLOT(upClicked()) );
  connectui.getButton, SIGNAL(clicked()), this, SLOT(getClicked()) );
  
  connectui.dirList, SIGNAL(itemSelectionChanged()), this, SLOT(selectionChanged()) );
  
  connect&ftp, SIGNAL(commandFinished(int,bool)), this, SLOT(ftpFinished(int,bool)) );
  connect&ftp, SIGNAL(listInfo(QUrlInfo)), this, SLOT(ftpListInfo(QUrlInfo)) );
  connect&ftp, SIGNAL(dataTransferProgress(qint64,qint64)), this, SLOT(ftpProgress(qint64,qint64)) );
  
  ui.disconnectButton->setEnabledfalse );
  ui.cdButton->setEnabledfalse );
  ui.upButton->setEnabledfalse );
  ui.getButton->setEnabledfalse );
}

void FtpDialog::connectClicked()
{
  ui.connectButton->setEnabledfalse );
  
  ftp.connectToHost"ftp.trolltech.com" );
  ui.statusLabel->setTexttr("Connecting to host...") );
}

void FtpDialog::disconnectClicked()
{
  ui.disconnectButton->setEnabledfalse );
  ui.cdButton->setEnabledfalse );
  ui.upButton->setEnabledfalse );
  ui.getButton->setEnabledfalse );
  
  ftp.close();
}

void FtpDialog::cdClicked()
{
  ui.disconnectButton->setEnabledfalse );
  ui.cdButton->setEnabledfalse );
  ui.upButton->setEnabledfalse );
  ui.getButton->setEnabledfalse );

  ftp.cdui.dirList->selectedItems()[0]->text() );
  ui.statusLabel->setTexttr("Changing directory...") );
}

void FtpDialog::upClicked()
{
  ui.disconnectButton->setEnabledfalse );
  ui.cdButton->setEnabledfalse );
  ui.upButton->setEnabledfalse );
  ui.getButton->setEnabledfalse );

  ftp.cd("..");
  ui.statusLabel->setTexttr("Changing directory...") );
}

void FtpDialog::getClicked()
{
  QString fileName = QFileDialog::getSaveFileNamethis, tr("Get File"), ui.dirList->selectedItems()[0]->text() );
  iffileName.isEmpty() )
    return;
    
  file = new QFilefileName, this );
  if!file->openQIODevice::WriteOnly ) )
  {
    QMessageBox::warningthis, tr("Error"), tr("Failed to open file %1 for writing.").argfileName ) );
    
    delete file;
    file = 0;
    
    return;
  }

  ui.disconnectButton->setEnabledfalse );
  ui.cdButton->setEnabledfalse );
  ui.upButton->setEnabledfalse );
  ui.getButton->setEnabledfalse );

  ftp.getui.dirList->selectedItems()[0]->text(), file );
  ui.statusLabel->setTexttr("Downloading file...") );
}

void FtpDialog::ftpProgressqint64 done, qint64 total )
{
  iftotal == )
    return;
    
  ui.statusLabel->setTexttr("Downloading file... (%1%)").argQString::numberdouble(done)*100/double(total)'f') ) );
}

void FtpDialog::selectionChanged()
{
  ifui.dirList->selectedItems().count() == )
  {
    iffiles.indexOfui.dirList->selectedItems()[0]->text() ) == -)
    {
      ui.cdButton->setEnabledui.disconnectButton->isEnabled() );
      ui.getButton->setEnabledfalse );
    }
    else
    {
      ui.cdButton->setEnabledfalse );
      ui.getButton->setEnabledui.disconnectButton->isEnabled() );
    }
  }
  else
  {
    ui.cdButton->setEnabledfalse );
    ui.getButton->setEnabledfalse );
  }
}

void FtpDialog::getFileList()
{
  ui.disconnectButton->setEnabledfalse );
  ui.cdButton->setEnabledfalse );
  ui.upButton->setEnabledfalse );
  ui.getButton->setEnabledfalse );

  ui.dirList->clear();
  files.clear();
  
  ifftp.state() == QFtp::LoggedIn )
    ftp.list();
}

void FtpDialog::ftpListInfoQUrlInfo info )
{
  ui.dirList->addIteminfo.name() );
  ifinfo.isFile() )
    files << info.name();
}

void FtpDialog::ftpFinishedint request, bool error )
{
  iferror )
  {
    switchftp.currentCommand() )
    {
      case QFtp::ConnectToHost:
        QMessageBox::warningthis, tr("Error"), tr("Failed to connect to host.") );
        ui.connectButton->setEnabledtrue );
        
        break
      case QFtp::Login:
        QMessageBox::warningthis, tr("Error"), tr("Failed to login.") );
        ui.connectButton->setEnabledtrue );
        
        break
      case QFtp::List:
        QMessageBox::warningthis, tr("Error"), tr("Failed to get file list.\nClosing connection.") );
        ftp.close();
        
        break;
      case QFtp::Cd:
        QMessageBox::warningthis, tr("Error"), tr("Failed to change directory.") );
        getFileList();
        
        break;
      case QFtp::Get:
        QMessageBox::warningthis, tr("Error"), tr("Failed to get file?") );
        file->close();
        file->remove();
        
        delete file;
        file = 0;
        
        ui.disconnectButton->setEnabledtrue );
        ui.upButton->setEnabledtrue );
        selectionChanged();
        
        break;
    }
    
    ui.statusLabel->setTexttr("Ready.") );
  }
  else
  {
    switchftp.currentCommand() )
    {
      case QFtp::ConnectToHost:
        ftp.login();

        break;
      case QFtp::Login:
        getFileList();
        
        break;
      case QFtp::Close:
        ui.connectButton->setEnabledtrue );
        getFileList();
        
        break;
      case QFtp::List:
        ui.disconnectButton->setEnabledtrue );
        ui.upButton->setEnabledtrue );
        ui.statusLabel->setTexttr("Ready.") );
        
        break;
      case QFtp::Cd:
        getFileList();
        
        break;
      case QFtp::Get:
        file->close();
        
        delete file;
        file = 0;
        
        ui.disconnectButton->setEnabledtrue );
        ui.upButton->setEnabledtrue );
        selectionChanged();

        ui.statusLabel->setTexttr("Ready.") );

        break;        
    }
  }
}



Foundations of Qt Development\Chapter14\ftp\ftpdialog.h
/*
 * Copyright (c) 2006-2007, Johan Thelin
 
 * All rights reserved.
 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 
 *     * Redistributions of source code must retain the above copyright notice, 
 *       this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright notice,  
 *       this list of conditions and the following disclaimer in the documentation 
 *       and/or other materials provided with the distribution.
 *     * Neither the name of APress nor the names of its contributors 
 *       may be used to endorse or promote products derived from this software 
 *       without specific prior written permission.
 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */

#ifndef FTPDIALOG_H
#define FTPDIALOG_H

#include <QFtp>
#include <QDialog>
#include <QFile>

#include "ui_ftpdialog.h"

class FtpDialog : public QDialog
{
  Q_OBJECT

public:
  FtpDialog();
  
private slots:
  void connectClicked();
  void disconnectClicked();
  void cdClicked();
  void upClicked();
  void getClicked();
  
  void selectionChanged();
  
  void ftpFinished(int,bool);
  void ftpListInfo(QUrlInfo);
  void ftpProgress(qint64,qint64);
  
private:
  void getFileList();  
  
  Ui::FtpDialog ui;
    
  QFtp ftp;
  QFile *file;
  
  QStringList files;
};

#endif // FTPDIALOG_H



Foundations of Qt Development\Chapter14\ftp\main.cpp
/*
 * Copyright (c) 2006-2007, Johan Thelin
 
 * All rights reserved.
 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 
 *     * Redistributions of source code must retain the above copyright notice, 
 *       this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright notice,  
 *       this list of conditions and the following disclaimer in the documentation 
 *       and/or other materials provided with the distribution.
 *     * Neither the name of APress nor the names of its contributors 
 *       may be used to endorse or promote products derived from this software 
 *       without specific prior written permission.
 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */

#include <QApplication>

#include "ftpdialog.h"

int mainint argc, char **argv )
{
  QApplication appargc, argv );
  
  FtpDialog dlg;
  dlg.show();
  
  return app.exec();
}

   
    
  
Related examples in the same category
1.QFtp base ftp window
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.