зеркало из https://github.com/mozilla/pjs.git
Adding get status method to nsIBrowserWindow
This commit is contained in:
Родитель
44c03fce8e
Коммит
376cd9f783
|
@ -74,6 +74,10 @@ public:
|
||||||
|
|
||||||
NS_IMETHOD GetTitle(nsString& aResult) = 0;
|
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;
|
NS_IMETHOD GetWebShell(nsIWebShell*& aResult) = 0;
|
||||||
|
|
||||||
// XXX minimize, maximize
|
// XXX minimize, maximize
|
||||||
|
|
|
@ -750,6 +750,20 @@ nsBrowserWindow::GetTitle(nsString& aResult)
|
||||||
return NS_OK;
|
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
|
NS_IMETHODIMP
|
||||||
nsBrowserWindow::WillLoadURL(nsIWebShell* aShell, const nsString& aURL)
|
nsBrowserWindow::WillLoadURL(nsIWebShell* aShell, const nsString& aURL)
|
||||||
{
|
{
|
||||||
|
|
|
@ -69,6 +69,8 @@ public:
|
||||||
NS_IMETHOD LoadURL(const nsString& aURL);
|
NS_IMETHOD LoadURL(const nsString& aURL);
|
||||||
NS_IMETHOD SetTitle(const nsString& aTitle);
|
NS_IMETHOD SetTitle(const nsString& aTitle);
|
||||||
NS_IMETHOD GetTitle(nsString& aResult);
|
NS_IMETHOD GetTitle(nsString& aResult);
|
||||||
|
NS_IMETHOD SetStatus(const nsString& aStatus);
|
||||||
|
NS_IMETHOD GetStatus(nsString& aResult);
|
||||||
NS_IMETHOD GetWebShell(nsIWebShell*& aResult);
|
NS_IMETHOD GetWebShell(nsIWebShell*& aResult);
|
||||||
|
|
||||||
// nsIStreamObserver
|
// nsIStreamObserver
|
||||||
|
|
Загрузка…
Ссылка в новой задаче