1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/base/idle/screensaver_window_finder_x11.h"
7 #include "base/basictypes.h"
8 #include "ui/base/x/x11_util.h"
9 #include "ui/gfx/x/x11_error_tracker.h"
13 ScreensaverWindowFinder::ScreensaverWindowFinder()
17 bool ScreensaverWindowFinder::ScreensaverWindowExists() {
18 gfx::X11ErrorTracker err_tracker
;
19 ScreensaverWindowFinder finder
;
20 ui::EnumerateTopLevelWindows(&finder
);
21 return finder
.exists_
&& !err_tracker
.FoundNewError();
24 bool ScreensaverWindowFinder::ShouldStopIterating(XID window
) {
25 if (!ui::IsWindowVisible(window
) || !IsScreensaverWindow(window
))
31 bool ScreensaverWindowFinder::IsScreensaverWindow(XID window
) const {
32 // It should occupy the full screen.
33 if (!ui::IsX11WindowFullScreen(window
))
36 // For xscreensaver, the window should have _SCREENSAVER_VERSION property.
37 if (ui::PropertyExists(window
, "_SCREENSAVER_VERSION"))
40 // For all others, like gnome-screensaver, the window's WM_CLASS property
41 // should contain "screensaver".
43 if (!ui::GetStringProperty(window
, "WM_CLASS", &value
))
46 return value
.find("screensaver") != std::string::npos
;