summaryrefslogtreecommitdiff
path: root/library/CustomGrid.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:55:48 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:55:48 +0200
commitdaea231de0ae28fc8343f29f09d0457cc0591461 (patch)
treea1d572442d2c903e40741a859ad47c8b0d740969 /library/CustomGrid.h
parent1.13 (diff)
downloadFreeFileSync-daea231de0ae28fc8343f29f09d0457cc0591461.tar.gz
FreeFileSync-daea231de0ae28fc8343f29f09d0457cc0591461.tar.bz2
FreeFileSync-daea231de0ae28fc8343f29f09d0457cc0591461.zip
1.14
Diffstat (limited to 'library/CustomGrid.h')
-rw-r--r--library/CustomGrid.h19
1 files changed, 6 insertions, 13 deletions
diff --git a/library/CustomGrid.h b/library/CustomGrid.h
index 3547b090..bd2f3fa8 100644
--- a/library/CustomGrid.h
+++ b/library/CustomGrid.h
@@ -12,7 +12,7 @@ class CustomGridTableBase;
//##################################################################################
-extern int leadingPanel;
+extern const wxGrid* leadGrid; //this global variable is not very nice...
class CustomGrid : public wxGrid
{
@@ -26,27 +26,20 @@ public:
~CustomGrid();
- bool CreateGrid(int numRows, int numCols, wxGrid::wxGridSelectionModes selmode = wxGrid::wxGridSelectCells);
-
- void deactivateScrollbars();
-
+ virtual bool CreateGrid(int numRows, int numCols, wxGrid::wxGridSelectionModes selmode = wxGrid::wxGridSelectCells);
//overwrite virtual method to finally get rid of the scrollbars
- void SetScrollbar(int orientation, int position, int thumbSize, int range, bool refresh = true);
-
+ virtual 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);
+ virtual void DoPrepareDC(wxDC& dc);
+ virtual void DrawColLabel(wxDC& dc, int col);
+ void deactivateScrollbars();
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();
bgstack15