Merge remote-tracking branch 'remotes/origin/cairocanvas' into windows
[ardour.git] / gtk2_ardour / export_timespan_selector.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_timespan_selector_h__
22 #define __export_timespan_selector_h__
23
24 #include "audio_clock.h"
25
26 #include <list>
27
28 #ifdef interface
29 #undef interface
30 #endif
31
32 #include <gtkmm.h>
33 #include <boost/shared_ptr.hpp>
34
35
36 #include "ardour/types.h"
37 #include "ardour/session_handle.h"
38 #include "ardour/export_profile_manager.h"
39
40 namespace ARDOUR {
41         class Location;
42         class ExportTimespan;
43         class ExportHandler;
44 }
45
46 using ARDOUR::CDMarkerFormat;
47 using ARDOUR::framecnt_t;
48
49 /// Timespan Selector base
50 class ExportTimespanSelector : public Gtk::VBox, public ARDOUR::SessionHandlePtr
51 {
52   protected:
53         typedef std::list<ARDOUR::Location *> LocationList;
54         typedef boost::shared_ptr<ARDOUR::ExportHandler> HandlerPtr;
55         typedef boost::shared_ptr<ARDOUR::ExportProfileManager> ProfileManagerPtr;
56
57         typedef std::list<ARDOUR::ExportTimespanPtr> TimespanList;
58         typedef boost::shared_ptr<TimespanList> TimespanListPtr;
59         typedef ARDOUR::ExportProfileManager::TimespanStatePtr TimespanStatePtr;
60
61   public:
62
63         ExportTimespanSelector (ARDOUR::Session * session, ProfileManagerPtr manager);
64
65         virtual ~ExportTimespanSelector ();
66
67         void sync_with_manager ();
68
69         sigc::signal<void> CriticalSelectionChanged;
70
71   protected:
72
73         ProfileManagerPtr manager;
74         TimespanStatePtr  state;
75
76         virtual void fill_range_list () = 0;
77
78         void add_range_to_selection (ARDOUR::Location const * loc);
79         void set_time_format_from_state ();
80
81         void change_time_format ();
82
83         std::string construct_label (ARDOUR::Location const * location) const;
84         std::string construct_length (ARDOUR::Location const * location) const;
85         std::string bbt_str (framepos_t frames) const;
86         std::string timecode_str (framecnt_t frames) const;
87         std::string ms_str (framecnt_t frames) const;
88
89         void update_range_name (std::string const & path, std::string const & new_text);
90
91         void set_selection_state_of_all_timespans (bool);
92
93         /*** GUI components ***/
94
95         Gtk::HBox      option_hbox;
96         Gtk::Label     time_format_label;
97
98         /* Time format */
99
100         typedef ARDOUR::ExportProfileManager::TimeFormat TimeFormat;
101
102         struct TimeFormatCols : public Gtk::TreeModelColumnRecord
103         {
104           public:
105                 Gtk::TreeModelColumn<TimeFormat>      format;
106                 Gtk::TreeModelColumn<std::string>   label;
107
108                 TimeFormatCols () { add(format); add(label); }
109         };
110         TimeFormatCols               time_format_cols;
111         Glib::RefPtr<Gtk::ListStore> time_format_list;
112         Gtk::ComboBox                time_format_combo;
113
114         /* View */
115
116         struct RangeCols : public Gtk::TreeModelColumnRecord
117         {
118           public:
119                 Gtk::TreeModelColumn<ARDOUR::Location *>  location;
120                 Gtk::TreeModelColumn<std::string>       label;
121                 Gtk::TreeModelColumn<bool>              selected;
122                 Gtk::TreeModelColumn<std::string>       name;
123                 Gtk::TreeModelColumn<std::string>       length;
124
125                 RangeCols () { add (location); add(label); add(selected); add(name); add(length); }
126         };
127         RangeCols                    range_cols;
128
129         Glib::RefPtr<Gtk::ListStore> range_list;
130         Gtk::TreeView                range_view;
131
132         Gtk::ScrolledWindow          range_scroller;
133 };
134
135 /// Allows seleting multiple timespans
136 class ExportTimespanSelectorMultiple : public ExportTimespanSelector
137 {
138   public:
139         ExportTimespanSelectorMultiple (ARDOUR::Session * session, ProfileManagerPtr manager);
140
141   private:
142
143         virtual void fill_range_list ();
144
145         void set_selection_from_state ();
146         void update_selection ();
147         void update_timespans ();
148 };
149
150 /// Displays one timespan
151 class ExportTimespanSelectorSingle : public ExportTimespanSelector
152 {
153   public:
154         ExportTimespanSelectorSingle (ARDOUR::Session * session, ProfileManagerPtr manager, std::string range_id);
155
156   private:
157
158         virtual void fill_range_list ();
159
160         std::string range_id;
161
162 };
163
164 #endif /* __export_timespan_selector_h__ */