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 - download
Index: ┃ T V

⟦3ad98f1aa⟧ TextFile

    Length: 1078 (0x436)
    Types: TextFile
    Names: »V«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Arguments;
with Easy_X;
with Message;
with Object;

package Pen_Class is

    Instance_Table_Full : exception;
    Incorrect_Method : exception;

    Predefined_Pen : constant String := "Stylo";

    type Pen_Ref is private;


    -- initialisation de la table d'instance des stylos
    procedure Init_Instance_Table;

    -- creation d'un objet stylo
    function Create return Object.Reference;

    -- envoi d'un message a un objet stylo
    function Send (To_Object : Object.Reference;
                   The_Message : Message.Selector;
                   With_Arguments : Arguments.List := Arguments.Void_Arguments)
                  return Object.Reference;

    -- affichage du contenu de la table d'instance des stylos
    procedure Image_Table;


private

    use Easy_X;

    type Enum_Indicator is (Used, Unused);

    type Pen_Ref is
        record
            Indicator : Enum_Indicator := Unused;
            Font : Easy_X.Fonts := Small_Font;
            X : Easy_X.Coordinate := 0;
            Y : Easy_X.Coordinate := 0;
        end record;

end Pen_Class;