X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fada%2Fterminal_interface-curses-panels__ads.htm;h=7879fb0c9e8d69d3d83e511e47180b5ac89c7b66;hp=66d079151921bf92477d9d245426e8dba2dfddcf;hb=a90dd7b66fa711acd24d8181ea20e4f57d4b36cd;hpb=cb4427a16794d98049b4d790b810d62217501f9f diff --git a/doc/html/ada/terminal_interface-curses-panels__ads.htm b/doc/html/ada/terminal_interface-curses-panels__ads.htm index 66d07915..7879fb0c 100644 --- a/doc/html/ada/terminal_interface-curses-panels__ads.htm +++ b/doc/html/ada/terminal_interface-curses-panels__ads.htm @@ -24,7 +24,8 @@ -- S P E C -- -- -- ------------------------------------------------------------------------------ --- Copyright (c) 1998-2009,2014 Free Software Foundation, Inc. -- +-- Copyright 2020 Thomas E. Dickey -- +-- Copyright 1998-2009,2014 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- @@ -52,113 +53,113 @@ ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control: --- @Revision: 1.22 @ --- @Date: 2014/05/24 21:31:57 @ +-- @Revision: 1.23 @ +-- @Date: 2020/02/02 23:34:34 @ -- Binding Version 01.00 ------------------------------------------------------------------------------ with System; -package Terminal_Interface.Curses.Panels is - pragma Preelaborate (Terminal_Interface.Curses.Panels); +package Terminal_Interface.Curses.Panels is + pragma Preelaborate (Terminal_Interface.Curses.Panels); pragma Linker_Options ("-lpanel" & Curses_Constants.DFT_ARG_SUFFIX); - type Panel is private; + type Panel is private; --------------------------- -- Interface constants -- --------------------------- - Null_Panel : constant Panel; + Null_Panel : constant Panel; ------------------- -- Exceptions -- ------------------- - Panel_Exception : exception; + Panel_Exception : exception; -- |===================================================================== -- | Man page panel.3x -- |===================================================================== -- | - function Create (Win : Window) return Panel; + function Create (Win : Window) return Panel; -- AKA: new_panel() pragma Inline (Create); -- | - function New_Panel (Win : Window) return Panel renames Create; + function New_Panel (Win : Window) return Panel renames Create; -- AKA: new_panel() -- pragma Inline (New_Panel); -- | - procedure Bottom (Pan : Panel); + procedure Bottom (Pan : Panel); -- AKA: bottom_panel() - pragma Inline (Bottom); + pragma Inline (Bottom); -- | - procedure Top (Pan : Panel); + procedure Top (Pan : Panel); -- AKA: top_panel() - pragma Inline (Top); + pragma Inline (Top); -- | - procedure Show (Pan : Panel); + procedure Show (Pan : Panel); -- AKA: show_panel() - pragma Inline (Show); + pragma Inline (Show); -- | - procedure Update_Panels; + procedure Update_Panels; -- AKA: update_panels() pragma Import (C, Update_Panels, "update_panels"); -- | - procedure Hide (Pan : Panel); + procedure Hide (Pan : Panel); -- AKA: hide_panel() - pragma Inline (Hide); + pragma Inline (Hide); -- | - function Get_Window (Pan : Panel) return Window; + function Get_Window (Pan : Panel) return Window; -- AKA: panel_window() - pragma Inline (Get_Window); + pragma Inline (Get_Window); -- | - function Panel_Window (Pan : Panel) return Window renames Get_Window; + function Panel_Window (Pan : Panel) return Window renames Get_Window; -- pragma Inline (Panel_Window); -- | - procedure Replace (Pan : Panel; - Win : Window); + procedure Replace (Pan : Panel; + Win : Window); -- AKA: replace_panel() - pragma Inline (Replace); + pragma Inline (Replace); -- | - procedure Move (Pan : Panel; - Line : Line_Position; - Column : Column_Position); + procedure Move (Pan : Panel; + Line : Line_Position; + Column : Column_Position); -- AKA: move_panel() - pragma Inline (Move); + pragma Inline (Move); -- | - function Is_Hidden (Pan : Panel) return Boolean; + function Is_Hidden (Pan : Panel) return Boolean; -- AKA: panel_hidden() - pragma Inline (Is_Hidden); + pragma Inline (Is_Hidden); -- | - function Above (Pan : Panel) return Panel; + function Above (Pan : Panel) return Panel; -- AKA: panel_above() pragma Import (C, Above, "panel_above"); -- | - function Below (Pan : Panel) return Panel; + function Below (Pan : Panel) return Panel; -- AKA: panel_below() pragma Import (C, Below, "panel_below"); -- | - procedure Delete (Pan : in out Panel); + procedure Delete (Pan : in out Panel); -- AKA: del_panel() pragma Inline (Delete); private - type Panel is new System.Storage_Elements.Integer_Address; - Null_Panel : constant Panel := 0; + type Panel is new System.Storage_Elements.Integer_Address; + Null_Panel : constant Panel := 0; -end Terminal_Interface.Curses.Panels; +end Terminal_Interface.Curses.Panels;