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=843c3ce158ca252381092aa6f8dd462582af5cfb;hp=75864f7077ae771bc22bd260d7a8d6f349bcec99;hb=02c4e383be9337e73a0e75844dfd1047745adb28;hpb=761e4f0825b330e970558e82a4bd638383914429 diff --git a/doc/html/ada/terminal_interface-curses-panels__ads.htm b/doc/html/ada/terminal_interface-curses-panels__ads.htm index 75864f70..843c3ce1 100644 --- a/doc/html/ada/terminal_interface-curses-panels__ads.htm +++ b/doc/html/ada/terminal_interface-curses-panels__ads.htm @@ -24,7 +24,7 @@ -- S P E C -- -- -- ------------------------------------------------------------------------------ --- Copyright (c) 1998-2006,2009 Free Software Foundation, Inc. -- +-- Copyright (c) 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,114 +52,113 @@ ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control: --- @Revision: 1.20 @ --- @Date: 2009/12/26 17:38:58 @ +-- @Revision: 1.22 @ +-- @Date: 2014/05/24 21:31:57 @ -- Binding Version 01.00 ------------------------------------------------------------------------------ with System; -package Terminal_Interface.Curses.Panels is - pragma Preelaborate (Terminal_Interface.Curses.Panels); - pragma Linker_Options ("-lpanel"); - pragma Linker_Options ("-lncurses"); +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 -- |===================================================================== -- #1A NAME="AFU_1"#2| - function Create (Win : Window) return Panel; + function Create (Win : Window) return Panel; -- AKA: new_panel() pragma Inline (Create); -- #1A NAME="AFU_2"#2| - 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); -- #1A NAME="AFU_3"#2| - procedure Bottom (Pan : Panel); + procedure Bottom (Pan : Panel); -- AKA: bottom_panel() - pragma Inline (Bottom); + pragma Inline (Bottom); -- #1A NAME="AFU_4"#2| - procedure Top (Pan : Panel); + procedure Top (Pan : Panel); -- AKA: top_panel() - pragma Inline (Top); + pragma Inline (Top); -- #1A NAME="AFU_5"#2| - procedure Show (Pan : Panel); + procedure Show (Pan : Panel); -- AKA: show_panel() - pragma Inline (Show); + pragma Inline (Show); -- #1A NAME="AFU_6"#2| - procedure Update_Panels; + procedure Update_Panels; -- AKA: update_panels() pragma Import (C, Update_Panels, "update_panels"); -- #1A NAME="AFU_7"#2| - procedure Hide (Pan : Panel); + procedure Hide (Pan : Panel); -- AKA: hide_panel() - pragma Inline (Hide); + pragma Inline (Hide); -- #1A NAME="AFU_8"#2| - 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); -- #1A NAME="AFU_9"#2| - function Panel_Window (Pan : Panel) return Window renames Get_Window; + function Panel_Window (Pan : Panel) return Window renames Get_Window; -- pragma Inline (Panel_Window); -- #1A NAME="AFU_10"#2| - procedure Replace (Pan : Panel; - Win : Window); + procedure Replace (Pan : Panel; + Win : Window); -- AKA: replace_panel() - pragma Inline (Replace); + pragma Inline (Replace); -- #1A NAME="AFU_11"#2| - 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); -- #1A NAME="AFU_12"#2| - 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); -- #1A NAME="AFU_13"#2| - function Above (Pan : Panel) return Panel; + function Above (Pan : Panel) return Panel; -- AKA: panel_above() pragma Import (C, Above, "panel_above"); -- #1A NAME="AFU_14"#2| - function Below (Pan : Panel) return Panel; + function Below (Pan : Panel) return Panel; -- AKA: panel_below() pragma Import (C, Below, "panel_below"); -- #1A NAME="AFU_15"#2| - 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;