[Overview][Types][Classes][Procedures and functions][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Draws a panel width a caption
Source position: fpg_panel.pas line 185
type TfpgGroupBox = class(TfpgAbstractPanel) |
public |
constructor Create(); override; |
destructor Destroy; override; |
function GetClientRect; override; |
published |
property AcceptDrops: Boolean; |
property Alignment: TAlignment; [rw] |
property BackgroundColor: TfpgColor; |
property BorderStyle: TPanelBorder; |
property Enabled: Boolean; |
property FontDesc: string; [rw] |
property Hint: TfpgString; |
property Margin: Integer; [rw] |
property ParentShowHint: Boolean; |
property ShowHint: Boolean; |
property Style: TPanelStyle; |
property Text: string; [rw] |
property OnClick: TNotifyEvent; |
property OnDoubleClick: TMouseButtonEvent; |
property OnDragDrop: TfpgDragDropEvent; |
property OnDragEnter: TfpgDragEnterEvent; |
property OnDragLeave: TNotifyEvent; |
property OnDragStartDetected: TNotifyEvent; |
property OnMouseDown: TMouseButtonEvent; |
property OnMouseMove: TMouseMoveEvent; |
property OnMouseScroll: TMouseWheelEvent; |
property OnMouseUp: TMouseButtonEvent; |
property OnPaint: TPaintEvent; |
property OnShowHint: THintEvent; |
end; |
|
Draws a panel width a caption |
|
| | ||
|
Base class for a Panel, Bevel etc |
|
| | ||
|
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 |
Draws a panel width a caption. This is similar in functionality to the TfpgPanel, but the Text label is drawn in the border of the panel, whereas in the TfpgPanel in is drawn within the client area.
This widget is frequently used to hold radiobutton groups.
|
Draws a panel with various borders and has a text label |