Sha256: 2b5c5021265ad175fce9ffecb2383c62862d3195581ed05b58aca37a49565201
Contents?: true
Size: 1.65 KB
Versions: 26
Compression:
Stored size: 1.65 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 "rbgdk3private.h" #define RG_TARGET_NAMESPACE cDisplayManager #define _SELF(obj) RVAL2GDKDISPLAYMANAGER(obj) static VALUE rg_s_get(G_GNUC_UNUSED VALUE self) { return GOBJ2RVAL(gdk_display_manager_get()); } static VALUE rg_displays(VALUE self) { return GOBJGSLIST2RVAL_FREE(gdk_display_manager_list_displays(_SELF(self)), g_slist_free, NULL); } /* Move to Gdk::Display. static VALUE gdkdisplaymanager_get_core_pointer(VALUE self) { return GOBJ2RVAL(gdk_display_get_core_pointer(_SELF(self))); } */ void Init_gdk_display_manager(VALUE mGdk) { VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GDK_TYPE_DISPLAY_MANAGER, "DisplayManager", mGdk); RG_DEF_SMETHOD(get, 0); RG_DEF_METHOD(displays, 0); }
Version data entries
26 entries across 26 versions & 1 rubygems