diff data/fileio/RemoteFile.h @ 211:e2bbb58e6df6

Several changes related to referring to remote URLs for sessions and files: * Pull file dialog wrapper functions out from MainWindow into FileFinder * If a file referred to in a session is not found at its expected location, try a few other alternatives (same location as the session file or same location as the last audio file) before asking the user to locate it * Allow user to give a URL when locating an audio file, not just locate on the filesystem * Make wave file models remember the "original" location (e.g. URL) of the audio file, not just the actual location from which the data was loaded (e.g. local copy of that URL) -- when saving a session, use the original location so as not to refer to a temporary file * Clean up incompletely-downloaded local copies of files
author Chris Cannam
date Thu, 11 Jan 2007 13:29:58 +0000
parents a06afefe45ee
children ce6f65ab3327
line wrap: on
line diff
--- a/data/fileio/RemoteFile.h	Wed Jan 10 17:26:39 2007 +0000
+++ b/data/fileio/RemoteFile.h	Thu Jan 11 13:29:58 2007 +0000
@@ -45,6 +45,8 @@
     QString getLocalFilename() const;
     QString getErrorString() const;
 
+    void deleteLocalFile();
+
     static bool canHandleScheme(QUrl url);
 
 signals:
@@ -71,6 +73,8 @@
     QProgressDialog *m_progressDialog;
     QTimer m_progressShowTimer;
 
+    void cleanup();
+
     QString createLocalFile(QUrl url);
 
     static QMutex m_fileCreationMutex;