Merge branch 'export-dialog' into cairocanvas
[ardour.git] / gtk2_ardour / soundcloud_export_selector.cc
1 /* soundcloud_export_selector.cpp ***************************************************
2
3         Adapted for Ardour by Ben Loftis, March 2012
4
5         Licence GPL:
6
7         This program is free software; you can redistribute it and/or
8         modify it under the terms of the GNU General Public License
9         as published by the Free Software Foundation; either version 2
10         of the License, or (at your option) any later version.
11
12         This program is distributed in the hope that it will be useful,
13         but WITHOUT ANY WARRANTY; without even the implied warranty of
14         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15         GNU General Public License for more details.
16
17         You should have received a copy of the GNU General Public License
18         along with this program; if not, write to the Free Software
19         Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20
21
22 *************************************************************************************/
23 #include "ardour/soundcloud_upload.h"
24 #include "soundcloud_export_selector.h"
25
26 #include <pbd/error.h>
27 #include "pbd/openuri.h"
28
29 #include <sys/stat.h>
30 #include <sys/types.h>
31 #include <iostream>
32 #include <glib/gstdio.h>
33
34 #include "i18n.h"
35
36 using namespace PBD;
37
38 #include "ardour/session_metadata.h"
39 #include "utils.h"
40
41 SoundcloudExportSelector::SoundcloudExportSelector() :
42           sc_table (4, 3),
43           soundcloud_public_checkbox (_("Make file(s) public")),
44           soundcloud_username_label (_("User Email"), 1.0, 0.5),
45           soundcloud_password_label (_("Password"), 1.0, 0.5),
46           soundcloud_open_checkbox (_("Open uploaded files in browser")),
47           progress_bar()
48 {
49
50
51         soundcloud_public_checkbox.set_name ("ExportCheckbox");
52         soundcloud_username_label.set_name ("ExportFormatLabel");
53         soundcloud_username_entry.set_name ("ExportFormatDisplay");
54         soundcloud_password_label.set_name ("ExportFormatLabel");
55         soundcloud_password_entry.set_name ("ExportFormatDisplay");
56
57         soundcloud_username_entry.set_text (ARDOUR::SessionMetadata::Metadata()->user_email());
58         soundcloud_password_entry.set_visibility(false);
59
60         Gtk::Frame *sc_frame = manage(new Gtk::Frame);
61         sc_frame->set_border_width(4);
62         sc_frame->set_shadow_type(Gtk::SHADOW_ETCHED_OUT);
63         sc_frame->set_name("soundcloud_export_box");
64         pack_start(*sc_frame, false, false);
65
66         sc_table.set_border_width(4);
67         sc_table.set_col_spacings (5);
68         sc_table.set_row_spacings (5);
69         sc_frame->add (sc_table);
70
71         //              sc_table.attach ( *( manage (new EventBox (::get_icon (X_("soundcloud"))))) , 0, 1,  0, 1);
72         sc_table.attach ( *(Gtk::manage (new Gtk::Image (get_icon (X_("soundcloud"))))) , 0, 1,  0, 2);
73
74         sc_table.attach (soundcloud_public_checkbox, 2, 3,  1, 2);
75         sc_table.attach (soundcloud_username_label, 0, 1,  3, 4);
76         sc_table.attach (soundcloud_username_entry, 1, 3,  3, 4);
77         sc_table.attach (soundcloud_password_label, 0, 1,  5, 6);
78         sc_table.attach (soundcloud_password_entry, 1, 3,  5, 6);
79         sc_table.attach (soundcloud_open_checkbox, 2, 3,  7, 8);
80
81         pack_end(progress_bar, false, false);
82         sc_frame->show_all();
83 }
84
85
86 int
87 SoundcloudExportSelector::do_progress_callback(double ultotal, double ulnow, const std::string &filename)
88 {
89         std::cerr << "SoundcloudExportSelector::do_progress_callback(" << ultotal << ", " << ulnow << ", " << filename << ")..." << std::endl; 
90         if (soundcloud_cancel) {
91                 progress_bar.set_fraction (0);
92                 // cancel_button.set_label ("");
93                 return -1;
94         }
95
96         double fraction = 0.0;
97         if (ultotal != 0) {
98                 fraction = ulnow / ultotal;
99         }
100
101         progress_bar.set_fraction ( fraction );
102
103         std::string prog;
104         prog = string_compose (_("%1: %2 of %3 bytes uploaded"), filename, ulnow, ultotal);
105         progress_bar.set_text( prog );
106
107
108         return 0;
109 }
110