--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/emailuis/nmailcpplugin/src/nmsettingsplugin.cpp Fri Apr 16 14:51:52 2010 +0300
@@ -0,0 +1,77 @@
+/*
+* Copyright (c) 2010 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:
+*
+*/
+
+#include <cpsettingformentryitemdataimpl.h>
+#include <HbApplication>
+#include <QTranslator>
+#include <QLocale>
+
+#include "nmsettingsplugin.h"
+#include "nmsettingsviewfactory.h"
+
+/*!
+ \class NmSettingsPlugin
+ \brief The class implements CpPluginPlatInterface which is an interface
+ for plug-ins that are displayed in the control panel application.
+ The class works as an entry point for NMail settings.
+
+*/
+
+// ======== MEMBER FUNCTIONS ========
+
+/*!
+ Constructor of NmSettingsPlugin.
+*/
+NmSettingsPlugin::NmSettingsPlugin()
+: mTranslator(0)
+{
+ mTranslator = new QTranslator();
+ QString lang = QLocale::system().name();
+ QString appName = "mail_";
+ QString path = "z:/resource/qt/translations/";
+ mTranslator->load(appName + lang, path);
+ QCoreApplication::installTranslator(mTranslator);
+}
+
+/*!
+ Destructor of NmSettingsPlugin.
+*/
+NmSettingsPlugin::~NmSettingsPlugin()
+{
+ delete mTranslator;
+}
+
+/*!
+ Creates a data form model item, that is used by the control panel framework.
+
+ \param itemDataHelper Helper class that helps control panel plug-ins to
+ connect slots to inner widgets of the setting items.
+
+ \return Instance of CpSettingFormItemData.
+ Caller is the owner of the returned instance.
+*/
+CpSettingFormItemData *NmSettingsPlugin::createSettingFormItemData(
+ CpItemDataHelper &itemDataHelper) const
+{
+ HbIcon icon("qtg_large_email");
+
+ return new NmSettingsViewFactory(itemDataHelper,
+ hbTrId("txt_mail_title_control_panel"), "",
+ icon);
+}
+
+Q_EXPORT_PLUGIN2(nmsettingsplugin, NmSettingsPlugin);