ladish/gui/lash_proxy.hpp

67 lines
2.1 KiB
C++

// -*- Mode: C++ ; indent-tabs-mode: t -*-
/* This file is part of Patchage.
* Copyright (C) 2008 Nedko Arnaudov <nedko@arnaudov.name>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* Patchage is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef LASH_PROXY_HPP__89E81B38_627F_41B9_AD08_DB119FB5F34C__INCLUDED
#define LASH_PROXY_HPP__89E81B38_627F_41B9_AD08_DB119FB5F34C__INCLUDED
#include "Patchage.hpp"
struct lash_project_info
{
string name;
time_t modification_time;
string description;
};
struct lash_loaded_project_properties
{
bool modified_status;
string description;
string notes;
};
class session;
struct lash_proxy_impl;
class lash_proxy
{
public:
lash_proxy(session * session_ptr);
~lash_proxy();
bool is_active();
void try_activate();
void deactivate();
void get_available_projects(std::list<lash_project_info>& projects);
void load_project(const std::string& project_name);
void save_all_projects();
void save_project(const std::string& project_name);
void close_project(const std::string& project_name);
void close_all_projects();
void project_rename(const string& old_name, const string& new_name);
void get_loaded_project_properties(const string& name, lash_loaded_project_properties& properties);
void project_set_description(const string& project_name, const string& description);
void project_set_notes(const string& project_name, const string& notes);
private:
lash_proxy_impl * _impl_ptr;
};
#endif // #ifndef LASH_PROXY_HPP__89E81B38_627F_41B9_AD08_DB119FB5F34C__INCLUDED