[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Represents options that can be enabled for TTaskDialog.
Source position: dialogs.pp line 537
type TTaskDialogFlag = ( |
||
tfEnableHyperlinks, |
|
Allows HTML-like hyperlinks in the dialog (in Text, Footer, and ExpandedText) using the '<a href="target">Target</a>' notation. |
tfUseHiconMain, |
|
Uses the handle to the image in MainIcon as the primary image for the Task dialog. Disables hyperlinks. |
tfUseHiconFooter, |
|
Uses the handle to the image in FooterIcon as the footer icon in the Task dialog. Disables hyperlinks. |
tfAllowDialogCancellation, |
|
Allow canceling the dialog by Esc key, or Alt+F4 (i.e. OS default hotkey). |
tfUseCommandLinks, |
|
Custom buttons will be shown as big buttons in the middle of the dialog. Use #10 to add info to buttons (shown in hint in emulated dialog). Disables hyperlinks. |
tfUseCommandLinksNoIcon, |
|
Hides glyphs for custom buttons in the "command links" mode. Disables hyperlinks. |
tfExpandFooterArea, |
|
Show ExpandedText in the footer, instead of inline after the main text. |
tfExpandedByDefault, |
|
Displays the dialog with ExpandedText in the expanded state. |
tfVerificationFlagChecked, |
|
Displays the verification check-box verification shows in the checked state. |
tfShowProgressBar, |
|
Shows a progress bar. |
tfShowMarqueeProgressBar, |
|
Shows a progress bar using the marquee style. |
tfCallbackTimer, |
|
Execute the timer callback event every 200 milliseconds. |
tfPositionRelativeToWindow, |
|
Form position will be poOwnerFormCenter, instead of poScreenCenter. |
tfRtlLayout, |
|
Use Right-to-Left layout for texts. |
tfNoDefaultRadioButton, |
|
Does not pre-select any of the radio buttons. |
tfCanBeMinimized |
|
Allow the dialog to be minimized. |
); |
TTaskDialogFlag values are stored in the TTaskDialogFlags type, as used in the TCustomTaskDialog.Flags property.
|
Set type used to store values from the TTaskDialogFlag enumeration. |
|
|
Set of options enabled for the Task dialog. |
lazarus-ccr.sourceforge.net |