TaskDialog: add some comments about the meaning of parameters in the callback function for the Win32 WS code.

This commit is contained in:
Bart 2023-08-01 12:58:41 +02:00
parent 70a178c88e
commit 188b9b863d

View File

@ -1691,10 +1691,21 @@ begin
end;
TDN_HYPERLINK_CLICKED:
begin
{
wParam: Must be zero.
lParam: Pointer to a wide-character string containing the URL of the hyperlink.
Return value: The return value is ignored.
}
//AUrl := Utf16ToUtf8(PWideChar(lParam)); <== can this be done safely and passed to OnUrlClicked if AUrls is a local variable here??
if IsConsole then writeln('ToDo: implement OnHyperlinkClicked');
end;
TDN_NAVIGATED:
begin
{
wParam: Must be zero.
lParam: Must be zero.
Return value: The return value is ignored.
}
if IsConsole then writeln('ToDo: implement TDN_NAVIGATED??');
end;
TDN_TIMER:
@ -1725,6 +1736,15 @@ begin
if Assigned(Dlg.OnExpand) then
Dlg.OnExpand(Dlg);
end;
TDN_RADIO_BUTTON_CLICKED:
begin
{
wParam: An int that specifies the ID corresponding to the radio button that was clicked.
lParam: Must be zero.
Return value: The return value is ignored.
}
if IsConsole then writeln('ToDo: implement OnRadioButtonClicked');
end;
end;
end;