[Overview][Types][Classes][Procedures and functions][Variables][Index] Reference for unit 'LCLTaskDialog' (#lcl)

TTaskDialogFlag

Declaration

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

  

);

Description

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.

The latest version of this document can be found at lazarus-ccr.sourceforge.net.