DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T V

⟦4099cd072⟧ TextFile

    Length: 858 (0x35a)
    Types: TextFile
    Names: »V«

Derivation

└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
    └─⟦5cb1d1d7f⟧ »DATA« 
        └─⟦3b1ee7bd8⟧ 
            └─⟦this⟧ 

TextFile

with Window_Io;
with Bounded_String;
package Box_Display is

    type Box is private;

    function Make return Box;

    procedure Set_Size (On_Box : in out Box; Height : Natural; Width : Natural);

    procedure Set_Label (On_Box : in out Box; Label : String);

    function Height (A_Box : Box) return Natural;

    function Width (A_Box : Box) return Natural;

    function Label (On_Box : Box) return String;

    procedure Display (The_Box : Box;
                       In_Window : Window_Io.File_Type;
                       At_Line : Window_Io.Line_Number;
                       At_Column : Window_Io.Column_Number);

private
    subtype Var_String is Bounded_String.Variable_String (80);

    type Box is
        record
            Height : Natural;
            Width : Natural;
            Label : Var_String;
        end record;

end Box_Display;