move gui_changed() signal from Route to Stripable
[ardour.git] / libs / ardour / ardour / audio_track_importer.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 __ardour_audio_track_importer_h__
22 #define __ardour_audio_track_importer_h__
23
24 #include <list>
25
26 #include "pbd/xml++.h"
27 #include "pbd/id.h"
28
29 #include "ardour/element_importer.h"
30 #include "ardour/element_import_handler.h"
31
32 namespace ARDOUR {
33
34 class AudioPlaylistImportHandler;
35 class AudioPlaylistImporter;
36
37 class LIBARDOUR_API AudioTrackImportHandler : public ElementImportHandler
38 {
39   public:
40         AudioTrackImportHandler (XMLTree const & source, Session & session, AudioPlaylistImportHandler & pl_handler);
41         virtual ~AudioTrackImportHandler () {}
42         virtual std::string get_info () const;
43 };
44
45
46 class LIBARDOUR_API AudioTrackImporter : public ElementImporter
47 {
48   public:
49         AudioTrackImporter (XMLTree const & source,
50                             Session & session,
51                             AudioTrackImportHandler & track_handler,
52                             XMLNode const & node,
53                             AudioPlaylistImportHandler & pl_handler);
54         ~AudioTrackImporter ();
55
56         std::string get_info () const;
57
58   protected:
59         bool _prepare_move ();
60         void _cancel_move ();
61         void _move ();
62
63   private:
64
65         typedef boost::shared_ptr<AudioPlaylistImporter> PlaylistPtr;
66         typedef std::list<PlaylistPtr> PlaylistList;
67
68         bool parse_route_xml ();
69         bool parse_io ();
70
71         bool parse_processor (XMLNode & node);
72         bool parse_controllable (XMLNode & node);
73         bool parse_automation (XMLNode & node);
74         bool rate_convert_events (XMLNode & node);
75
76         AudioTrackImportHandler & track_handler;
77         XMLNode xml_track;
78
79         PBD::ID old_ds_id;
80         PBD::ID new_ds_id;
81
82         PlaylistList playlists;
83         AudioPlaylistImportHandler & pl_handler;
84 };
85
86 } // namespace ARDOUR
87
88 #endif