Files
palemoon27/embedding/browser/nsCommandHandler.cpp
T
roytam1 2efea470e5 import changes from `dev' branch of rmottola/Arctic-Fox:
- Bug 1130096 - Convert embedding/browser/ to Gecko style. r=mccr8 (59ec06fe2)
- Bug 1179967 - Always rewrite links to absolute in nsWebBrowserPersist instead of side-effecting document. r=jst (93bf54d47)
- Bug 1155765 - Get rid of gratuitous goto from nsWebBrowserPersist::MakeFilenameFromURI(). r=smaug (ecf31fed2)
- Bug 1170334 - Re-escape entities in nsWebBrowserPersist XML stylesheet handling. r=hsivonen (e04b410a0)
- Bug 345852 - Save personal dictionary when a word is added or removed. r=ehsan (d62c40fb7)
- Bug 1133063 - Move SetLength into the if's condition. r=froydnj (bd1d03ad4)
- Bug 1165919 - [Qt] InitLayersAccelerationPrefs () crash due to missing gfxInfo. r=rojkov (e966f5aa1)
- Bug 1090448 - Add initial serialization and deserialization capabilities for nsPrintOptionsGTK. r=karlt. (34c5cca7b)
- Bug 1090439 - PPrinting calls from child to parent via ShowProgress and ShowPrintDialog should not be sync. r=smaug. (6321a2f61)
- Remove some unneeded MOZ_IMPLICITs, no bug (b884ec906)
- MOZ_FINAL -> final (cfffe033d)
- fix misspatch (77a20bcc2)
- Bug 1090448 - Add GTK-specific PrintData fields and serialization / deserialization. r=karlt. (afc2d1166)
- Bug 1109338: Part 3: Use separate proxy and UDPMessage class for PBackground r=dragana (ff1711e1e)
2021-09-07 15:40:15 +08:00

145 lines
3.7 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "nsCommandHandler.h"
#include "nsWebBrowser.h"
#include "nsDocShellTreeOwner.h"
#include "nsMemory.h"
#include "nsPIDOMWindow.h"
nsCommandHandler::nsCommandHandler()
: mWindow(nullptr)
{
}
nsCommandHandler::~nsCommandHandler()
{
}
nsresult
nsCommandHandler::GetCommandHandler(nsICommandHandler** aCommandHandler)
{
NS_ENSURE_ARG_POINTER(aCommandHandler);
*aCommandHandler = nullptr;
if (!mWindow) {
return NS_ERROR_FAILURE;
}
nsCOMPtr<nsPIDOMWindow> window(do_QueryInterface(mWindow));
if (!window) {
return NS_ERROR_FAILURE;
}
// Get the document tree owner
nsCOMPtr<nsIDocShellTreeItem> docShellAsTreeItem =
do_QueryInterface(window->GetDocShell());
nsIDocShellTreeOwner* treeOwner = nullptr;
docShellAsTreeItem->GetTreeOwner(&treeOwner);
// Make sure the tree owner is an an nsDocShellTreeOwner object
// by QI'ing for a hidden interface. If it doesn't have the interface
// then it's not safe to do the casting.
nsCOMPtr<nsICDocShellTreeOwner> realTreeOwner(do_QueryInterface(treeOwner));
if (realTreeOwner) {
nsDocShellTreeOwner* tree = static_cast<nsDocShellTreeOwner*>(treeOwner);
if (tree->mTreeOwner) {
nsresult rv;
rv = tree->mTreeOwner->QueryInterface(NS_GET_IID(nsICommandHandler),
(void**)aCommandHandler);
NS_RELEASE(treeOwner);
return rv;
}
NS_RELEASE(treeOwner);
}
*aCommandHandler = nullptr;
return NS_OK;
}
NS_IMPL_ADDREF(nsCommandHandler)
NS_IMPL_RELEASE(nsCommandHandler)
NS_INTERFACE_MAP_BEGIN(nsCommandHandler)
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsICommandHandler)
NS_INTERFACE_MAP_ENTRY(nsICommandHandlerInit)
NS_INTERFACE_MAP_ENTRY(nsICommandHandler)
NS_INTERFACE_MAP_END
///////////////////////////////////////////////////////////////////////////////
// nsICommandHandlerInit implementation
NS_IMETHODIMP
nsCommandHandler::GetWindow(nsIDOMWindow** aWindow)
{
*aWindow = nullptr;
return NS_OK;
}
NS_IMETHODIMP
nsCommandHandler::SetWindow(nsIDOMWindow* aWindow)
{
if (!aWindow) {
return NS_ERROR_FAILURE;
}
mWindow = aWindow;
return NS_OK;
}
///////////////////////////////////////////////////////////////////////////////
// nsICommandHandler implementation
NS_IMETHODIMP
nsCommandHandler::Exec(const char* aCommand, const char* aStatus,
char** aResult)
{
NS_ENSURE_ARG_POINTER(aCommand);
NS_ENSURE_ARG_POINTER(aResult);
nsCOMPtr<nsICommandHandler> commandHandler;
GetCommandHandler(getter_AddRefs(commandHandler));
// Call the client's command handler to deal with this command
if (commandHandler) {
*aResult = nullptr;
return commandHandler->Exec(aCommand, aStatus, aResult);
}
// Return an empty string
const char szEmpty[] = "";
*aResult = (char*)nsMemory::Clone(szEmpty, sizeof(szEmpty));
return NS_OK;
}
NS_IMETHODIMP
nsCommandHandler::Query(const char* aCommand, const char* aStatus,
char** aResult)
{
NS_ENSURE_ARG_POINTER(aCommand);
NS_ENSURE_ARG_POINTER(aResult);
nsCOMPtr<nsICommandHandler> commandHandler;
GetCommandHandler(getter_AddRefs(commandHandler));
// Call the client's command handler to deal with this command
if (commandHandler) {
*aResult = nullptr;
return commandHandler->Query(aCommand, aStatus, aResult);
}
// Return an empty string
const char szEmpty[] = "";
*aResult = (char*)nsMemory::Clone(szEmpty, sizeof(szEmpty));
return NS_OK;
}