Active look for all windows

BlitzMax Forums/MaxGUI Module/Active look for all windows

Jur(Posted 2013) [#1]
Default behavior for windows gadgets is that their title bar get greyed out when they not active. For applications with more open windows at the same time this may not be a desired behavior. It is common that applications with various "tools windows" keep their look active all the time.

We can get such behavior in MaxGUI (windows only) with the following modification:

file:win32maxguiex, type:TWindowsWindow, method:WndProc
add the next Cases in the Select statement:


You may want to use a global flag or something and put this into an If statement to not overide the default behavior.