Sha256: 8d8cfd359d21259aba16815b45dedae9fae976d905964db0971ef4b550de11dd
Contents?: true
Size: 1.66 KB
Versions: 40
Compression:
Stored size: 1.66 KB
Contents
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /* * Copyright (C) 2011 Ruby-GNOME2 Project Team * Copyright (C) 2002-2006 Ruby-GNOME2 Project Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301 USA */ #include "global.h" #if GTK_CHECK_VERSION(2,2,0) #define RG_TARGET_NAMESPACE cDisplayManager #define _SELF(obj) GDK_DISPLAY_MANAGER(RVAL2GOBJ(obj)) static VALUE rg_s_get(G_GNUC_UNUSED VALUE self) { return GOBJ2RVAL(gdk_display_manager_get()); } static VALUE rg_displays(VALUE self) { return GSLIST2ARYF(gdk_display_manager_list_displays(_SELF(self))); } /* Move to Gdk::Display. static VALUE gdkdisplaymanager_get_core_pointer(VALUE self) { return GOBJ2RVAL(gdk_display_get_core_pointer(_SELF(self))); } */ #endif void Init_gtk_gdk_display_manager(VALUE mGdk) { #if GTK_CHECK_VERSION(2,2,0) VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GDK_TYPE_DISPLAY_MANAGER, "DisplayManager", mGdk); RG_DEF_SMETHOD(get, 0); RG_DEF_METHOD(displays, 0); #endif }
Version data entries
40 entries across 40 versions & 1 rubygems