remove old a-Hi/Low pass
[ardour.git] / gtk2_ardour / sfdb_freesound_mootcher.h
index ee650200210a1ca4e9cfe1f7386f67b2d3dcb233..4095cc99270d8da7a7fa327536661ff362f93f88 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012 Paul Davis 
+    Copyright (C) 2012 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -32,8 +32,6 @@
 *****************************************************************************/
 
 #include <string>
-#include <fstream>
-#include <iostream>
 #include <stdio.h>
 #include <cstring>
 #include <string>
@@ -65,7 +63,7 @@ enum sortMethod {
 };
 
 
-class Mootcher
+class Mootcher: public sigc::trackable, public PBD::ScopedConnectionList
 {
 public:
        Mootcher();
@@ -76,10 +74,18 @@ public:
        std::string     searchText(std::string query, int page, std::string filter, enum sortMethod sort);
        std::string     searchSimilar(std::string id);
        void *          threadFunc();
-       SoundFileBrowser *sfb; 
+       SoundFileBrowser *sfb;
        std::string     audioFileName;
        std::string     ID;
 
+       /** signal emitted when mootcher reports progress updates during download.
+        * The parameters are current and total numbers of bytes downloaded.
+        */
+       PBD::Signal2<void, double, double> Progress;
+       /** signal emitted when the mootcher has finished downloading. */
+       PBD::Signal0<void> Finished;
+
+
 private:
 
        void            ensureWorkingDir();
@@ -97,12 +103,15 @@ private:
 
        FILE* theFile;
 
+       void updateProgress(double dlnow, double dltotal);
+       void doneWithMootcher();
+
        Gtk::HBox progress_hbox;
        Gtk::ProgressBar progress_bar;
        Gtk::Button cancel_download_btn;
 
        bool cancel_download;
-       void cancelDownload() { 
+       void cancelDownload() {
                cancel_download = true;
                progress_hbox.hide();
        }