1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// Copyright (c) 2009 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 "views/screen.h"
#include <gtk/gtk.h>
#include "base/logging.h"
namespace views {
// static
gfx::Point Screen::GetCursorScreenPoint() {
gint x, y;
gdk_display_get_pointer(gdk_display_get_default(), NULL, &x, &y, NULL);
return gfx::Point(x, y);
}
// static
gfx::Rect Screen::GetMonitorWorkAreaNearestWindow(gfx::NativeWindow window) {
// TODO(beng): use |window|.
guchar* raw_data = NULL;
gint data_len = 0;
gboolean success = gdk_property_get(gdk_get_default_root_window(),
gdk_atom_intern("_NET_WORKAREA", FALSE),
gdk_atom_intern("CARDINAL", FALSE),
0, 0xFF, false, NULL, NULL, &data_len,
&raw_data);
DCHECK(success);
glong* data = reinterpret_cast<glong*>(raw_data);
return gfx::Rect(data[0], data[1], data[0] + data[2], data[1] + data[3]);
}
} // namespace
|