[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
    Types

      BGIMouseShapePtr         = ^BGIMouseShape;

      BGIMouseShape            = Record
                                   Picture   :Pointer;
                                   Mask      :Pointer;
                                   XHot      :Integer;
                                   YHot      :Integer;
                                 End;

    A pointer to  the  picture  data  and  mask  must  be  passed  to the
    BGI mouse driver using this type.


      STDMouseShapePtr         = ^STDMouseShape;

      STDMouseShape            = Record
                                   Picture   :Array[1..32] of Byte;
                                   Mask      :Array[1..32] of Byte;
                                   XHot      :Integer;
                                   YHot      :Integer;
                                 End;

    Setting the mouse pointer  of  the  standard  mouse  driver should be
    set using the above data format.


      HideOrShow      = (Hidden,Visible)

    Status for windows, whether hidden or visible.


      OutLineSave     = Record
                          Size1,
                          Size2 :Word;
                          Data  :Array[1..4] Of Pointer;
                        End

    Used by the drag window method for saving the window outline.


      ButtonListPtr = ^ButtonList

      ButtonList = Record
                     X1,Y1,X2,Y2:Word;
                     Thickness  :Word;
                     Background :Word;
                     Special    :Boolean;
                     Key        :Char;
                     Picture    :Pointer;
                     Name       :String[11];
                     Number     :Word;
                     Next       :ButtonListPtr;
                   End

    The screen  coordinates,  thickness,  background  colour,  equivalent
    keybaord keys, picture, name and  number  of  the current button, and
    a pointer to the next button in the list.

This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson