[Overview][Constants][Types][Classes][Procedures and functions][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Implements a pop-up notification component.
Source position: popupnotifier.pas line 73
type TPopupNotifier = class(TComponent) |
||
public |
||
|
Form which displays the pop-up notification. |
|
constructor Create(); override; |
|
Constructor for the component instance. |
destructor Destroy; override; |
|
Frees the component. |
procedure Hide; |
|
Hides the pop-up notification form. |
procedure Show; |
|
Displays the pop-up notification. |
procedure ShowAtPos(); |
|
Displays the pop-up notification form at the specified position. |
published |
||
|
Color for the pop-up notification form. |
|
|
Icon for the pop-up notification form. |
|
property Text: string; [rw] |
|
Text for the pop-up notification form. |
|
Font used for the Text displayed on the form. |
|
property Title: string; [rw] |
|
Title for the pop-up notification form. |
|
Font used for the Title displayed on the form. |
|
property Visible: Boolean; [rw] |
|
Value for the Visible property in the pop-up notification form. |
property OnClose: TCloseEvent; [rw] |
|
OnClose event handler for the pop-up notification form. |
end; |
|
Implements a pop-up notification component. |
|
| | ||
TComponent |
||
? | ||
TObject |
TPopupNotifier is a TComponent descendant which implements a pop-up 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 |