Sha256: 932895fe5f33eb02690c0447af3be7f8f43f906b09b605dbb80a84d13463d759
Contents?: true
Size: 1.85 KB
Versions: 25
Compression:
Stored size: 1.85 KB
Contents
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /* * Copyright (C) 2017-2022 Ruby-GNOME 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 "rb-gtk4-private.h" typedef struct { int dummy; } ToplevelWindowMarkerData; static void toplevel_window_marker_mark(G_GNUC_UNUSED void *_) { GList *list = gtk_window_list_toplevels(); GList *node; for (node = list; node; node = g_list_next(node)) { rbgobj_gc_mark_instance(node->data); } g_list_free(list); } static void toplevel_window_marker_free(void *data) { xfree(data); } static const rb_data_type_t toplevel_window_marker_type = { "Gtk::ToplevelsMarker", { toplevel_window_marker_mark, toplevel_window_marker_free, }, NULL, NULL, RUBY_TYPED_FREE_IMMEDIATELY, }; void rb_gtk4_window_init(void) { ToplevelWindowMarkerData *data; VALUE toplevel_window_marker = TypedData_Make_Struct(rb_cObject, ToplevelWindowMarkerData, &toplevel_window_marker_type, data); rb_gc_register_mark_object(toplevel_window_marker); }
Version data entries
25 entries across 25 versions & 1 rubygems