[Overview][Types][Classes][Procedures and functions][Variables][Index] |
Source position: lcltaskdialog.pas line 169
type TTaskDialogFlag = ( |
||
tdfEnableHyperLinks, |
|
|
tdfUseHIconMain, |
|
|
tdfUseHIconFooter, |
|
|
tdfAllowDialogCancellation, |
|
|
tdfUseCommandLinks, |
|
|
tdfUseCommandLinksNoIcon, |
|
|
tdfExpandFooterArea, |
|
|
tdfExpandByDefault, |
|
|
tdfVerificationFlagChecked, |
|
|
tdfShowProgressBar, |
|
|
tdfShowMarqueeProgressBar, |
|
|
tdfCallbackTimer, |
|
|
tdfPositionRelativeToWindow, |
|
|
tdfRtlLayout, |
|
|
tdfNoDefaultRadioButton, |
|
|
tdfCanBeMinimized, |
|
|
tdfQuery, |
|
|
tdfQueryMasked, |
|
|
tdfQueryFieldFocused |
|
|
); |
The available configuration flags for the Task Dialog. Most are standard TDF_* flags used for Vista/Seven native API (see http://msdn.microsoft.com/en-us/library/bb787473(v=vs.85).aspx for TASKDIALOG_FLAGS).
tdfQuery and tdfQueryMasked are custom flags, implemented in pure Delphi code to handle input query.
Our emulation code will handle only tdfUseCommandLinks, tdfUseCommandLinksNoIcon, and tdfQuery options.