Older Newer
Sun, 01 Dec 2019 07:15:16 . . . . SyneRyder [First function definition]


Changes by last author:

Added:
= getAppTheme =

== Syntax ==

int getAppTheme(void)

== Return ==

Returns true if the hosting application has enabled Windows XP / Vista style theming, false otherwise.

== Description ==

Checks if the hosting application has enabled Windows themes.

== Example ==

<code>

%fml

OnFilterStart: {

if (getAppTheme()) {

printf("Host application is themed.");

}

else printf("Host application does not support themes.");

return false;

}

</code>

== See Also ==

setCtlTheme, setDialogTheme