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>
|
2011-08-25 17:45:41 +02:00
|
|
|
|
|
|
|
#include <QFont>
|
2010-05-14 15:04:01 +02:00
|
|
|
|
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;
|
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
|
|
|
|
2011-08-25 17:45:41 +02:00
|
|
|
int _id;
|
|
|
|
std::string _name;
|
|
|
|
std::string _password;
|
2010-08-26 21:28:15 +02:00
|
|
|
std::vector<Account> _accounts;
|
|
|
|
std::map<unsigned int, std::map<unsigned int, std::vector<Operation> >* > _operations;
|
|
|
|
std::vector<Category> _categories;
|
2011-08-25 17:45:41 +02:00
|
|
|
std::vector<QFont> _categoriesFonts;
|
|
|
|
std::map<std::string, std::string> _preferences;
|
|
|
|
std::map<std::string, ImportPattern> _importPatterns;
|
2010-08-26 21:28:15 +02:00
|
|
|
|
2011-08-14 19:26:54 +02:00
|
|
|
class AccountNotFound {};
|
|
|
|
|
2011-08-25 17:45:41 +02:00
|
|
|
Category GetCategory(int catId);
|
|
|
|
std::string GetCategoryName(int catId);
|
|
|
|
int GetCategoryId(const std::string& catName);
|
|
|
|
const QFont GetCategoryFont(int 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-25 17:45:41 +02:00
|
|
|
Account GetAccount(int accountId) throw (AccountNotFound);
|
|
|
|
std::string GetAccountName(int accountId);
|
|
|
|
int GetAccountId(const std::string& 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
|
|
|
|
2011-08-25 17:45:41 +02:00
|
|
|
std::string 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
|