2010-07-10 16:34:30 +02:00
|
|
|
/*
|
2010-08-26 21:28:15 +02:00
|
|
|
Copyright 2010 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-16 20:09:18 +02:00
|
|
|
#ifndef GRIDACCOUNT_H
|
|
|
|
#define GRIDACCOUNT_H
|
|
|
|
|
|
|
|
#include <wx/wx.h>
|
|
|
|
#include <wx/grid.h>
|
|
|
|
#include <list>
|
2010-09-28 21:38:14 +02:00
|
|
|
#include <algorithm>
|
2010-09-04 11:54:49 +02:00
|
|
|
#include <view/AccountPanel.h>
|
2010-07-14 14:36:21 +02:00
|
|
|
#include <model/model.h>
|
|
|
|
#include <controller/KissCount.h>
|
2010-09-04 11:54:49 +02:00
|
|
|
#include "wxGridCellFastBoolEditor.h"
|
2010-09-14 21:11:41 +02:00
|
|
|
#include "wxGridCellTreeButtonRenderer.h"
|
|
|
|
#include "wxGridCellTreeButtonEditor.h"
|
2010-10-08 20:47:56 +02:00
|
|
|
#include "wxGridCellFormulaEditor.h"
|
2010-10-14 22:16:22 +02:00
|
|
|
#include "wxGridCellTabStringRenderer.h"
|
2010-07-14 14:36:21 +02:00
|
|
|
|
|
|
|
class KissCount;
|
|
|
|
|
2010-09-14 21:11:41 +02:00
|
|
|
enum {TREE, DESCRIPTION, DATE, DEBIT, CREDIT, CATEGORY, ACCOUNT, DELETE, CHECKED, NUMBER_COLS_OPS};
|
2010-05-16 20:09:18 +02:00
|
|
|
|
|
|
|
class GridAccount : public wxGrid
|
|
|
|
{
|
2010-08-26 21:28:15 +02:00
|
|
|
public:
|
|
|
|
GridAccount(KissCount* kiss, wxWindow *parent, wxWindowID id);
|
|
|
|
~GridAccount();
|
2010-07-14 11:15:48 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
wxPen GetColGridLinePen (int col);
|
|
|
|
wxPen GetRowGridLinePen (int row);
|
2010-09-12 18:10:40 +02:00
|
|
|
|
|
|
|
void LoadOperations(std::vector<Operation>* operations, bool canAddOperation, bool setWeek, int month, int year);
|
2010-10-03 20:31:06 +02:00
|
|
|
void InsertOperationWithWeek(User* user, Operation& op, int line, bool fix, int month, int year) ;
|
|
|
|
void InsertOperation(User* user, Operation& op, int line, bool fix, int month, int year) ;
|
2010-08-26 21:28:15 +02:00
|
|
|
|
2010-09-22 21:02:29 +02:00
|
|
|
void Group();
|
|
|
|
void UnGroup();
|
|
|
|
|
2010-09-04 11:54:49 +02:00
|
|
|
void OnCellLeftClick(wxGridEvent& evt);
|
2010-09-12 19:19:16 +02:00
|
|
|
void OnOperationModified(wxGridEvent& event);
|
2010-09-04 11:54:49 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
int _fixCosts;
|
|
|
|
int _week1, _week2, _week3, _week4;
|
2010-10-08 20:47:56 +02:00
|
|
|
std::vector<Operation> _displayedOperations;
|
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
private:
|
|
|
|
KissCount* _kiss;
|
|
|
|
wxString* _categories, *_accounts;
|
2010-09-12 18:10:40 +02:00
|
|
|
std::vector<Operation>* _operations;
|
|
|
|
bool _canAddOperation;
|
2010-09-12 19:19:16 +02:00
|
|
|
int _curMonth, _curYear;
|
2010-07-14 14:36:21 +02:00
|
|
|
|
2010-09-13 19:19:11 +02:00
|
|
|
void SetWeek(int week, int line);
|
|
|
|
void ResetWeeks();
|
2010-10-03 18:31:25 +02:00
|
|
|
void InsertIntoGrid(Operation& op);
|
2010-09-13 19:19:11 +02:00
|
|
|
void DeleteOperation(const Operation& op);
|
2010-10-04 20:15:03 +02:00
|
|
|
void UpdateMeta(Operation& op);
|
2010-10-03 20:31:06 +02:00
|
|
|
void RemoveMeta(Operation& op, int line, bool removeRoot, bool deleteOp);
|
2010-10-04 22:10:21 +02:00
|
|
|
void CheckMeta(Operation& op, int line, bool check);
|
2010-10-03 20:31:06 +02:00
|
|
|
|
|
|
|
Operation& GetOperation(const wxString& id);
|
2010-10-04 22:10:21 +02:00
|
|
|
void UpdateOperation(Operation& op);
|
2010-10-04 20:15:03 +02:00
|
|
|
int GetDisplayedRow(const wxString& id);
|
2010-10-07 20:24:35 +02:00
|
|
|
void GetSelectedOperations(std::vector<int>* rows);
|
2010-10-03 20:31:06 +02:00
|
|
|
|
2010-09-04 11:54:49 +02:00
|
|
|
DECLARE_EVENT_TABLE();
|
2010-05-16 20:09:18 +02:00
|
|
|
};
|
|
|
|
#endif
|