TODO for scan

This commit is contained in:
Spencer Janssen 2007-06-11 21:42:17 +00:00
parent 4b9bacb1f9
commit d21e61a315

View File

@ -112,6 +112,8 @@ scan :: Display -> Window -> IO [Window]
scan dpy rootw = do
(_, _, ws) <- queryTree dpy rootw
filterM ok ws
-- TODO: scan for windows that are either 'IsViewable' or where WM_STATE ==
-- Iconic
where ok w = do wa <- getWindowAttributes dpy w
return $ not (wa_override_redirect wa)
&& wa_map_state wa == waIsViewable