[Overview][Constants][Types][Classes][Procedures and functions][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Implements a popup notification component
Source position: popupnotifier.pas line 71
type TPopupNotifier = class(TComponent) |
||
public |
||
|
Form which displays the popup notification |
|
constructor Create(); override; |
|
Constructor for the component instance |
destructor Destroy; override; |
|
Frees the component |
procedure Hide; |
|
Hides the popup notification form |
procedure Show; |
|
Displays the popup notification |
procedure ShowAtPos(); |
|
Displays the popup notification form at the specified position |
published |
||
|
Color for the popup notification form |
|
|
Icon for the popup notification form |
|
property Text: string; [rw] |
|
Text for the popup notification form |
property Title: string; [rw] |
|
Title for the popup notification form |
property Visible: Boolean; [rw] |
|
Value for the Visible property in the popup notification form |
property OnClose: TCloseEvent; [rw] |
|
OnClose event handler for the popup notification form |
end; |
|
Implements a popup notification component |
|
| | ||
TComponent |
||
? | ||
TObject |
TPopupNotifier is a TComponent descendant which implements a popup notification component. TPopupNotifier includes a TNotifierForm member which displays the contents of the notification. TPopupNotifier provides methods and properties that allow access to the form and its controls. TPopupNotifier also provides methods which display and hide the form.
lazarus-ccr.sourceforge.net |