ardour
audio_track_importer.h
Go to the documentation of this file.
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 
31 
32 namespace ARDOUR {
33 
34 class AudioPlaylistImportHandler;
35 class AudioPlaylistImporter;
36 
38 {
39  public:
40  AudioTrackImportHandler (XMLTree const & source, Session & session, AudioPlaylistImportHandler & pl_handler);
42  virtual std::string get_info () const;
43 };
44 
45 
47 {
48  public:
49  AudioTrackImporter (XMLTree const & source,
50  Session & session,
51  AudioTrackImportHandler & track_handler,
52  XMLNode const & node,
53  AudioPlaylistImportHandler & pl_handler);
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 
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 
78 
81 
82  PlaylistList playlists;
84 };
85 
86 } // namespace ARDOUR
87 
88 #endif
AudioPlaylistImportHandler & pl_handler
Definition: xml++.h:55
Definition: id.h:32
std::list< PlaylistPtr > PlaylistList
Virtual interface class for element importers.
Definition: amp.h:29
#define LIBARDOUR_API
Virtual interface class for element import handlers.
Definition: xml++.h:95
boost::shared_ptr< AudioPlaylistImporter > PlaylistPtr
AudioTrackImportHandler & track_handler