mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 09:58:06 +02:00
QT5: implement TColorDialog.Options cdNoButtons and cdDontUseNativeDialog
This commit is contained in:
parent
8fd7e96fa5
commit
47d9468d12
@ -917,6 +917,10 @@ begin
|
||||
AOptions := 0; // here we add possible options from ColorDialog.Options, see QColorDialogColorDialogOptions for possible options.
|
||||
if (cdShowAlphaChannel in ColorDialog.Options) then
|
||||
AOptions := AOptions or QColorDialogShowAlphaChannel;
|
||||
if (cdNoButtons in ColorDialog.Options) then
|
||||
AOptions := AOptions or QColorDialogNoButtons;
|
||||
if (cdDontUseNativeDialog in ColorDialog.Options) then
|
||||
AOptions := AOptions or QColorDialogDontUseNativeDialog;
|
||||
QColorDialog_getColor(PQColor(@AQColorRet), PQColor(@AQColor), TQtWSCommonDialog.GetDialogParent(ACommonDialog), @ATitle, AOptions);
|
||||
|
||||
ReturnBool := AQColorRet.ColorSpec <> 0;
|
||||
|
Loading…
Reference in New Issue
Block a user