Many of the components were not compiling,because bld.inf had undefined flag #ifdef RD_CUSTOMIZABLE_AI. All the flags removed now. Components do not compile right away. E.g. many icons are missing and need to be copied from Symbian3. See example from MCSPlugin. Shortcut plugin does not need to be compiled as MCSPlugin replaces it.
/*
* Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
* Document base class for Xuikon based applications
*
*/
#ifndef XNDOCUMENT_H
#define XNDOCUMENT_H
// System includes
#include <AknDoc.h>
// Class declaration
/**
* Document base class for Xuikon.
*
* @ingroup group_xnlayoutengine
* @lib xn3layoutengine.lib
* @since Series 60 3.1
*/
class CXnDocument : public CAknDocument
{
public:
/**
* C++ default constructor.
*/
IMPORT_C CXnDocument( CEikApplication& aApp, TUid aApplicationUid );
/**
* Destructor.
*/
IMPORT_C virtual ~CXnDocument();
public:
// New functions
/**
* Get the application uid
*
* @since Series 60 3.1
* @return Application uid
*/
IMPORT_C TUid Uid();
public:
/**
* From CEikDocument.
* Creates an AppUi
*
* @since Series 60 3.1
* @return AppUi
*/
virtual CEikAppUi* CreateAppUiL();
private:
// Data
/**
* application uid
*/
TUid iApplicationUid;
};
#endif