mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
buf fix sort and procedure
This commit is contained in:
parent
ae8ca667e7
commit
9b97fa1dcf
7 changed files with 26 additions and 7 deletions
|
|
@ -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;
|
||||
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue