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=789304736561eade55928f4a4aeda21c867023aa;hp=7fa7cbb4cddd5fa5dfcb63d28a39bccc26288d3e;hb=77afe78361875f531dc2bf8d73f2e781c8e76176;hpb=55ccd2b959766810cf7db8d1c4462f338ce0afc8 diff --git a/doc/html/ada/terminal_interface-curses-panels__ads.htm b/doc/html/ada/terminal_interface-curses-panels__ads.htm index 7fa7cbb4..78930473 100644 --- a/doc/html/ada/terminal_interface-curses-panels__ads.htm +++ b/doc/html/ada/terminal_interface-curses-panels__ads.htm @@ -3,7 +3,6 @@

File : terminal_interface-curses-panels.ads


-
 ------------------------------------------------------------------------------
 --                                                                          --
 --                           GNAT ncurses Binding                           --
@@ -13,7 +12,7 @@
 --                                 S P E C                                  --
 --                                                                          --
 ------------------------------------------------------------------------------
--- Copyright (c) 1998 Free Software Foundation, Inc.                        --
+-- Copyright (c) 1998-2006,2009 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            --
@@ -41,113 +40,114 @@
 ------------------------------------------------------------------------------
 --  Author:  Juergen Pfeifer, 1996
 --  Version Control:
---  @Revision: 1.17 @
+--  @Revision: 1.20 @
+--  @Date: 2009/12/26 17:38:58 @
 --  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 ("-lpanelw");
+   pragma Linker_Options ("-lncursesw");
 
-   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);
+   --  pragma Inline (New_Panel);
 
    --  #1A NAME="AFU_3"#2|
-   procedure Bottom (Pan : in Panel);
+   procedure Bottom (Pan : Panel);
    --  AKA: bottom_panel()
-   pragma Inline (Bottom);
+   pragma Inline (Bottom);
 
    --  #1A NAME="AFU_4"#2|
-   procedure Top (Pan : in Panel);
+   procedure Top (Pan : Panel);
    --  AKA: top_panel()
-   pragma Inline (Top);
+   pragma Inline (Top);
 
    --  #1A NAME="AFU_5"#2|
-   procedure Show (Pan : in 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 : in 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;
-   pragma Inline (Panel_Window);
+   function Panel_Window (Pan : Panel) return Window renames Get_Window;
+   --  pragma Inline (Panel_Window);
 
    --  #1A NAME="AFU_10"#2|
-   procedure Replace (Pan : in Panel;
-                      Win : in Window);
+   procedure Replace (Pan : Panel;
+                      Win : Window);
    --  AKA: replace_panel()
-   pragma Inline (Replace);
+   pragma Inline (Replace);
 
    --  #1A NAME="AFU_11"#2|
-   procedure Move (Pan    : in Panel;
-                   Line   : in Line_Position;
-                   Column : in 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;