83 lines
2.7 KiB
C++
83 lines
2.7 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
#include "nsDeviceContextSpecFactoryM.h"
|
|
#include "nsDeviceContextSpecMac.h"
|
|
#include "nsGfxCIID.h"
|
|
#include "plstr.h"
|
|
|
|
/** -------------------------------------------------------
|
|
* Constructor
|
|
* @update dc 12/02/98
|
|
*/
|
|
nsDeviceContextSpecFactoryMac :: nsDeviceContextSpecFactoryMac()
|
|
{
|
|
NS_INIT_REFCNT();
|
|
}
|
|
|
|
/** -------------------------------------------------------
|
|
* Destructor
|
|
* @update dc 12/02/98
|
|
*/
|
|
nsDeviceContextSpecFactoryMac :: ~nsDeviceContextSpecFactoryMac()
|
|
{
|
|
}
|
|
|
|
static NS_DEFINE_IID(kDeviceContextSpecFactoryIID, NS_IDEVICE_CONTEXT_SPEC_FACTORY_IID);
|
|
static NS_DEFINE_IID(kIDeviceContextSpecIID, NS_IDEVICE_CONTEXT_SPEC_IID);
|
|
static NS_DEFINE_IID(kDeviceContextSpecCID, NS_DEVICE_CONTEXT_SPEC_CID);
|
|
|
|
NS_IMPL_QUERY_INTERFACE(nsDeviceContextSpecFactoryMac, kDeviceContextSpecFactoryIID)
|
|
NS_IMPL_ADDREF(nsDeviceContextSpecFactoryMac)
|
|
NS_IMPL_RELEASE(nsDeviceContextSpecFactoryMac)
|
|
|
|
/** -------------------------------------------------------
|
|
* Initialize the device context spec factory
|
|
* @update dc 12/02/98
|
|
*/
|
|
NS_IMETHODIMP nsDeviceContextSpecFactoryMac :: Init(void)
|
|
{
|
|
return NS_OK;
|
|
}
|
|
|
|
/** -------------------------------------------------------
|
|
* Get a device context specification
|
|
* @update dc 12/02/98
|
|
*/
|
|
NS_IMETHODIMP nsDeviceContextSpecFactoryMac :: CreateDeviceContextSpec(nsIDeviceContextSpec *aOldSpec,
|
|
nsIDeviceContextSpec *&aNewSpec,
|
|
PRBool aQuiet)
|
|
{
|
|
nsresult rv = NS_ERROR_FAILURE;
|
|
nsIDeviceContextSpec *devSpec = nsnull;
|
|
|
|
nsComponentManager::CreateInstance(kDeviceContextSpecCID, nsnull, kIDeviceContextSpecIID, (void **)&devSpec);
|
|
|
|
if (nsnull != devSpec){
|
|
if (NS_OK == ((nsDeviceContextSpecMac *)devSpec)->Init(aQuiet)){
|
|
aNewSpec = devSpec;
|
|
rv = NS_OK;
|
|
}
|
|
}
|
|
return rv;
|
|
}
|