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/>.
|
|
|
|
*/
|
|
|
|
|
2010-05-16 20:09:18 +02:00
|
|
|
#ifndef GRIDACCOUNT_H
|
|
|
|
#define GRIDACCOUNT_H
|
|
|
|
|
|
|
|
#include <wx/wx.h>
|
|
|
|
#include <wx/grid.h>
|
|
|
|
#include <list>
|
|
|
|
#include "AccountPanel.h"
|
|
|
|
|
|
|
|
class GridAccount : public wxGrid
|
|
|
|
{
|
2010-07-04 16:33:25 +02:00
|
|
|
public:
|
|
|
|
GridAccount(wxWindow *parent, wxWindowID id) : wxGrid(parent, id) {}
|
2010-05-16 20:09:18 +02:00
|
|
|
wxPen GetColGridLinePen (int col) {return wxPen(*wxBLACK, 1, wxSOLID);}
|
|
|
|
wxPen GetRowGridLinePen (int row) {
|
|
|
|
if (row == 0 || row == _fixCosts ||
|
2010-06-16 17:29:07 +02:00
|
|
|
row == _week1 ||
|
|
|
|
row == _week2 ||
|
2010-06-27 21:39:49 +02:00
|
|
|
row == _week3 ||
|
|
|
|
row == _week4)
|
2010-05-16 20:09:18 +02:00
|
|
|
return wxPen(*wxBLACK, 1, wxSOLID);
|
2010-06-21 10:53:43 +02:00
|
|
|
|
|
|
|
return GetCellBackgroundColour(row, 0);
|
2010-05-16 20:09:18 +02:00
|
|
|
}
|
|
|
|
|
2010-06-16 17:29:07 +02:00
|
|
|
void SetWeek(int week, int line) {
|
2010-07-04 16:33:25 +02:00
|
|
|
switch (week) {
|
|
|
|
case 1: _week1 = line; break;
|
|
|
|
case 2: _week2 = line; break;
|
|
|
|
case 3: _week3 = line; break;
|
|
|
|
case 4: _week4 = line; break;
|
|
|
|
}
|
2010-06-16 17:29:07 +02:00
|
|
|
}
|
2010-05-16 20:09:18 +02:00
|
|
|
int _fixCosts;
|
2010-06-27 21:39:49 +02:00
|
|
|
int _week1, _week2, _week3, _week4;
|
2010-07-04 16:33:25 +02:00
|
|
|
|
|
|
|
private:
|
2010-05-16 20:09:18 +02:00
|
|
|
std::list<int> _col;
|
|
|
|
};
|
|
|
|
#endif
|