add method topLevelWindowIsModal. bug 126786 r=hyatt,rginda a=asa

This commit is contained in:
danm%netscape.com 2002-02-28 23:24:31 +00:00
Родитель 7e3b432342
Коммит 988f6b1c3a
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -168,6 +168,16 @@ interface nsIAppShellService : nsISupports
*/
void unregisterTopLevelWindow(in nsIXULWindow aWindow);
/**
* The appshell service needs to be informed of modal XUL windows currently
* open. Call this method as a window becomes modal or as it becomes
* nonmodal.
* @param aWindow no surprises here
* @param aModal true if aWindow is becoming modal
* false if aWindow is becoming nonmodal (or being closed)
*/
void topLevelWindowIsModal(in nsIXULWindow aWindow, in boolean aModal);
/**
* Remove the splash screen (if visible). This need be called
* only once per application session.