Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Unified Diff: ui/gfx/screen_aurax11.cc

Issue 10279005: Aura on Linux: Make a DesktopScreenX11 to match the windows one. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/aura/root_window_host_linux.cc ('k') | ui/ui.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/screen_aurax11.cc
diff --git a/ui/gfx/screen_aurax11.cc b/ui/gfx/screen_aurax11.cc
deleted file mode 100644
index 0f16bfebc2b18ae8d998ae37577634622f614e09..0000000000000000000000000000000000000000
--- a/ui/gfx/screen_aurax11.cc
+++ /dev/null
@@ -1,91 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ui/gfx/screen.h"
-
-#include <X11/Xlib.h>
-
-#include "base/logging.h"
-#include "ui/base/x/x11_util.h"
-
-#if !defined(USE_ASH)
-
-namespace gfx {
-namespace {
-gfx::Size Screen::GetPrimaryMonitorSize() {
- ::Display* display = ui::GetXDisplay();
- ::Screen* screen = DefaultScreenOfDisplay(display);
- int width = WidthOfScreen(screen);
- int height = HeightOfScreen(screen);
-
- return gfx::Size(width, height);
-}
-} // namespace
-
-// TODO(piman,erg): This file needs to be rewritten by someone who understands
-// the subtlety of X11. That is not erg.
-
-// static
-gfx::Point Screen::GetCursorScreenPoint() {
- Display* display = ui::GetXDisplay();
-
- // Unsure if I can leave these as NULL.
- ::Window root, child;
- int root_x, root_y, win_x, win_y;
- unsigned int mask;
- XQueryPointer(display,
- DefaultRootWindow(display),
- &root,
- &child,
- &root_x,
- &root_y,
- &win_x,
- &win_y,
- &mask);
-
- return gfx::Point(root_x, root_y);
-}
-
-// static
-gfx::NativeWindow Screen::GetWindowAtCursorScreenPoint() {
- // TODO(erg): I have no clue. May need collaboration with
- // RootWindowHostLinux?
- return NULL;
-}
-
-// static
-int Screen::GetNumMonitors() {
- // TODO(erg): Figure this out with oshima or piman because I have no clue
- // about the Xinerama implications here.
- return 1;
-}
-
-// static
-Monitor Screen::GetMonitorNearestWindow(NativeWindow window) {
- // TODO(erg): We need to eventually support multiple monitors.
- return GetPrimaryMonitor();
-}
-
-// static
-Monitor Screen::GetMonitorNearestPoint(const Point& point) {
- // TODO(erg): We need to eventually support multiple monitors.
- return GetPrimaryMonitor();
-}
-
-// static
-Monitor Screen::GetPrimaryMonitor() {
- // TODO(erg): There was a comment about how we shouldn't use _NET_WORKAREA
- // for work area by danakj@.
- // TODO(jamiewalch): Restrict work area to the actual work area of
- // the monitor.
- return Monitor(gfx::Rect(GetPrimaryMonitorSize()));
-}
-
-// static
-Monitor Screen::GetMonitorMatching(const gfx::Rect& match_rect) {
- return GetPrimaryMonitor();
-}
-
-} // namespace gfx
-#endif // !defined(USE_ASH)
« no previous file with comments | « ui/aura/root_window_host_linux.cc ('k') | ui/ui.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698