Artifact
a4c55b09c1070406a4f93bd23de50f950fa1c68e:
------------------------------------------------------------------------------
-- P A R A S A I L --
-- --
-- Copyright (C) 2012-2013, AdaCore --
-- --
-- This is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. This software is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public --
-- License for more details. You should have received a copy of the GNU --
-- General Public License distributed with this software; see file --
-- COPYING3. If not, go to http://www.gnu.org/licenses for a complete copy --
-- of the license. --
-- --
-- The ParaSail language and implementation were originally developed by --
-- S. Tucker Taft. --
------------------------------------------------------------------------------
with GTK_C_Interface;
package PSC.Interpreter.GTK is
-- Package providing support for builtin ParaSail GTK-related operations
pragma Elaborate_Body;
function Poly_To_GtkWidget (Poly : Object_Virtual_Address)
return GTK_C_Interface.GtkWidget;
-- Convert a word representing a ParaSail polymorphic Widget+
-- to a GtkWidget
end PSC.Interpreter.GTK;