Added About Dialog
[demorecorder] / src / ProjectSettings.vala
1 /*  Demo Recorder for MAEMO 5
2 *   Copyright (C) 2010 Dru Moore <usr@dru-id.co.uk>
3 *   This program is free software; you can redistribute it and/or modify
4 *   it under the terms of the GNU General Public License version 2,
5 *   or (at your option) any later version, as published by the Free
6 *   Software Foundation
7 *
8 *   This program is distributed in the hope that it will be useful,
9 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
10 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 *   GNU General Public License for more details
12 *
13 *   You should have received a copy of the GNU General Public
14 *   License along with this program; if not, write to the
15 *   Free Software Foundation, Inc.,
16 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 */
18 namespace IdWorks {
19
20 protected struct ProjectSettings {
21
22   public string working_folder;
23   public string name;
24   public double volume;
25   public double pan;
26   public unowned List<Track?> tracks;
27   
28   public string serialize_to_string() {
29     string ret = "";
30     /// TODO
31     return ret;
32   }
33   
34   public void deserialize_from_string(string data) {
35     /// TODO
36   }
37   
38 }
39
40 }