WIN_IO

A simple set of packages for graphical input and output


Universidad de Cantabria, SPAIN

Author: Michael Gonzalez  mgh@unican.es

Win_IO is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation.
 

1. Output_Window Example


File : test_output_window.adb


with Ada.Text_IO; use Ada.Text_IO;
with Output_Windows;
use Output_Windows;

procedure Test_Output_Window is
   Display : Output_Window_Type:=Output_Window("Test for Output Window");

begin
   Create_Box(Display,"Items",8);
   Create_Box(Display,"Degrees",220.0);
   Create_Box(Display,"Name","Frank White");
   Wait(Display);
   Put_Line("Test Completed");
end Test_Output_Window;