Adding get status method to nsIBrowserWindow

This commit is contained in:
joki%netscape.com 1998-07-31 18:22:27 +00:00
Родитель 44c03fce8e
Коммит 376cd9f783
3 изменённых файлов: 20 добавлений и 0 удалений

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

@ -74,6 +74,10 @@ public:
NS_IMETHOD GetTitle(nsString& aResult) = 0;
NS_IMETHOD SetStatus(const nsString& aStatus) = 0;
NS_IMETHOD GetStatus(nsString& aResult) = 0;
NS_IMETHOD GetWebShell(nsIWebShell*& aResult) = 0;
// XXX minimize, maximize

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

@ -750,6 +750,20 @@ nsBrowserWindow::GetTitle(nsString& aResult)
return NS_OK;
}
NS_IMETHODIMP
nsBrowserWindow::SetStatus(const nsString& aStatus)
{
NS_PRECONDITION(nsnull != mStatus, "null window");
mStatus->SetText(aStatus);
return NS_OK;
}
NS_IMETHODIMP
nsBrowserWindow::GetStatus(nsString& aResult)
{
return NS_OK;
}
NS_IMETHODIMP
nsBrowserWindow::WillLoadURL(nsIWebShell* aShell, const nsString& aURL)
{

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

@ -69,6 +69,8 @@ public:
NS_IMETHOD LoadURL(const nsString& aURL);
NS_IMETHOD SetTitle(const nsString& aTitle);
NS_IMETHOD GetTitle(nsString& aResult);
NS_IMETHOD SetStatus(const nsString& aStatus);
NS_IMETHOD GetStatus(nsString& aResult);
NS_IMETHOD GetWebShell(nsIWebShell*& aResult);
// nsIStreamObserver