MCPcopy Create free account
hub / github.com/MaxBelkov/visualsyslog / TStringGridLivingColumns

Method TStringGridLivingColumns

sourcecommon/gridcolumns.cpp:9–22  ·  view source on GitHub ↗

---------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

7#define MinColumnWidth 30
8//---------------------------------------------------------------------------
9TStringGridLivingColumns::TStringGridLivingColumns(TStringGrid * p)
10{
11 SG = p;
12
13 // ����� 20 ��� ���������� ���������� ���-�� �������
14 ColumnKoeff = new double[SG->ColCount + 20];
15 SaveColumnKoeff();
16
17 oldOnResize = ((TForm *)SG->Owner)->OnResize;
18 ((TForm *)SG->Owner)->OnResize = FormResize;
19
20 oldOnMouseUp = SG->OnMouseUp;
21 SG->OnMouseUp = MouseUp;
22}
23//---------------------------------------------------------------------------
24TStringGridLivingColumns::~TStringGridLivingColumns()
25{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected