KissCount/src/model/User.hpp

91 lines
2.5 KiB
C++
Raw Normal View History

2010-07-10 16:34:30 +02:00
/*
2011-01-29 13:04:15 +01:00
Copyright 2010-2011 Grégory Soutadé
2010-07-10 16:34:30 +02:00
This file is part of KissCount.
2010-07-10 16:34:30 +02:00
KissCount 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 3 of the License, or
(at your option) any later version.
2010-07-10 16:34:30 +02:00
KissCount 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 more details.
2010-07-10 16:34:30 +02:00
You should have received a copy of the GNU General Public License
along with KissCount. If not, see <http://www.gnu.org/licenses/>.
2010-07-10 16:34:30 +02:00
*/
#ifndef USER_H
#define USER_H
2010-06-22 12:29:36 +02:00
#include <map>
2010-06-03 18:28:38 +02:00
#include <vector>
2010-05-24 20:14:15 +02:00
#include <wx/wx.h>
2011-08-20 14:02:47 +02:00
#include "Category.hpp"
#include "Account.hpp"
#include "Operation.hpp"
#include "Database.hpp"
#include "import/ImportEngine.hpp"
2010-10-24 16:04:56 +02:00
class Database;
class ImportPattern;
2010-05-24 20:14:15 +02:00
class User
{
public:
2010-10-24 16:04:56 +02:00
User(Database* db);
~User();
void InvalidateOperations();
wxString _id;
wxString _name;
wxString _password;
std::vector<Account> _accounts;
std::map<unsigned int, std::map<unsigned int, std::vector<Operation> >* > _operations;
std::vector<Category> _categories;
2010-09-08 11:02:03 +02:00
std::vector<wxFont> _categoriesFonts;
std::map<wxString, wxString> _preferences;
std::map<wxString, ImportPattern> _importPatterns;
2011-08-14 19:26:54 +02:00
class AccountNotFound {};
2011-02-09 20:50:21 +01:00
Category GetCategory(const wxString& catId);
wxString GetCategoryName(const wxString& catId);
wxString GetCategoryId(const wxString& catName);
const wxFont GetCategoryFont(const wxString& catId);
void AddCategory(const Category& cat);
void UpdateCategory(const Category& cat);
void DeleteCategory(const Category& cat);
2011-08-14 19:26:54 +02:00
Account GetAccount(const wxString& accountId) throw (AccountNotFound);
wxString GetAccountName(const wxString& accountId);
2011-02-09 20:50:21 +01:00
wxString GetAccountId(const wxString& accountName);
void AddAccount(Account& ac);
void UpdateAccount(Account& ac);
void DeleteAccount(Account& ac);
int GetCategoriesNumber();
int GetAccountsNumber();
int GetOperationsNumber(int month, int year);
wxLanguage GetLanguage();
void LinkOrUnlinkOperation(Operation& op);
void Group(const Operation& op);
bool Group(std::vector<Operation>* ops, const Operation& op);
void UnGroup(const Operation& op);
void ResolveGroups(int year);
2010-10-24 16:04:56 +02:00
2011-03-23 20:35:29 +01:00
void UpdateImportPattern(User* user);
2010-10-24 16:04:56 +02:00
private:
Database* _db;
};
#endif