mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
ea773f7d3c
Bug 1757395 basically removed the reason for PPrinting to exist. What remained essentially just added an unnecessary layer of complexity/indirection to the creation of PRmotePrintJob actors. Differential Revision: https://phabricator.services.mozilla.com/D143330
75 lines
2.3 KiB
Plaintext
75 lines
2.3 KiB
Plaintext
/* -*- Mode: C++; tab-width: 2; 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 "nsPrintSettingsServiceX.h"
|
|
|
|
#include "mozilla/embedding/PPrintingTypes.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsQueryObject.h"
|
|
#include "nsPrintSettingsX.h"
|
|
#include "nsCocoaUtils.h"
|
|
|
|
using namespace mozilla::embedding;
|
|
|
|
NS_IMETHODIMP
|
|
nsPrintSettingsServiceX::SerializeToPrintData(nsIPrintSettings* aSettings, PrintData* data) {
|
|
nsresult rv = nsPrintSettingsService::SerializeToPrintData(aSettings, data);
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
return rv;
|
|
}
|
|
|
|
RefPtr<nsPrintSettingsX> settingsX(do_QueryObject(aSettings));
|
|
if (NS_WARN_IF(!settingsX)) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
settingsX->GetDisposition(data->disposition());
|
|
settingsX->GetDestination(&data->destination());
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsPrintSettingsServiceX::DeserializeToPrintSettings(const PrintData& data,
|
|
nsIPrintSettings* settings) {
|
|
nsresult rv = nsPrintSettingsService::DeserializeToPrintSettings(data, settings);
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
return rv;
|
|
}
|
|
|
|
RefPtr<nsPrintSettingsX> settingsX(do_QueryObject(settings));
|
|
if (NS_WARN_IF(!settingsX)) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
settingsX->SetDisposition(data.disposition());
|
|
settingsX->SetDestination(data.destination());
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult nsPrintSettingsServiceX::_CreatePrintSettings(nsIPrintSettings** _retval) {
|
|
nsresult rv;
|
|
*_retval = nullptr;
|
|
|
|
nsPrintSettingsX* printSettings = new nsPrintSettingsX; // does not initially ref count
|
|
NS_ENSURE_TRUE(printSettings, NS_ERROR_OUT_OF_MEMORY);
|
|
NS_ADDREF(*_retval = printSettings);
|
|
|
|
rv = printSettings->Init();
|
|
if (NS_FAILED(rv)) {
|
|
NS_RELEASE(*_retval);
|
|
return rv;
|
|
}
|
|
|
|
auto globalPrintSettings = nsIPrintSettings::kGlobalSettings;
|
|
|
|
// XXX Why is Mac special? Why are we copying global print settings here?
|
|
// nsPrintSettingsService::InitPrintSettingsFromPrefs already gets the few
|
|
// global defaults that we want, doesn't it?
|
|
InitPrintSettingsFromPrefs(*_retval, false, globalPrintSettings);
|
|
return rv;
|
|
}
|