Sha256: 798751285ca5eef7dcbaf14258523b57c6ce1488f90dbd31f890ff9a737b52c0
Contents?: true
Size: 1.85 KB
Versions: 28
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-gtk3-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 rbgtk3_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
28 entries across 28 versions & 1 rubygems