Optimize automation-event process splitting
[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 <gtkmm/frame.h>
24
25 #include "ardour/debug.h"
26 #include "ardour/soundcloud_upload.h"
27 #include "soundcloud_export_selector.h"
28
29 #include <pbd/error.h>
30 #include "pbd/openuri.h"
31
32 #include <sys/stat.h>
33 #include <sys/types.h>
34 #include <iostream>
35 #include "pbd/gstdio_compat.h"
36
37 #include "pbd/i18n.h"
38
39 using namespace PBD;
40
41 #include "ardour/session_metadata.h"
42 #include "utils.h"
43
44 SoundcloudExportSelector::SoundcloudExportSelector () :
45           sc_table (4, 3),
46           soundcloud_username_label (_("User Email"), 1.0, 0.5),
47           soundcloud_password_label (_("Password"), 1.0, 0.5),
48           soundcloud_public_checkbox (_("Make files public")),
49           soundcloud_open_checkbox (_("Open uploaded files in browser")),
50           soundcloud_download_checkbox (_("Make files downloadable")),
51           progress_bar()
52 {
53
54
55         soundcloud_public_checkbox.set_name ("ExportCheckbox");
56         soundcloud_download_checkbox.set_name ("ExportCheckbox");
57         soundcloud_username_label.set_name ("ExportFormatLabel");
58         soundcloud_username_entry.set_name ("ExportFormatDisplay");
59         soundcloud_password_label.set_name ("ExportFormatLabel");
60         soundcloud_password_entry.set_name ("ExportFormatDisplay");
61
62         soundcloud_username_entry.set_text (ARDOUR::SessionMetadata::Metadata()->user_email());
63         soundcloud_password_entry.set_visibility (false);
64
65         Gtk::Frame *sc_frame = manage (new Gtk::Frame);
66         sc_frame->set_border_width (4);
67         sc_frame->set_shadow_type (Gtk::SHADOW_ETCHED_OUT);
68         sc_frame->set_name ("soundcloud_export_box");
69         pack_start (*sc_frame, false, false);
70
71         sc_table.set_border_width (4);
72         sc_table.set_col_spacings (5);
73         sc_table.set_row_spacings (5);
74         sc_frame->add (sc_table);
75
76         sc_table.attach ( *(Gtk::manage (new Gtk::Image (ARDOUR_UI_UTILS::get_icon (X_("soundcloud"))))) , 0, 1,  0, 2);
77
78         sc_table.attach (soundcloud_username_label,    0, 1,  1, 2);
79         sc_table.attach (soundcloud_username_entry,    1, 3,  1, 2);
80         sc_table.attach (soundcloud_password_label,    0, 1,  2, 3);
81         sc_table.attach (soundcloud_password_entry,    1, 3,  2, 3);
82         sc_table.attach (soundcloud_public_checkbox,   2, 3,  3, 4);
83         sc_table.attach (soundcloud_open_checkbox,     2, 3,  4, 5);
84         sc_table.attach (soundcloud_download_checkbox, 2, 3,  5, 6);
85
86         pack_end (progress_bar, false, false);
87         sc_frame->show_all ();
88 }
89
90
91 int
92 SoundcloudExportSelector::do_progress_callback (double ultotal, double ulnow, const std::string &filename)
93 {
94         DEBUG_TRACE (DEBUG::Soundcloud, string_compose ("SoundcloudExportSelector::do_progress_callback(%1, %2, %3)\n", ultotal, ulnow, filename));
95         if (soundcloud_cancel) {
96                 progress_bar.set_fraction (0);
97                 // cancel_button.set_label ("");
98                 return -1;
99         }
100
101         double fraction = 0.0;
102         if (ultotal != 0) {
103                 fraction = ulnow / ultotal;
104         }
105
106         progress_bar.set_fraction ( fraction );
107
108         std::string prog;
109         prog = string_compose (_("%1: %2 of %3 bytes uploaded"), filename, ulnow, ultotal);
110         progress_bar.set_text (prog);
111
112
113         return 0;
114 }