diff options
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/gui_basegrid.pas | 1 | ||||
-rw-r--r-- | src/gui/gui_grid.pas | 2 | ||||
-rw-r--r-- | src/gui/gui_memo.pas | 1 | ||||
-rw-r--r-- | src/gui/gui_panel.pas | 3 |
4 files changed, 6 insertions, 1 deletions
diff --git a/src/gui/gui_basegrid.pas b/src/gui/gui_basegrid.pas index a2ca441c..cf6c3594 100644 --- a/src/gui/gui_basegrid.pas +++ b/src/gui/gui_basegrid.pas @@ -140,6 +140,7 @@ type property ColumnWidth[ACol: Integer]: integer read GetColumnWidth write SetColumnWidth; property ColumnBackgroundColor[ACol: Integer]: TfpgColor read GetColumnBackgroundColor write SetColumnBackgroundColor; property ColumnTextColor[ACol: Integer]: TfpgColor read GetColumnTextColor write SetColumnTextColor; + property VisibleRows: Integer read VisibleLines; property TopRow: Integer read FFirstRow write SetFirstRow; property OnDrawCell: TfpgDrawCellEvent read FOnDrawCell write FOnDrawCell; property OnFocusChange: TfpgFocusChangeNotify read FOnFocusChange write FOnFocusChange; diff --git a/src/gui/gui_grid.pas b/src/gui/gui_grid.pas index 6d831d21..59ae77ca 100644 --- a/src/gui/gui_grid.pas +++ b/src/gui/gui_grid.pas @@ -134,7 +134,7 @@ type property ShowHeader; property TabOrder; property TopRow; -// property VisibleRows; + property VisibleRows; property OnCanSelectCell; property OnDrawCell; property OnDoubleClick; diff --git a/src/gui/gui_memo.pas b/src/gui/gui_memo.pas index 58ea1120..3d160d2a 100644 --- a/src/gui/gui_memo.pas +++ b/src/gui/gui_memo.pas @@ -109,6 +109,7 @@ type property TabOrder; property TextColor; property OnChange: TNotifyEvent read FOnChange write FOnChange; + property OnKeyPress; end; diff --git a/src/gui/gui_panel.pas b/src/gui/gui_panel.pas index 4f2e5680..474bb4ff 100644 --- a/src/gui/gui_panel.pas +++ b/src/gui/gui_panel.pas @@ -67,6 +67,9 @@ type property Style; property OnClick; property OnDoubleClick; + property OnMouseDown; + property OnMouseUp; + property OnPaint; end; |