summaryrefslogtreecommitdiff
path: root/noncore/settings/backup/backuprestore.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/backup/backuprestore.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/backup/backuprestore.cpp107
1 files changed, 74 insertions, 33 deletions
diff --git a/noncore/settings/backup/backuprestore.cpp b/noncore/settings/backup/backuprestore.cpp
index 2eccdfe..3889744 100644
--- a/noncore/settings/backup/backuprestore.cpp
+++ b/noncore/settings/backup/backuprestore.cpp
@@ -1,99 +1,82 @@
#include "backuprestore.h"
#include "errordialog.h"
+
/* OPIE */
#include <opie2/odebug.h>
#include <opie2/ostorageinfo.h>
-#include <qpe/qpeapplication.h>
using namespace Opie::Core;
+#include <qpe/qpeapplication.h>
+#include <qpe/resource.h>
+#include <qpe/config.h>
+
/* QT */
#include <qapplication.h>
#include <qmultilineedit.h>
#include <qdir.h>
#include <qfile.h>
#include <qfileinfo.h>
#include <qlistview.h>
#include <qpushbutton.h>
#include <qheader.h>
-#include <qpe/resource.h>
-#include <qpe/config.h>
#include <qmessagebox.h>
#include <qcombobox.h>
#include <qlist.h>
-#include <stdlib.h>
#include <qregexp.h>
#include <qtextstream.h>
#include <qtextview.h>
+#include <qlineedit.h>
/* STD */
#include <errno.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include <dirent.h>
#define HEADER_NAME 0
#define HEADER_BACKUP 1
#define BACKUP_LOCATION 2
#define EXTENSION ".bck"
const QString tempFileName = "/tmp/backup.err";
BackupAndRestore::BackupAndRestore( QWidget* parent, const char* name, WFlags fl)
: BackupAndRestoreBase(parent, name, fl)
{
backupList->header()->hide();
restoreList->header()->hide();
- connect(backupButton, SIGNAL(clicked()),
- this, SLOT(backup()));
- connect(restoreButton, SIGNAL(clicked()),
- this, SLOT(restore()));
- connect(backupList, SIGNAL(clicked(QListViewItem*)),
- this, SLOT(selectItem(QListViewItem*)));
- connect(restoreSource, SIGNAL(activated(int)),
- this, SLOT(sourceDirChanged(int)));
- connect(updateList, SIGNAL(clicked()),
- this, SLOT( fileListUpdate()));
+ locationList->header()->hide();
+ connect( backupButton, SIGNAL( clicked() ), this, SLOT( backup() ) );
+ connect( restoreButton, SIGNAL( clicked() ), this, SLOT( restore() ) );
+ connect( backupList, SIGNAL( clicked( QListViewItem* ) ), this, SLOT( selectItem( QListViewItem* ) ) );
+ connect( restoreSource, SIGNAL( activated( int ) ), this, SLOT( sourceDirChanged( int ) ) );
+ connect( addLocationButton, SIGNAL( clicked() ), this, SLOT( addLocation() ) );
+ connect( removeLocationButton, SIGNAL( clicked() ), this, SLOT( removeLocation() ) );
+ connect( saveLocationsButton, SIGNAL( clicked() ), this, SLOT( saveLocations() ) );
//add directorys for backing up
applicationSettings = new QListViewItem(backupList, "Application Settings", "", "Settings/");
selectItem(applicationSettings);
applicationSettings = new QListViewItem(backupList, "Application Data", "", "Applications/");
selectItem(applicationSettings);
documents= new QListViewItem(backupList, "Documents", "", "Documents/");
selectItem(documents);
scanForApplicationSettings();
-
- Opie::Core::OStorageInfo storage;
-
- backupLocations.insert( "Documents", QDir::homeDirPath() + "/Documents" );
- if ( storage.hasCf() )
- {
- backupLocations.insert( "CF", storage.cfPath() );
- odebug << "Cf Path: " + storage.cfPath() << oendl;
- }
- if ( storage.hasSd() )
- {
- backupLocations.insert( "SD", storage.sdPath() );
- odebug << " Sd Path: " + storage.sdPath() << oendl;
- }
- if ( storage.hasMmc() )
- {
- backupLocations.insert( "MMC", storage.mmcPath() );
- odebug << "Mmc Path: " + storage.mmcPath() << oendl;
- }
+ refreshBackupLocations();
+ refreshLocations();
Config config("BackupAndRestore");
//read last locations
config.setGroup("LastLocation");
QString lastStoreLocation = config.readEntry( "LastStoreLocation", "" );
QString lastRestoreLocation = config.readEntry( "LastRestoreLocation", "" );
int locationIndex = 0;
QMap<QString, QString>::Iterator it;
for( it = backupLocations.begin(); it != backupLocations.end(); ++it )
{
storeToLocation->insertItem(it.key());
@@ -151,24 +134,50 @@ BackupAndRestore::~BackupAndRestore()
{
config.writeEntry(QString("%1").arg(count), list.at(i)->text(HEADER_NAME));
count++;
}
}
config.writeEntry("Total", count);
// Remove Temp File
if ( QFile::exists( tempFileName ) )
QFile::remove( tempFileName );
}
+void BackupAndRestore::refreshBackupLocations()
+{
+ backupLocations.clear();
+ // Add cards
+ Opie::Core::OStorageInfo storage;
+ backupLocations.insert( "Documents", QDir::homeDirPath() + "/Documents" );
+ if ( storage.hasCf() )
+ {
+ backupLocations.insert( "CF", storage.cfPath() );
+ odebug << "Cf Path: " + storage.cfPath() << oendl;
+ }
+ if ( storage.hasSd() )
+ {
+ backupLocations.insert( "SD", storage.sdPath() );
+ odebug << " Sd Path: " + storage.sdPath() << oendl;
+ }
+ if ( storage.hasMmc() )
+ {
+ backupLocations.insert( "MMC", storage.mmcPath() );
+ odebug << "Mmc Path: " + storage.mmcPath() << oendl;
+ }
+
+ // Add own locations from locationList
+ // todo implementation
+}
+
QList<QListViewItem> BackupAndRestore::getAllItems(QListViewItem *item, QList<QListViewItem> &list)
{
while(item)
{
if(item->childCount() > 0)
getAllItems(item->firstChild(), list);
list.append(item);
item = item->nextSibling();
}
return list;
}
@@ -515,14 +524,46 @@ QString BackupAndRestore::getExcludeFile()
writeStream << "*.bck" << "\n";
excludeFile.close();
}
else
{
return QString::null;
}
}
return excludeFileName;
}
+void BackupAndRestore::refreshLocations()
+{
+ locationList->clear();
+ //todo: implement add locations
+ odebug << "not implemented yet" << oendl;
+}
+
+void BackupAndRestore::addLocation()
+{
+ if ( ( !locationEdit->text().isEmpty() ) &&
+ ( QDir( locationEdit->text() ).exists() ) )
+ {
+ (void) new QListViewItem( locationList, locationEdit->text() );
+ locationEdit->setText( "" );
+ }
+}
+
+void BackupAndRestore::removeLocation()
+{
+ if ( locationList->selectedItem() )
+ {
+ delete( locationList->selectedItem() );
+ }
+}
+
+void BackupAndRestore::saveLocation()
+{
+ //todo: implement
+ odebug << "not implemented yet" << oendl;
+}
+
+
// backuprestore.cpp