KissCount/src/controller/KissCount.h

76 lines
2.0 KiB
C
Raw Normal View History

2010-07-10 16:34:30 +02:00
/*
Copyright 2010 Grégory Soutadé
This file is part of KissCount.
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.
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.
You should have received a copy of the GNU General Public License
along with KissCount. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef KISSCOUNT_H
#define KISSCOUNT_H
#include <fstream>
#include <iostream>
#include <list>
2010-05-24 20:14:15 +02:00
#include <model/model.h>
#include <view/wxUI.h>
class wxUI;
class KissCount
{
public:
KissCount();
~KissCount();
std::list<wxString> GetUsers();
2010-07-05 18:35:12 +02:00
bool IsValidUser(const wxString& user, const wxString& password);
void LoadUser(const wxString& user);
2010-05-16 10:35:34 +02:00
User* GetUser();
2010-07-05 18:35:12 +02:00
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
void LoadYear(int year, bool force=false);
2010-07-05 18:35:12 +02:00
wxString AddOperation(Operation& op);
void UpdateOperation(Operation& op);
void DeleteOperation(Operation& op);
2010-06-24 21:02:42 +02:00
void DeleteOperations(int month, int year);
2010-06-22 11:35:21 +02:00
2010-07-05 18:35:12 +02:00
double GetAccountAmount(const wxString& id, int month, int year);
void SetAccountAmount(int month, int year, const wxString& accountId, double value);
wxString AddAccount(Account& ac);
void UpdateAccount(Account& ac);
void DeleteAccount(Account& ac);
2010-06-02 22:14:11 +02:00
2010-07-05 18:35:12 +02:00
wxString AddCategory(Category& category);
void UpdateCategory(Category& category);
void DeleteCategory(Category& category);
2010-06-22 11:35:21 +02:00
2010-06-23 14:25:00 +02:00
std::map<int, std::vector<int> > GetAllOperations();
2010-06-23 19:32:42 +02:00
void GenerateMonth(int monthFrom, int yearFrom, int monthTo, int yearTo);
2010-06-27 21:39:49 +02:00
void KillMe();
void SetLanguage(wxLanguage language);
private:
wxUI* _wxUI;
Database* _db;
2010-05-16 10:35:34 +02:00
User* _user;
};
#endif