Merged with trunk revision 600
[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
26 #include <sigc++/signal.h>
27
28 #include <ardour/ardour.h>
29 #include <ardour/stateful.h>
30
31 namespace ARDOUR {
32
33 class Source : public Stateful, public sigc::trackable
34 {
35   public:
36         Source (std::string name);
37         Source (const XMLNode&);
38         virtual ~Source ();
39
40         std::string name() const { return _name; }
41         int set_name (std::string str, bool destructive);
42
43         ARDOUR::id_t  id() const   { return _id; }
44
45         uint32_t use_cnt() const { return _use_cnt; }
46         void use ();
47         void release ();
48
49         time_t timestamp() const { return _timestamp; }
50         void stamp (time_t when) { _timestamp = when; }
51
52         XMLNode& get_state ();
53         int set_state (const XMLNode&);
54
55         sigc::signal<void,Source *> GoingAway;
56
57   protected:
58         string            _name;
59         uint32_t          _use_cnt;
60         time_t            _timestamp;
61
62   private:
63         ARDOUR::id_t _id;
64 };
65
66 }
67
68 #endif /* __ardour_source_h__ */