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
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
This file is part of KissCount.
|
2010-07-10 16:34:30 +02:00
|
|
|
|
2010-08-26 21:28:15 +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
|
|
|
|
2010-08-26 21:28:15 +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
|
|
|
|
2010-08-26 21:28:15 +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
|
|
|
*/
|
|
|
|
|
2010-05-14 15:04:01 +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>
|
2010-05-14 15:04:01 +02:00
|
|
|
|
2010-07-03 11:48:53 +02:00
|
|
|
#include "Category.h"
|
|
|
|
#include "Account.h"
|
|
|
|
#include "Operation.h"
|
2010-10-24 16:04:56 +02:00
|
|
|
#include "Database.h"
|
2011-03-20 19:08:24 +01:00
|
|
|
#include "import/ImportEngine.h"
|
2010-10-24 16:04:56 +02:00
|
|
|
|
|
|
|
class Database;
|
2011-03-20 19:08:24 +01:00
|
|
|
class ImportPattern;
|
2010-05-24 20:14:15 +02:00
|
|
|
|
2010-05-14 15:04:01 +02:00
|
|
|
class User
|
|
|
|
{
|
2010-08-26 21:28:15 +02:00
|
|
|
public:
|
2010-10-24 16:04:56 +02:00
|
|
|
User(Database* db);
|
2010-08-26 21:28:15 +02:00
|
|
|
~User();
|
2011-02-13 19:30:12 +01:00
|
|
|
void InvalidateOperations();
|
2010-08-26 21:28:15 +02:00
|
|
|
|
|
|
|
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;
|
2010-08-26 21:28:15 +02:00
|
|
|
std::map<wxString, wxString> _preferences;
|
2011-03-20 19:08:24 +01:00
|
|
|
std::map<wxString, ImportPattern> _importPatterns;
|
2010-08-26 21:28:15 +02:00
|
|
|
|
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);
|
2011-08-14 21:03:48 +02:00
|
|
|
void AddCategory(const Category& cat);
|
|
|
|
void UpdateCategory(const Category& cat);
|
|
|
|
void DeleteCategory(const Category& cat);
|
|
|
|
|
2011-01-08 12:17:54 +01:00
|
|
|
|
2011-08-14 19:26:54 +02:00
|
|
|
Account GetAccount(const wxString& accountId) throw (AccountNotFound);
|
2010-08-26 21:28:15 +02:00
|
|
|
wxString GetAccountName(const wxString& accountId);
|
2011-02-09 20:50:21 +01:00
|
|
|
wxString GetAccountId(const wxString& accountName);
|
2011-08-14 21:03:48 +02:00
|
|
|
void AddAccount(Account& ac);
|
|
|
|
void UpdateAccount(Account& ac);
|
|
|
|
void DeleteAccount(Account& ac);
|
|
|
|
|
2011-01-08 12:17:54 +01:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
int GetCategoriesNumber();
|
|
|
|
int GetAccountsNumber();
|
|
|
|
int GetOperationsNumber(int month, int year);
|
2011-01-08 12:17:54 +01:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
wxLanguage GetLanguage();
|
2011-01-08 12:17:54 +01:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
void LinkOrUnlinkOperation(Operation& op);
|
2011-01-08 12:17:54 +01:00
|
|
|
|
2010-10-03 20:31:06 +02:00
|
|
|
void Group(const Operation& op);
|
2010-10-25 21:33:09 +02:00
|
|
|
bool Group(std::vector<Operation>* ops, const Operation& op);
|
2010-10-03 20:31:06 +02:00
|
|
|
void UnGroup(const Operation& op);
|
2010-09-22 21:02:29 +02:00
|
|
|
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;
|
2010-05-14 15:04:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|