buf fix sort and procedure

This commit is contained in:
levinsv 2020-04-13 21:11:13 +05:00
parent ae8ca667e7
commit 9b97fa1dcf
7 changed files with 26 additions and 7 deletions

View file

@ -36,6 +36,15 @@ public:
{
return true;
};
bool IsSort()
{
return isSort;
};
void SetSort(bool flag)
{
isSort=flag;
};
wxSize GetBestSize(int row, int col);
void OnLabelDoubleClick(wxGridEvent &event);
void OnLabelClick(wxGridEvent &event);
@ -65,6 +74,7 @@ private:
ColKeySizeHashMap colSizes;
// Max size for each column
wxArrayInt colMaxSizes;
bool isSort;
};