Adding focus passing method to nsIWebShellContainer

git-svn-id: svn://10.0.0.236/trunk@14181 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
joki%netscape.com
1998-11-06 01:30:07 +00:00
parent a29da299d7
commit b7f7229b49
11 changed files with 48 additions and 0 deletions

View File

@@ -194,6 +194,7 @@ public:
NS_IMETHOD EndLoadURL(nsIWebShell* aShell, const PRUnichar* aURL, PRInt32 aStatus);
NS_IMETHOD NewWebShell(nsIWebShell *&aNewWebShell);
NS_IMETHOD FindWebShellWithName(const PRUnichar* aName, nsIWebShell*& aResult);
NS_IMETHOD FocusAvailable(nsIWebShell* aFocusedWebShell);
// nsILinkHandler
NS_IMETHOD OnLinkClick(nsIFrame* aFrame,
@@ -1410,6 +1411,12 @@ nsWebShell::FindWebShellWithName(const PRUnichar* aName, nsIWebShell*& aResult)
return NS_OK;
}
NS_IMETHODIMP
nsWebShell::FocusAvailable(nsIWebShell* aFocusedWebShell)
{
//XXX Move focus to next child, or if on last child, call focus available on next container
return NS_OK;
}
//----------------------------------------------------------------------
// WebShell link handling