first pass on track mode switch; fixes to dangling region refs after capture; destroy...
[ardour.git] / libs / ardour / ardour / source.h
1 /*
2     Copyright (C) 2000 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #ifndef __ardour_source_h__
22 #define __ardour_source_h__
23
24 #include <string>
25 #include <set>
26
27 #include <sigc++/signal.h>
28
29 #include <pbd/statefuldestructible.h> 
30
31 #include <ardour/ardour.h>
32
33 namespace ARDOUR {
34
35 class Session;
36 class Playlist;
37
38 class Source : public PBD::StatefulDestructible
39 {
40   public:
41         Source (Session&, std::string name);
42         Source (Session&, const XMLNode&);
43         virtual ~Source ();
44
45         std::string name() const { return _name; }
46         int set_name (std::string str, bool destructive);
47
48         time_t timestamp() const { return _timestamp; }
49         void stamp (time_t when) { _timestamp = when; }
50
51         XMLNode& get_state ();
52         int set_state (const XMLNode&);
53
54         void use () { _in_use++; }
55         void disuse () { if (_in_use) { _in_use--; } }
56
57         void add_playlist (ARDOUR::Playlist*);
58         void remove_playlist (ARDOUR::Playlist*);
59
60         uint32_t used() const;
61
62   protected:
63         Session&          _session;
64         string            _name;
65         time_t            _timestamp;
66
67         std::set<ARDOUR::Playlist*> _playlists;
68
69   private:
70         uint32_t          _in_use;
71 };
72
73 }
74
75 #endif /* __ardour_source_h__ */