[Overview][Types][Classes][Procedures and functions][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Concrete button class used in user interfaces to represent a push button
Source position: fpg_button.pas line 135
type TfpgButton = class(TfpgBaseButton) |
||
published |
||
property AllowAllUp: Boolean; |
||
property AllowDown: Boolean; |
||
property AllowMultiLineText: Boolean; |
||
property BackgroundColor: TfpgColor; |
||
property Default: Boolean; |
||
property Down: Boolean; |
||
property Embedded: Boolean; |
||
property Enabled: Boolean; |
||
property Flat: Boolean; |
||
property FontDesc: string; |
||
property GroupIndex: Integer; |
||
|
Specifies the vertical size of the control or form in pixels |
|
property Hint: TfpgString; |
||
property ImageLayout: TImageLayout; |
|
Defines where on the button the image will be displayed |
property ImageMargin: Integer; |
||
property ImageName: string; |
|
The registered name of a image to display on the button |
property ImageSpacing: Integer; |
|
The spacing between the Image and the Text |
|
Specifies the horizontal coordinate of the left edge of a component relative to its parent |
|
property ModalResult: TfpgModalResult; |
||
property ParentShowHint: Boolean; |
||
property ShowHint: Boolean; |
||
property ShowImage: Boolean; |
||
property TabOrder: Integer; |
||
property Text: string; |
||
property OnClick: TNotifyEvent; |
||
property OnDragEnter: TfpgDragEnterEvent; |
||
property OnDragLeave: TNotifyEvent; |
||
property OnDragDrop: TfpgDragDropEvent; |
||
property OnDragStartDetected: TNotifyEvent; |
||
property OnEnter: TNotifyEvent; |
||
property OnExit: TNotifyEvent; |
||
property OnKeyPress: TKeyPressEvent; |
||
property OnMouseDown: TMouseButtonEvent; |
||
property OnMouseExit: TNotifyEvent; |
||
property OnMouseEnter: TNotifyEvent; |
||
property OnMouseMove: TMouseMoveEvent; |
||
property OnMouseUp: TMouseButtonEvent; |
||
property OnShowHint: THintEvent; |
||
end; |
|
Concrete button class used in user interfaces to represent a push button |
|
| | ||
|
Base class that represents a push button control |
|
| | ||
|
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 |
Concrete button class used in user interfaces to represent a push button. This class is a descendant of TfpgBaseButton and simply publishes various properties for runtime type information.
|
Base class that represents a push button control |