localisation/apparchitecture/apgrfx/APGPRIV.H
branchSymbian3
changeset 57 b8d18c84f71c
parent 6 c108117318cb
equal deleted inserted replaced
56:aa99f2208aad 57:b8d18c84f71c
     1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     3 // This component and the accompanying materials are made available
     4 // under the terms of the License "Eclipse Public License v1.0"
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     7 //
     8 // Initial Contributors:
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
     9 // Nokia Corporation - initial contribution.
    23 #include <s32mem.h>
    23 #include <s32mem.h>
    24 #endif
    24 #endif
    25 #if !defined(__GDI_H__)
    25 #if !defined(__GDI_H__)
    26 #include <gdi.h>
    26 #include <gdi.h>
    27 #endif
    27 #endif
       
    28 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
       
    29 #if !defined(__APAID_PARTNER_H__)
       
    30 #include "apaidpartner.h"
       
    31 #endif
       
    32 #else
    28 #include <apaid.h>
    33 #include <apaid.h>
       
    34 #endif //SYMBIAN_ENABLE_SPLIT_HEADERS
    29 
    35 
    30 // classes referenced:
    36 // classes referenced:
    31 class CApaMaskedBitmap;
    37 class CApaMaskedBitmap;
    32 //
    38 //
    33 
    39 
    67 	TInt iScaleFactorHeight;	   // Stored as percent * 10
    73 	TInt iScaleFactorHeight;	   // Stored as percent * 10
    68 	TSize iDisplaySizeInPixels;
    74 	TSize iDisplaySizeInPixels;
    69 	TSize iDisplaySizeInTwips;
    75 	TSize iDisplaySizeInTwips;
    70 	};
    76 	};
    71 
    77 
    72 class CApaAppServiceInfoArrayWrapper : public CApaAppServiceInfoArray
    78 NONSHARABLE_CLASS(CApaAppServiceInfoArrayImpl) : public CApaAppServiceInfoArray
    73 	{
    79 	{
    74 public:
    80 public:
    75 	static CApaAppServiceInfoArrayWrapper* NewL(CArrayFix<TApaAppServiceInfo>* aServiceInfoArray);
    81 	static CApaAppServiceInfoArrayImpl* NewL(CArrayFix<TApaAppServiceInfo>* aServiceInfoArray);
    76 	~CApaAppServiceInfoArrayWrapper();
    82 	~CApaAppServiceInfoArrayImpl();
    77 	TArray<TApaAppServiceInfo> Array();
    83 	TArray<TApaAppServiceInfo> Array();
    78 private:
    84 private:
    79 	CApaAppServiceInfoArrayWrapper(CArrayFix<TApaAppServiceInfo>* aServiceInfoArray);
    85 	CApaAppServiceInfoArrayImpl(CArrayFix<TApaAppServiceInfo>* aServiceInfoArray);
    80 private:
    86 private:
    81 	CArrayFix<TApaAppServiceInfo>* iServiceInfoArray;
    87 	CArrayFix<TApaAppServiceInfo>* iServiceInfoArray;
    82 	};
    88 	};
    83 
    89 
    84 
    90