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 KISSCOUNT_H
|
|
|
|
#define KISSCOUNT_H
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
|
|
|
#include <list>
|
|
|
|
|
2010-05-24 20:14:15 +02:00
|
|
|
#include <model/model.h>
|
2010-05-14 15:04:01 +02:00
|
|
|
#include <view/wxUI.h>
|
|
|
|
|
2010-09-22 21:02:29 +02:00
|
|
|
#include <wx/display.h>
|
|
|
|
|
2011-01-26 11:58:32 +01:00
|
|
|
#define APP_VERSION "v0.2_dev"
|
2010-08-14 22:04:03 +02:00
|
|
|
|
2010-05-14 15:04:01 +02:00
|
|
|
class wxUI;
|
2010-09-08 11:02:03 +02:00
|
|
|
class Database;
|
|
|
|
|
2010-05-14 15:04:01 +02:00
|
|
|
class KissCount
|
|
|
|
{
|
2010-08-26 21:28:15 +02:00
|
|
|
public:
|
|
|
|
KissCount(const char* bdd_filename);
|
|
|
|
~KissCount();
|
2010-05-14 15:04:01 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
std::list<wxString> GetUsers();
|
|
|
|
bool IsValidUser(const wxString& user, const wxString& password);
|
|
|
|
void LoadUser(const wxString& user);
|
|
|
|
User* GetUser();
|
|
|
|
void ChangePassword(const wxString& password);
|
|
|
|
bool UserExists(const wxString& name);
|
|
|
|
void ChangeName(const wxString& name);
|
|
|
|
void NewUser(const wxString& name);
|
2010-06-22 11:35:21 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
void LoadYear(int year, bool force=false);
|
2010-06-22 11:35:21 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
wxString AddOperation(Operation& op);
|
|
|
|
void UpdateOperation(Operation& op);
|
|
|
|
void DeleteOperation(Operation& op);
|
|
|
|
void DeleteOperations(int month, int year);
|
2010-10-24 16:04:56 +02:00
|
|
|
double MetaAmount(const wxString& id);
|
|
|
|
double MetaPositiveAmount(const wxString& id);
|
2010-06-22 11:35:21 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
double GetAccountAmount(const wxString& id, int month, int year);
|
|
|
|
void SetAccountAmount(int month, int year, const wxString& accountId, double value);
|
2011-01-29 20:53:44 +01:00
|
|
|
double CalcAccountAmount(const wxString& id, int month, int year, bool* had_values);
|
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
wxString AddAccount(Account& ac);
|
|
|
|
void UpdateAccount(Account& ac);
|
2011-02-08 21:17:35 +01:00
|
|
|
void DeleteAccount(Account& ac, const wxString& replacement);
|
2010-10-20 20:54:23 +02:00
|
|
|
void AddSharedAccount(Account& ac, const wxString& granted);
|
2010-10-24 16:04:56 +02:00
|
|
|
void RemoveSharedAccount(Account& ac, const wxString& granted);
|
|
|
|
std::map<wxString, wxString> getSharedAccountOwners(const wxString& account);
|
|
|
|
wxString getSharedAccountOwner(const wxString& account);
|
2010-06-02 22:14:11 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
wxString AddCategory(Category& category);
|
|
|
|
void UpdateCategory(Category& category);
|
2011-02-08 21:17:35 +01:00
|
|
|
void DeleteCategory(Category& category, const wxString& replacement);
|
2010-06-22 11:35:21 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
std::map<int, std::vector<int> > GetAllOperations();
|
2010-06-23 19:32:42 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
void GenerateMonth(int monthFrom, int yearFrom, int monthTo, int yearTo);
|
|
|
|
void KillMe();
|
2010-07-07 21:04:38 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
void SetLanguage(wxLanguage language);
|
|
|
|
void SetOperationOrder(const wxString& order);
|
2010-07-14 16:22:02 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
std::vector<Operation>* Search(wxString* description, wxDateTime* dateFrom, wxDateTime* dateTo,
|
|
|
|
wxString* amountFrom, wxString* amountTo,
|
2010-12-01 20:30:34 +01:00
|
|
|
std::vector<wxString> categories, int types, std::vector<wxString> accounts);
|
2010-07-17 12:33:39 +02:00
|
|
|
|
2010-11-17 21:09:41 +01:00
|
|
|
bool SearchPreviousOperation(Operation* res, Operation& op, int month, int year);
|
2010-08-17 18:59:19 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
void GetStats(int monthFrom, int yearFrom, int monthTo, int yearTo,
|
|
|
|
std::map<wxString, std::map<int, std::map<int, double> > >* accountAmounts,
|
|
|
|
std::map<wxString, double>* categories);
|
2010-08-17 18:59:19 +02:00
|
|
|
|
2010-11-19 19:58:02 +01:00
|
|
|
void GetMonthStats(int month, int year, int nbDays,
|
|
|
|
std::map<wxString, std::vector<double> >* operations,
|
|
|
|
std::map<wxString, double>* categories);
|
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
std::map<wxString, double>* GetNotChecked(int month, int year);
|
2010-08-21 11:49:03 +02:00
|
|
|
|
2010-10-24 16:04:56 +02:00
|
|
|
static wxFont ExtractFont(wxString strFont);
|
|
|
|
static wxString CompactFont(const wxFont& font);
|
2010-09-08 11:02:03 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
private:
|
|
|
|
wxUI* _wxUI;
|
|
|
|
Database* _db;
|
|
|
|
User* _user;
|
2010-05-14 15:04:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|