patchbay interface
[ladish.git] / gui / lash_proxy.hpp
blob686fa4be9a17d980723b982bd5c8281271b02e50
1 /* -*- Mode: C ; c-basic-offset: 2 -*- */
2 /*
3 * LADI Session Handler (ladish)
5 * Copyright (C) 2008 Nedko Arnaudov <nedko@arnaudov.name>
7 **************************************************************************
8 * This file contains interface to code that interfaces ladishd through D-Bus
9 **************************************************************************
11 * LADI Session Handler is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * LADI Session Handler is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with LADI Session Handler. If not, see <http://www.gnu.org/licenses/>
23 * or write to the Free Software Foundation, Inc.,
24 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
27 #ifndef LASH_PROXY_HPP__89E81B38_627F_41B9_AD08_DB119FB5F34C__INCLUDED
28 #define LASH_PROXY_HPP__89E81B38_627F_41B9_AD08_DB119FB5F34C__INCLUDED
30 #include "Patchage.hpp"
32 struct lash_project_info
34 std::string name;
35 time_t modification_time;
36 std::string description;
39 struct lash_loaded_project_properties
41 bool modified_status;
42 std::string description;
43 std::string notes;
46 class session;
48 struct lash_proxy_impl;
50 class lash_proxy
52 public:
53 lash_proxy(session * session_ptr);
54 ~lash_proxy();
56 bool is_active();
57 void try_activate();
58 void deactivate();
59 void get_available_projects(std::list<lash_project_info>& projects);
60 void load_project(const std::string& project_name);
61 void save_all_projects();
62 void save_project(const std::string& project_name);
63 void close_project(const std::string& project_name);
64 void close_all_projects();
65 void project_rename(const std::string& old_name, const std::string& new_name);
66 void get_loaded_project_properties(const std::string& name, lash_loaded_project_properties& properties);
67 void project_set_description(const std::string& project_name, const std::string& description);
68 void project_set_notes(const std::string& project_name, const std::string& notes);
70 private:
71 lash_proxy_impl * _impl_ptr;
74 #endif // #ifndef LASH_PROXY_HPP__89E81B38_627F_41B9_AD08_DB119FB5F34C__INCLUDED