1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#ifndef CUSTOMGRID_H_INCLUDED
#define CUSTOMGRID_H_INCLUDED
#include <vector>
#include <wx/grid.h>
#include "../FreeFileSync.h"
using namespace FreeFileSync;
class CustomGridTableBase;
//##################################################################################
extern int leadingPanel;
class CustomGrid : public wxGrid
{
public:
CustomGrid(wxWindow *parent,
wxWindowID id,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxWANTS_CHARS,
const wxString& name = wxGridNameStr);
~CustomGrid();
bool CreateGrid(int numRows, int numCols, wxGrid::wxGridSelectionModes selmode = wxGrid::wxGridSelectCells);
void deactivateScrollbars();
//overwrite virtual method to finally get rid of the scrollbars
void SetScrollbar(int orientation, int position, int thumbSize, int range, bool refresh = true);
//this method is called when grid view changes: useful for parallel updating of multiple grids
void DoPrepareDC(wxDC& dc);
void setScrollFriends(CustomGrid* gridLeft, CustomGrid* gridRight, CustomGrid* gridMiddle);
void setGridDataTable(GridView* gridRefUI, FileCompareResult* gridData);
void updateGridSizes();
//set sort direction indicator on UI
void setSortMarker(const int sortColumn, const wxBitmap* bitmap = &wxNullBitmap);
void DrawColLabel(wxDC& dc, int col);
private:
void adjustGridHeights();
bool scrollbarsEnabled;
CustomGrid* m_gridLeft;
CustomGrid* m_gridRight;
CustomGrid* m_gridMiddle;
CustomGridTableBase* gridDataTable;
int currentSortColumn;
const wxBitmap* sortMarker;
};
#endif // CUSTOMGRID_H_INCLUDED
|