; ; transWin.sh ; ; Transient window handling ; ; © 1994-1998 Straylight ; ;----- Licensing note ------------------------------------------------------- ; ; This file is part of Straylight's Sapphire library. ; ; Sapphire 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; either version 2, or (at your option) ; any later version. ; ; Sapphire is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with Sapphire. If not, write to the Free Software Foundation, ; 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ;----- Overview ------------------------------------------------------------- ; ; Functions provided: ; ; transWin_subWaiting ; transWin_openSub ; transWin_register ; transWin_close ; transWin_init [ :LNOT::DEF:transWin__dfn GBLL transWin__dfn ; --- transWin_subWaiting --- ; ; On entry: -- ; ; On exit: CS if a submenu is waiting to be opened, CC otherwise ; ; Use: Informs the caller whether the menu system is waiting for ; a submenu to be attached. IMPORT transWin_subWaiting ; --- transWin_openSub --- ; ; On entry: R0 == window handle to open ; ; On exit: -- ; ; Use: Opens the given window as a submenu. IMPORT transWin_openSub ; --- transWin_register --- ; ; On entry: R0 == window handle to register ; ; On exit: -- ; ; Use: Registers a window as being the current transient window. IMPORT transWin_register ; --- transWin_close --- ; ; On entry: R0 == window handle to close ; ; On exit: -- ; ; Use: Closes the current transient window. IMPORT transWin_close ; --- transWin_init --- ; ; On entry: -- ; ; On exit: -- ; ; Use: Initialises the transWin system. IMPORT transWin_init ] ;----- That's all, folks ---------------------------------------------------- END