KissCount/src/model/User.hpp

93 lines
2.5 KiB
C++
Raw Normal View History

2010-07-10 16:34:30 +02:00
/*
2012-02-01 11:02:54 +01:00
Copyright 2010-2012 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>
2011-08-25 17:45:41 +02:00
#include <QFont>
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();
2011-08-25 17:45:41 +02:00
int _id;
2011-08-27 18:35:36 +02:00
QString _name;
QString _password;
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;
2011-08-27 18:35:36 +02:00
std::map<QString, QString> _preferences;
std::map<QString, ImportPattern> _importPatterns;
2011-08-14 19:26:54 +02:00
class AccountNotFound {};
2011-08-25 17:45:41 +02:00
Category GetCategory(int catId);
2011-08-27 18:35:36 +02:00
QString GetCategoryName(int catId);
int GetCategoryId(const QString& catName);
2011-08-25 17:45:41 +02:00
const QFont GetCategoryFont(int catId);
void AddCategory(const Category& cat);
void UpdateCategory(const Category& cat);
void DeleteCategory(const Category& cat);
2011-08-25 17:45:41 +02:00
Account GetAccount(int accountId) throw (AccountNotFound);
2011-08-27 18:35:36 +02:00
QString GetAccountName(int accountId);
int GetAccountId(const QString& accountName);
int GetAccountIdFromAccountNumber(const QString& accountNumber);
void AddAccount(Account& ac);
void UpdateAccount(Account& ac);
void DeleteAccount(Account& ac);
int GetCategoriesNumber();
int GetAccountsNumber();
int GetOperationsNumber(int month, int year);
2011-08-27 18:35:36 +02:00
QString 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