From c5e86199c46839e6952b8ec3dec1447e5f60a279 Mon Sep 17 00:00:00 2001 From: korovkin Date: Tue, 25 Apr 2006 20:17:22 +0000 Subject: Dedicated to Natalia Korovkina, my best friend and wife. Added remove file functionality to OBEX FT dialog. --- diff --git a/noncore/net/opietooth/manager/obexftpdialog.cpp b/noncore/net/opietooth/manager/obexftpdialog.cpp index f479ca2..fd2015e 100644 --- a/noncore/net/opietooth/manager/obexftpdialog.cpp +++ b/noncore/net/opietooth/manager/obexftpdialog.cpp @@ -90,6 +90,9 @@ ObexFtpDialog::ObexFtpDialog(const QString& device, int port, connect(putButton, SIGNAL(clicked()), SLOT(putFile())); + connect(delButton, + SIGNAL(clicked()), + SLOT(delFile())); connect(destFile, SIGNAL(dirSelected (const QString&)), SLOT(updateDir(const QString&))); @@ -242,7 +245,7 @@ void ObexFtpDialog::slotCd(QListViewItem* item) } /* - * Get the file + * Copy file from a remote device to the local device */ void ObexFtpDialog::getFile() { @@ -275,7 +278,7 @@ void ObexFtpDialog::getFile() status(tr("Receiving file ") + file2get); result = obexftp_get(client, local, file2get); if (result < 0) { - log(file2get + QString(" receive ERROR: ") + tr(strerror(errno))); + log(file2get + QString(" receive ERROR:\n") + tr(strerror(errno))); errBox(file2get + QString(" receive ERROR")); status(file2get + QString(" receive ERROR")); } @@ -288,7 +291,7 @@ void ObexFtpDialog::getFile() } /* - * Put the file + * Copy file from the local device to a remote device */ void ObexFtpDialog::putFile() { @@ -325,16 +328,55 @@ void ObexFtpDialog::putFile() status(tr("Sending file ") + local); result = obexftp_put_file(client, local, file2get); if (result < 0) { - log(local + QString(" send ERROR: ") + tr(strerror(errno))); + log(local + QString(" send ERROR:\n") + tr(strerror(errno))); errBox(local + QString(" send ERROR")); status(local + QString(" send ERROR")); } else { + slotBrowse(); log(local + QString(" sent")); status(local + QString(" sent")); } } +/* + * Delete file on a remote device + */ +void ObexFtpDialog::delFile() +{ + FileListItem* file = (FileListItem*)fileList->selectedItem(); + int result; + if (file == NULL) + return; + file2get = "/"; + if (file->gettype() == IS_FILE) { + if (client == NULL) { + errBox("No connection established"); + return; + } + file2get += curdir; + if (curdir != "" && curdir.right(1) != "/") + file2get += "/"; + file2get += file->text(0); + } + result = QMessageBox::warning(this, tr("Remove File"), + tr("Do you want to remove\n") + file2get, "Yes", "No"); + if (result != 0) + return; + odebug << "Remove " << file2get << oendl; + result = obexftp_del(client, file2get); + if (result < 0) { + log(file2get + QString(" remove ERROR\n") + tr(strerror(errno))); + errBox(file2get + QString(" remove ERROR")); + status(file2get + QString(" remove ERROR")); + } + else { + slotBrowse(); + log(file2get + QString(" removed")); + status(file2get + QString(" removed")); + } +} + /* connect with given uuid. re-connect every time */ int ObexFtpDialog::cli_connect_uuid(const uint8_t *uuid, int uuid_len) { diff --git a/noncore/net/opietooth/manager/obexftpdialog.h b/noncore/net/opietooth/manager/obexftpdialog.h index 81c8921..75ee95b 100644 --- a/noncore/net/opietooth/manager/obexftpdialog.h +++ b/noncore/net/opietooth/manager/obexftpdialog.h @@ -62,6 +62,7 @@ namespace OpieTooth { void slotCd(QListViewItem* item); void getFile(); void putFile(); + void delFile(); void updateDir(const QString& newdir); void slotSaveLog(); void slotBrowseLog(); diff --git a/noncore/net/opietooth/manager/obexftpdialogbase.ui b/noncore/net/opietooth/manager/obexftpdialogbase.ui index 2447007..83078d5 100644 --- a/noncore/net/opietooth/manager/obexftpdialogbase.ui +++ b/noncore/net/opietooth/manager/obexftpdialogbase.ui @@ -11,7 +11,7 @@ 0 0 - 283 + 347 312 @@ -72,14 +72,14 @@ spacing 0 - + QProgressBar name fileProgress - + QLabel name @@ -101,29 +101,7 @@ Browse - - QPushButton - - name - getButton - - - text - Get file - - - - QPushButton - - name - putButton - - - text - Put file - - - + QListView @@ -158,6 +136,39 @@ fileList + + QPushButton + + name + putButton + + + text + Put + + + + QPushButton + + name + getButton + + + text + Get + + + + QPushButton + + name + delButton + + + text + Del + + -- cgit v0.9.0.2