[Overview][Types][Classes][Procedures and functions][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Source position: fpg_form.pas line 113
type TfpgForm = class(TfpgBaseForm) |
||
published |
||
property BackgroundColor: TfpgColor; |
||
property DNDEnabled: Boolean; |
||
property FullScreen: Boolean; |
||
property Hint: TfpgString; |
||
property IconName: string; |
||
property ModalResult: TfpgModalResult; |
||
property ShowHint: Boolean; |
||
property Sizeable: Boolean; |
||
property WindowPosition: TWindowPosition; |
||
property WindowState: TfpgWindowState; |
||
property WindowTitle: string; |
||
property OnActivate: TNotifyEvent; |
||
property OnClick: TNotifyEvent; |
||
property OnClose: TFormCloseEvent; |
|
Occurs when the form closes |
property OnCloseQuery: TFormCloseQueryEvent; |
|
Occurs when close is attempted |
property OnCreate: TNotifyEvent; |
||
property OnDeactivate: TNotifyEvent; |
||
property OnDestroy: TNotifyEvent; |
||
property OnDoubleClick: TMouseButtonEvent; |
||
property OnEnter: TNotifyEvent; |
||
property OnExit: TNotifyEvent; |
||
property OnHide: TNotifyEvent; |
||
property OnKeyPress: TKeyPressEvent; |
||
property OnMouseDown: TMouseButtonEvent; |
||
property OnMouseEnter: TNotifyEvent; |
||
property OnMouseExit: TNotifyEvent; |
||
property OnMouseMove: TMouseMoveEvent; |
||
property OnMouseScroll: TMouseWheelEvent; |
||
property OnMouseUp: TMouseButtonEvent; |
||
property OnPaint: TPaintEvent; |
||
property OnResize: TNotifyEvent; |
||
property OnShow: TNotifyEvent; |
||
property OnShowHint: THintEvent; |
||
end; |
| | ||
|
TfpgBaseForm is the base class from which to derive a window such as a form or dialog |
|
| | ||
|
This forms the basis of any visual widget in fpGUI |
|
| | ||
|
Encapsulates a top level or child window |
|
| | ||
|
Maps to a backend specific base class |
|
| | ||
|
Implements XLib specific windowing functionality |
|
| | ||
|
Abstract class use for representing a Window or Widget |
|
| | ||
|
A descendant of the FPC TComponent class |
|
| | ||
TComponent |
||
? | ||
TObject |