diff options
author | Matthias Clasen <mclasen@redhat.com> | 2017-11-17 13:54:04 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2017-11-17 13:54:04 -0500 |
commit | 6263286c4aee18d801c6d7a9c6cb86fb90c793d3 (patch) | |
tree | c492db230591a4d248c960ad9cf61aa38906c2b2 /gdk/gdkscreen.c | |
parent | 0b8c88f7d6a0d711af230912809f99b55f4426a4 (diff) | |
download | gtk+-6263286c4aee18d801c6d7a9c6cb86fb90c793d3.tar.gz |
Drop gdkscreen.h
Nothing uses GdkScreen anymore, so we can get rid of it.
Diffstat (limited to 'gdk/gdkscreen.c')
-rw-r--r-- | gdk/gdkscreen.c | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/gdk/gdkscreen.c b/gdk/gdkscreen.c deleted file mode 100644 index 4911d9bf71..0000000000 --- a/gdk/gdkscreen.c +++ /dev/null @@ -1,57 +0,0 @@ -/* - * gdkscreen.c - * - * Copyright 2001 Sun Microsystems Inc. - * - * Erwann Chenede <erwann.chenede@sun.com> - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library. If not, see <http://www.gnu.org/licenses/>. - */ - -#include "config.h" - -#include "gdkinternals.h" -#include "gdkscreenprivate.h" -#include "gdkrectangle.h" -#include "gdkwindow.h" -#include "gdkintl.h" - - -/** - * SECTION:gdkscreen - * @Short_description: Object representing a physical screen - * @Title: GdkScreen - * - * #GdkScreen objects are the GDK representation of the screen on - * which windows can be displayed and on which the pointer moves. - * X originally identified screens with physical screens, but - * nowadays it is more common to have a single #GdkScreen which - * combines several physical monitors (see gdk_screen_get_n_monitors()). - * - * GdkScreen is used throughout GDK and GTK+ to specify which screen - * the top level windows are to be displayed on. - */ - - -G_DEFINE_TYPE (GdkScreen, gdk_screen, G_TYPE_OBJECT) - -static void -gdk_screen_class_init (GdkScreenClass *klass) -{ -} - -static void -gdk_screen_init (GdkScreen *screen) -{ -} |