add plural forms for pt to gtk2_ardour/po/pt.po
[ardour.git] / gtk2_ardour / export_file_notebook.h
1 /*
2     Copyright (C) 2008 Paul Davis
3     Author: Sakari Bergen
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef __export_file_notebook_h__
22 #define __export_file_notebook_h__
23
24 #include <sigc++/signal.h>
25 #include <gtkmm.h>
26
27 #include "ardour/export_profile_manager.h"
28 #include "ardour/session_handle.h"
29
30 #include "export_format_selector.h"
31 #include "export_filename_selector.h"
32 #include "soundcloud_export_selector.h"
33
34 class ExportFileNotebook : public Gtk::Notebook, public ARDOUR::SessionHandlePtr
35 {
36   public:
37
38         ExportFileNotebook ();
39
40         void set_session_and_manager (ARDOUR::Session * s, boost::shared_ptr<ARDOUR::ExportProfileManager> manager);
41         void sync_with_manager ();
42         void update_example_filenames();
43
44         boost::shared_ptr<SoundcloudExportSelector> soundcloud_export_selector;
45
46         sigc::signal<void> CriticalSelectionChanged;
47
48   private:
49
50         typedef boost::shared_ptr<ARDOUR::ExportProfileManager> ManagerPtr;
51         typedef boost::shared_ptr<ARDOUR::ExportFormatSpecification> FormatPtr;
52         typedef boost::shared_ptr<ARDOUR::ExportFilename> FilenamePtr;
53         class FilePage;
54
55         ManagerPtr        profile_manager;
56
57         void add_new_file_page ();
58         void add_file_page (ARDOUR::ExportProfileManager::FormatStatePtr format_state, ARDOUR::ExportProfileManager::FilenameStatePtr filename_state);
59         void remove_file_page (FilePage * page);
60         void update_remove_file_page_sensitivity ();
61         void update_soundcloud_upload ();
62
63         sigc::connection page_change_connection;
64         void handle_page_change (GtkNotebookPage*, uint32_t page);
65
66         Gtk::HBox    new_file_hbox;
67         Gtk::Button  new_file_button;
68         Gtk::VBox    new_file_dummy;
69
70         uint32_t     last_visible_page;
71         uint32_t     page_counter;
72
73         class FilePage : public Gtk::VBox {
74           public:
75                 FilePage (ARDOUR::Session * s, ManagerPtr profile_manager, ExportFileNotebook * parent, uint32_t number,
76                           ARDOUR::ExportProfileManager::FormatStatePtr format_state,
77                           ARDOUR::ExportProfileManager::FilenameStatePtr filename_state);
78
79                 virtual ~FilePage ();
80
81                 Gtk::Widget & get_tab_widget () { return tab_widget; }
82                 void set_remove_sensitive (bool value);
83                 std::string get_format_name () const;
84                 bool get_soundcloud_upload () const;
85
86                 void update_example_filename();
87
88                 ARDOUR::ExportProfileManager::FormatStatePtr   get_format_state () const { return format_state; }
89                 ARDOUR::ExportProfileManager::FilenameStatePtr get_filename_state () const { return filename_state; }
90
91                 sigc::signal<void> CriticalSelectionChanged;
92
93           private:
94                 void save_format_to_manager (FormatPtr format);
95                 void update_tab_label ();
96                 void critical_selection_changed ();
97                 void analysis_changed ();
98
99                 ARDOUR::ExportProfileManager::FormatStatePtr   format_state;
100                 ARDOUR::ExportProfileManager::FilenameStatePtr filename_state;
101                 ManagerPtr                                     profile_manager;
102
103                 /* GUI components */
104
105                 Gtk::Label              format_label;
106                 Gtk::Alignment          format_align;
107                 ExportFormatSelector    format_selector;
108                 PBD::ScopedConnection   format_connection;
109
110                 Gtk::Label              filename_label;
111                 Gtk::Alignment          filename_align;
112                 ExportFilenameSelector  filename_selector;
113
114                 Gtk::CheckButton        soundcloud_upload_button;
115                 Gtk::CheckButton        analysis_button;
116                 Gtk::HBox               tab_widget;
117                 Gtk::Label              tab_label;
118                 Gtk::Alignment          tab_close_alignment;
119                 Gtk::Button             tab_close_button;
120                 uint32_t                tab_number;
121         };
122 };
123
124 #endif