--- a/controlpanel/controlpanel_plat/inc/cpbasesettingview.h Fri Mar 19 09:34:30 2010 +0200
+++ b/controlpanel/controlpanel_plat/inc/cpbasesettingview.h Fri Apr 16 15:15:08 2010 +0300
@@ -39,7 +39,6 @@
Q_DISABLE_COPY(CpBaseSettingView)
Q_DECLARE_PRIVATE_D(d_ptr, CpBaseSettingView)
Q_PRIVATE_SLOT(d_func(), void _q_softkeyClicked())
- Q_PRIVATE_SLOT(d_func(), void _q_viewChanged(HbView *view))
private:
CpBaseSettingViewPrivate *d_ptr;
};
--- a/controlpanel/controlpanel_plat/inc/cplogger.h Fri Mar 19 09:34:30 2010 +0200
+++ b/controlpanel/controlpanel_plat/inc/cplogger.h Fri Apr 16 15:15:08 2010 +0300
@@ -24,18 +24,27 @@
Format:
- [ControlPanel]
+ [CpFramework]
logdatetime = 1
logloggername = 1
+ datetimeformat = hh:mm:ss:zzz
output = debugoutput fileoutput
- fileoutput/logfile = C:/data/logs/controlpanel.log
- fileoutput/truncate = 0
+ fileoutput/logfile = C:/data/logs/cpframework.log
+ fileoutput/truncate = 1
+
+ [CpPerformance]
+ logdatetime = 1
+ datetimeformat = hh:mm:ss:zzz
+ output = fileoutput
+ fileoutput/logfile = C:/data/logs/cpperformance.log
+ fileoutput/truncate = 1
*/
#include <QLatin1String>
#include <logger.h>
-#define CPFW_LOGGER_NAME QLatin1String("CpFramework")
+#define CPFW_LOGGER_NAME QLatin1String("CpFramework")
+#define CPPERF_LOGGER_NAME QLatin1String("CpPerformance")
#if defined (Q_OS_SYMBIAN)
#define CP_LOGGER_CONFIG_PATH QLatin1String("C:/data/.config/controlpanellog.conf")
@@ -47,6 +56,7 @@
#endif
#endif
-#define CPFW_LOG(str) Logger::instance(CPFW_LOGGER_NAME)->log(str);
+#define CPFW_LOG(str) Logger::instance(CPFW_LOGGER_NAME)->log(str);
+#define CPPERF_LOG(str) Logger::instance(CPPERF_LOGGER_NAME)->log(str);
#endif /* CPLOGGER_H */
--- a/controlpanel/src/cpframework/src/cpbasesettingview_p.cpp Fri Mar 19 09:34:30 2010 +0200
+++ b/controlpanel/src/cpframework/src/cpbasesettingview_p.cpp Fri Apr 16 15:15:08 2010 +0300
@@ -28,27 +28,18 @@
#include "cpsettingformentryitemdata.h"
#include "cppluginutility.h"
-static HbMainWindow *mainWindow()
-{
- QList< HbMainWindow* > mainWindows = hbInstance->allMainWindows();
- if (!mainWindows.isEmpty()) {
- return mainWindows.front();
- }
- return 0;
-}
-
CpBaseSettingViewPrivate::CpBaseSettingViewPrivate() :
mBaseSettingView(0),
- mSoftKeyBackAction(0),
- //mSettingForm(0),
- mIsActiveView(false)
+ mSoftKeyBackAction(0)
{
}
CpBaseSettingViewPrivate::~CpBaseSettingViewPrivate()
{
- clearSoftkey();
+ if (mBaseSettingView) {
+ mBaseSettingView->setNavigationAction (0);
+ }
delete mSoftKeyBackAction;
mSoftKeyBackAction = 0;
@@ -63,7 +54,6 @@
CpPluginUtility::addCpItemPrototype(qobject_cast<HbDataForm *>(widget));
}
- //setSettingForm(settingForm);
mBaseSettingView->setWidget(widget);
mBaseSettingView->setTitle("Control Panel"); //give a default title, sub classes need set it correctly
@@ -74,14 +64,7 @@
mBaseSettingView,
SLOT(_q_softkeyClicked()) );
- if (mainWindow()) {
- QObject::connect(mainWindow(),
- SIGNAL(currentViewChanged(HbView *)),
- mBaseSettingView,
- SLOT(_q_viewChanged(HbView *)) );
- }
-
- setSoftkey();
+ mBaseSettingView->setNavigationAction (mSoftKeyBackAction);
}
void CpBaseSettingViewPrivate::setSettingForm(HbDataForm *settingForm)
@@ -90,39 +73,11 @@
CpPluginUtility::addCpItemPrototype(settingForm);
}
-void CpBaseSettingViewPrivate::setSoftkey()
-{
- if (mainWindow()) {
- mainWindow()->addSoftKeyAction(Hb::SecondarySoftKey,
- mSoftKeyBackAction);
- }
-}
-
-void CpBaseSettingViewPrivate::clearSoftkey()
-{
- if (mainWindow())
- {
- mainWindow()->removeSoftKeyAction(Hb::SecondarySoftKey,
- mSoftKeyBackAction);
- }
-}
-
void CpBaseSettingViewPrivate::_q_softkeyClicked()
{
emit mBaseSettingView->aboutToClose();
}
-void CpBaseSettingViewPrivate::_q_viewChanged(HbView *view)
-{
- if (mIsActiveView && view != mBaseSettingView) {
- mIsActiveView = false;
- clearSoftkey();
- }
- else if (!mIsActiveView && mBaseSettingView == view) {
- mIsActiveView = true;
- setSoftkey();
- }
-}
-
#include "moc_cpbasesettingview.cpp"
+//End of File
--- a/controlpanel/src/cpframework/src/cpbasesettingview_p.h Fri Mar 19 09:34:30 2010 +0200
+++ b/controlpanel/src/cpframework/src/cpbasesettingview_p.h Fri Apr 16 15:15:08 2010 +0300
@@ -41,21 +41,13 @@
void init(QGraphicsWidget *widget,CpBaseSettingView *baseSettingView);
void setSettingForm(HbDataForm *settingForm);
- /*
- softkey
- */
- void setSoftkey();
- void clearSoftkey();
-
//SLOTS
void _q_softkeyClicked();
- void _q_viewChanged(HbView *view);
private:
//DATA
CpBaseSettingView *mBaseSettingView;
HbAction *mSoftKeyBackAction;
HbDataForm *mSettingForm;
- bool mIsActiveView;
friend class CpBaseSettingView;
};
--- a/controlpanel/src/cpframework/src/cpdataformviewitem.cpp Fri Mar 19 09:34:30 2010 +0200
+++ b/controlpanel/src/cpframework/src/cpdataformviewitem.cpp Fri Apr 16 15:15:08 2010 +0300
@@ -110,9 +110,9 @@
if (itemType == HbDataFormModelItem::CustomItemBase+1) {
HbPushButton *button = new HbPushButton(QString("Push button"));
d_ptr->mWidget = button;
- button->setMinimumHeight(50);
- button->setMaximumHeight(60);
- button->setOrientation(Qt::Horizontal);
+ //button->setMinimumHeight(50);
+ //button->setMaximumHeight(60);
+ //button->setOrientation(Qt::Horizontal);
button->setTextAlignment( Qt::AlignLeft );
return button;
}
@@ -122,7 +122,7 @@
/*!
Inherit from HbDataForm. This function is called by hbdataform's framework,
for supporting to load entry item's text, icon and additional text dynamically.
- It is not recommanded to call this function mannually.
+ It is not recommended to call this function manually.
*/
void CpDataFormViewItem::load()
{
--- a/controlpanel/src/cpframework/src/cppluginloader.cpp Fri Mar 19 09:34:30 2010 +0200
+++ b/controlpanel/src/cpframework/src/cppluginloader.cpp Fri Apr 16 15:15:08 2010 +0300
@@ -40,6 +40,8 @@
template <typename PLUGIN>
static PLUGIN* loadPlugin(const QString &pluginFile)
{
+ CPPERF_LOG( QLatin1String("Loading plugin: ") + pluginFile );
+
QFileInfo fileInfo(pluginFile);
if (!fileInfo.isAbsolute()) {
@@ -52,6 +54,7 @@
foreach(const QString &pluginDir,pluginDirs) {
fileInfo.setFile(pluginDir + fileName);
if (fileInfo.exists() && QLibrary::isLibrary(fileInfo.absoluteFilePath())) {
+ CPPERF_LOG( QLatin1String("Valid plugin stub found: ") + fileInfo.absoluteFilePath() );
break;
}
}
@@ -62,6 +65,8 @@
if (!plugin) {
loader.unload();
}
+
+ CPPERF_LOG( QLatin1String("Load plugin ") + (plugin ? QLatin1String("succeed.") : QLatin1String("failed.")) );
return plugin;
}
--- a/controlpanel/src/cpframework/src/cppluginutility.cpp Fri Mar 19 09:34:30 2010 +0200
+++ b/controlpanel/src/cpframework/src/cppluginutility.cpp Fri Apr 16 15:15:08 2010 +0300
@@ -27,7 +27,7 @@
*/
void CpPluginUtility::addCpItemPrototype(HbDataForm *settingForm)
{
- if (settingForm != NULL) {
+ if (settingForm) {
QList<HbAbstractViewItem *>prototypeList = settingForm->itemPrototypes();
prototypeList.append(new CpDataFormViewItem());
settingForm->setItemPrototypes(prototypeList);
--- a/controlpanel/src/cpframework/src/cputility.cpp Fri Mar 19 09:34:30 2010 +0200
+++ b/controlpanel/src/cpframework/src/cputility.cpp Fri Apr 16 15:15:08 2010 +0300
@@ -78,17 +78,6 @@
return dirs;
}
-QStringList CpUtility::applicationPluginDirectories()
-{
- static QStringList dirs;
- if (dirs.empty()) {
- CPFW_LOG("ControlPanel application plugin derectories:");
-// dirs = directoriesFromAllDrives(CP_APPLICATION_PLUGIN_PATH);
- }
- return dirs;
-}
-
-
QStringList CpUtility::configFileDirectories()
{
static QStringList dirs;
--- a/controlpanel/src/cpframework/src/cputility.h Fri Mar 19 09:34:30 2010 +0200
+++ b/controlpanel/src/cpframework/src/cputility.h Fri Apr 16 15:15:08 2010 +0300
@@ -25,8 +25,6 @@
class CpUtility
{
public:
-
-
/*
get all physical drives of the devices
*/
@@ -38,11 +36,6 @@
static QStringList pluginDirectories();
/*
- get all application plugin directories of the device
- */
- static QStringList applicationPluginDirectories();
-
- /*
get all config directories of the device
*/
static QStringList configFileDirectories();
--- a/controlpanel/src/logger/src/logger.cpp Fri Mar 19 09:34:30 2010 +0200
+++ b/controlpanel/src/logger/src/logger.cpp Fri Apr 16 15:15:08 2010 +0300
@@ -122,7 +122,7 @@
QString logStr;
if (d_ptr->mLogDateTime) {
- logStr += QDateTime::currentDateTime().toString(d_ptr->mDateTimeFormat) + " ";
+ logStr += QDateTime::currentDateTime().toString(d_ptr->mDateTimeFormat) + ' ';
}
if (d_ptr->mLogLoggerName) {
--- a/controlpanel/src/logger/src/logoutputimpl.cpp Fri Mar 19 09:34:30 2010 +0200
+++ b/controlpanel/src/logger/src/logoutputimpl.cpp Fri Apr 16 15:15:08 2010 +0300
@@ -138,11 +138,14 @@
}
mLogFile = new QFile(mLogFilePath);
- QFile::OpenMode mode = QIODevice::WriteOnly | QIODevice::Text | QIODevice::Append;
+ QFile::OpenMode mode = QIODevice::WriteOnly | QIODevice::Text;
if (mTruncateFile) {
mode |= QIODevice::Truncate;
}
+ else {
+ mode |= QIODevice::Append;
+ }
if (!mLogFile->open(mode))
{
--- a/gsprofilesrv_plat/profiles_engine_api/inc/ProfileEng.hrh Fri Mar 19 09:34:30 2010 +0200
+++ b/gsprofilesrv_plat/profiles_engine_api/inc/ProfileEng.hrh Fri Apr 16 15:15:08 2010 +0300
@@ -62,7 +62,10 @@
EProfileSettingId3DEffect = 0x00000017,
EProfileSettingId3DEcho = 0x00000018,
EProfileSettingIdTactileFeedback = 0x00000019,
- EProfileSettingIdAudioFeedback = 0x0000001A
+ EProfileSettingIdAudioFeedback = 0x0000001A,
+ EProfileSettingIdReminderTone = 0x0000001B,
+ EProfileSettingIdClockAlarmTone = 0x0000001C,
+ EProfileSettingIdAlertVibra = 0x0000001D
};
#endif // __PROFILEENG_HRH__
--- a/gsprofilesrv_plat/profiles_engine_api/inc/ProfileEngineDomainCRKeys.h Fri Mar 19 09:34:30 2010 +0200
+++ b/gsprofilesrv_plat/profiles_engine_api/inc/ProfileEngineDomainCRKeys.h Fri Apr 16 15:15:08 2010 +0300
@@ -56,6 +56,22 @@
const TUint32 KProEngDefaultImTone = 0x7F00000C;
/**
+ * Default reminder tone for all profiles. String value. Read-only.
+ *
+ * Central Repository file of the key: KCRUidProfileEngine.
+ *
+ */
+const TUint32 KProEngDefaultReminderTone = 0x7F00001B;
+
+/**
+ * Default clock alarm tone for all profiles. String value. Read-only.
+ *
+ * Central Repository file of the key: KCRUidProfileEngine.
+ *
+ */
+const TUint32 KProEngDefaultClockAlarmTone = 0x7F00001C;
+
+/**
* This integer indicates the maximum file size (kilo bytes) of ring tone
* files that can be selected as voice call ringing tone.
*
--- a/gsprofilesrv_plat/profiles_engine_api/inc/ProfileEngineInternalCRKeys.h Fri Mar 19 09:34:30 2010 +0200
+++ b/gsprofilesrv_plat/profiles_engine_api/inc/ProfileEngineInternalCRKeys.h Fri Apr 16 15:15:08 2010 +0300
@@ -83,6 +83,45 @@
*/
const TUint32 KProEngActiveAudioFeedback = 0x7E00001A;
+/**
+* Absolute file path of ring tone of the currently active profile, string.
+**/
+const TUint32 KProEngActiveRingTone = 0x7E00001B;
+
+/**
+* Absolute file path of message tone of the currently active profile, string.
+**/
+const TUint32 KProEngActiveMessageTone = 0x7E00001C;
+
+/**
+* Absolute file path of reminder tone of the currently active profile, string.
+**/
+const TUint32 KProEngActiveReminderTone = 0x7E00001D;
+
+/**
+* Absolute file path of clock alarm tone of the currently active profile, string.
+**/
+const TUint32 KProEngActiveClockAlarmTone = 0x7E00001E;
+
+/**
+* Alert vibra setting of the currently active profile, string.
+*
+* Possible values (bit OR):
+*
+* enum TProfileAlertVibra
+ {
+ EProfileNoAlertVibra = 0x00000000,
+ EProfileRingAlertVibra = 0x00000001,
+ EProfileMessageAlertVibra = 0x00000002,
+ EProfileEmailAlertVibra = 0x00000004,
+ EProfileReminderAlarmVibra = 0x00000008,
+ EProfileClockAlarmVibra = 0x00000010,
+ EProfileInformationVibra = 0x00000020
+ };
+*
+**/
+const TUint32 KProEngActiveAlertVibra = 0x7E00001F;
+
#endif // PROFILEENGINEINTERNALCRKEYS_H
--- a/gsprofilesrv_plat/profiles_engine_api/inc/ProfileInternal.hrh Fri Mar 19 09:34:30 2010 +0200
+++ b/gsprofilesrv_plat/profiles_engine_api/inc/ProfileInternal.hrh Fri Apr 16 15:15:08 2010 +0300
@@ -67,6 +67,17 @@
EProfile3DEchoUnderwater = 28
};
+enum TProfileAlertVibra
+ {
+ EProfileNoAlertVibra = 0x00000000,
+ EProfileRingAlertVibra = 0x00000001,
+ EProfileMessageAlertVibra = 0x00000002,
+ EProfileEmailAlertVibra = 0x00000004,
+ EProfileReminderAlarmVibra = 0x00000008,
+ EProfileClockAlarmVibra = 0x00000010,
+ EProfileInformationVibra = 0x00000020
+ };
+
#endif // PROFILEINTERNAL_HRH
// End of File
--- a/gsprofilesrv_plat/settings_framework_api/inc/GSBaseView.h Fri Mar 19 09:34:30 2010 +0200
+++ b/gsprofilesrv_plat/settings_framework_api/inc/GSBaseView.h Fri Apr 16 15:15:08 2010 +0300
@@ -159,7 +159,7 @@
/**
* See base class.
*/
- void HandleListBoxEventL( CEikListBox* aListBox,
+ IMPORT_C void HandleListBoxEventL( CEikListBox* aListBox,
TListBoxEvent aEventType );
private: // New
--- a/gsprofilesrv_plat/settings_uis_cenrep_collection_api/inc/SettingsInternalCRKeys.h Fri Mar 19 09:34:30 2010 +0200
+++ b/gsprofilesrv_plat/settings_uis_cenrep_collection_api/inc/SettingsInternalCRKeys.h Fri Apr 16 15:15:08 2010 +0300
@@ -142,6 +142,16 @@
*/
const TUint32 KSettingsAPSettingsSupported = 0x00000003;
+
+/**
+* Current airplane mode
+*
+* Possible values are:
+* 0 = airplane mode (offline mode) Off
+* 1 = airplane mode (offline mode) On
+*/
+const TUint32 KSettingsAirplaneMode = 0x00000004;
+
/**
* Terminal personalization settings CR UID
*/
@@ -675,370 +685,6 @@
*/
const TUint32 KSettingsPowerSavingQuery = 0x00000001;
-/**
-* Slide Settings CR UID.
-*/
-const TUid KCRUidSlideSettings = {0x20015159};
-
-enum TSlideSetting
- {
- ESlideSettingOff = 0,
- ESlideSettingOn
- };
-
-/**********************************************************
- * User settings for slide handling
- *
- */
-
-/**
- * Used to control which behavior is chosen when closing the cover.
- * Possible values are 0=Off, 1=On
- */
-const TUint32 KSlideCloseCover = 0x00000001;
-
-const TUint32 KSlideOpenCoverUri = 0x00000002;
-
-const TUint32 KSlideOpenCoverCaption = 0x00000003;
-
-/**
- * This setting defines whether keyguard is activated by closing the cover
- *
- * Possible values:
- * 0: Closing cover does not activate keyguard.
- * 1: Closing the cover activates keyguard.
- * 2: User is asked "Do you want to activate keyguard?".
- * 3: Automatic - keyguard returns to the state before opening the cover.
- */
-const TUint32 KSlideKeyguard = 0x00000004;
-enum TSlideSettingKeyguard
- {
- ESlideSettingsKeyguardActivatingOff = 0,
- ESlideSettingsKeyguardActivatingOn,
- ESlideSettingsKeyguardActivatingAskMe,
- ESlideSettingsKeyguardActivatingAutomatic
- };
-
-/**
- * Used to control if audio is routed when opening the slide.
- * Possible values are 0=routing not changed, 1=routing changed
- */
-const TUint32 KSlideAudioRouting = 0x00000005;
-
-/**
- * User setting for Intelligent Slide
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KSlideAutomaticAction = 0x00000010;
-
-/**********************************************************
- * Configurability settings
- * This group of settings is used to specify which slide behavior is enabled
- * Different slide types need different items
- * For example ITU-T slide need call handling with slide
- * And full-Qwerty slide does not use call handling but requires audio routing with slide
- */
-
-/**
- * Defines which localisation to use for slide settings
- * Possible values
- * 0: Slide
- * 1: Cover
- * 2: Flip
- * 3: Fold
- * 4: Swivel
- * 5: reserved
- */
-const TUint32 KSlideTerminology = 0x00000101;
-
-/**
- * Slide Events to react to
- * Depending on this value, different P/S keys in KPSUidHWRM are used for monitoring the slide state
- * Possible values are
- * 0: Grip
- * 1: Flip
- * 2: Twist
- */
-const TUint32 KSlideShowEventType = 0x00000102;
-
-/**
- * Perform call handling with slide
- * Possible values
- * 0: Disabled
- * 1: Enabled
- */
-const TUint32 KSlideShowCallHandling = 0x00000110;
-
-/**
- * Perform audio routing with slide
- * Possible values
- * 0: Disabled
- * 1: Enabled
- */
-const TUint32 KSlideShowAudioRouting = 0x00000111;
-
-/**
- * Perform keypad lock handling with slide
- * Possible values
- * 0: Disabled
- * 1: Enabled
- */
-const TUint32 KSlideShowKeypadlock = 0x00000112;
-
-/**
- * Application launch when slide open in idle
- * Possible values
- * 0: Disabled
- * 1: Enabled
- */
-const TUint32 KSlideShowAppLaunch = 0x00000113;
-
-/**
- * Go to idle with slide close
- * Possible values
- * 0: Disabled
- * 1: Enabled
- */
-const TUint32 KSlideShowGoToIdle = 0x00000114;
-
-/**
- * Device lock with slide
- * Possible values
- * 0: Disabled
- * 1: Enabled
- */
-const TUint32 KSlideShowDeviceLock = 0x00000115;
-
-/**********************************************************
- * Intelligent Slide configurability settings
- * The following items describe in which applications/views
- * Intelligent slide feature is enabled
- *
- */
-
-/**
- * Messaging Main View
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KMessagingMainView = 0x00001001;
-
-/**
- * Messaging Message List View
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KMessagingMessageListView = 0x00001002;
-
-/**
- * Messaging One Row Message List View
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KMessagingOneRowMessageListView = 0x00001003;
-
-/**
- * Messaging Text Message Viewer
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KMessagingTextMessageViewer = 0x00001004;
-
-/**
- * Messaging Multimedia Message Viewer
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KMessagingMultimediaMessageViewer = 0x00001005;
-
-/**
- * Messaging Uni Editor
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KMessagingUniEditor = 0x00001006;
-
-/**
- * Email Viewer
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KEmailViewer = 0x00001010;
-
-/**
- * Email Editor
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KEmailEditor = 0x00001011;
-
-/**
- * Browser Content view
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KBrowserContentView = 0x00001020;
-
-/**
- * Browser Bookmarks view
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KBrowserBookmarksView = 0x00001021;
-
-/**
- * Clock Main view
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KClockMainView = 0x00001030;
-
-/**
- * Clock Alarm editor
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KClockAlarmEditor = 0x00001031;
-
-/**
- * Clock MultiAlarm view
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KClockMultiAlarmView = 0x00001032;
-
-/**
- * Clock World clock view
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KClockWorldClockView = 0x00001033;
-
-/**
- * Clock World clock view
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KClockCountDownView = 0x00001034;
-
-
-/**
- * Notepad Editor
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KNotepadEditor = 0x00001040;
-
-/**
- * Notepad List view
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KNotepadListView = 0x00001041;
-
-/**
- * Phone Incoming call
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KPhoneIncomingCall = 0x00001050;
-
-/**
- * File Manager Folder view
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KFileManagerFolderView = 0x00001060;
-
-/**
- * Calendar Main(Month/Week/Day/To-Do) view
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KCalendarMainView = 0x00001070;
-
-/**
- * Calendar Event(Meeting/Memo/Anniversary/To-Do note) view
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KCalendarEventView = 0x00001071;
-
-/**
- * Calendar Event(Meeting/Memo/Anniversary/To-Do note) editor
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KCalendarEventEditor = 0x00001072;
-
-/**
- * Contacts Group view
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KContactsGroupView = 0x00001080;
-
-/**
- * Contacts Details view
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KContactsDetailsView = 0x00001081;
-
-/**
- * Contacts Editor
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KContactsEditor = 0x00001082;
-
-/**
- * Contacts Communication Launcher view
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KContactsCommunicationLauncherView = 0x00001083;
-
-
-/**
- * Logs view
- * Possible values are listed in TSlideSetting
- */
-const TUint32 KLogsView = 0x00001090;
-
-
-/**
- * Modifier keys used for global shortcuts
- * Possible values of scan codes are listed in e32keys.h
- * For example EStdKeyLeftShift=0x12, EStdKeyLeftCtrl=0x16
- */
-const TUint32 KGlobalShortcutModifier1 = 0x00002001;
-const TUint32 KGlobalShortcutModifier2 = 0x00002002;
-
-/**
- * Action key scancode
- * Possible values of scan codes are listed in e32keys.h
- */
-const TUint32 KGlobalShortcutKey00 = 0x00002100;
-const TUint32 KGlobalShortcutKey01 = 0x00002101;
-const TUint32 KGlobalShortcutKey02 = 0x00002102;
-const TUint32 KGlobalShortcutKey03 = 0x00002103;
-const TUint32 KGlobalShortcutKey04 = 0x00002104;
-const TUint32 KGlobalShortcutKey05 = 0x00002105;
-const TUint32 KGlobalShortcutKey06 = 0x00002106;
-const TUint32 KGlobalShortcutKey07 = 0x00002107;
-const TUint32 KGlobalShortcutKey08 = 0x00002108;
-const TUint32 KGlobalShortcutKey09 = 0x00002109;
-const TUint32 KGlobalShortcutKey10 = 0x00002110;
-const TUint32 KGlobalShortcutKey11 = 0x00002111;
-const TUint32 KGlobalShortcutKey12 = 0x00002112;
-const TUint32 KGlobalShortcutKey13 = 0x00002113;
-const TUint32 KGlobalShortcutKey14 = 0x00002114;
-const TUint32 KGlobalShortcutKey15 = 0x00002115;
-const TUint32 KGlobalShortcutKey16 = 0x00002116;
-const TUint32 KGlobalShortcutKey17 = 0x00002117;
-const TUint32 KGlobalShortcutKey18 = 0x00002118;
-const TUint32 KGlobalShortcutKey19 = 0x00002119;
-
-/**
- * Application UID that should be brought to foreground/background
- * when corresponding action key is pressed
- */
-const TUint32 KGlobalShortcutApp00 = 0x00002200;
-const TUint32 KGlobalShortcutApp01 = 0x00002201;
-const TUint32 KGlobalShortcutApp02 = 0x00002202;
-const TUint32 KGlobalShortcutApp03 = 0x00002203;
-const TUint32 KGlobalShortcutApp04 = 0x00002204;
-const TUint32 KGlobalShortcutApp05 = 0x00002205;
-const TUint32 KGlobalShortcutApp06 = 0x00002206;
-const TUint32 KGlobalShortcutApp07 = 0x00002207;
-const TUint32 KGlobalShortcutApp08 = 0x00002208;
-const TUint32 KGlobalShortcutApp09 = 0x00002209;
-const TUint32 KGlobalShortcutApp10 = 0x00002210;
-const TUint32 KGlobalShortcutApp11 = 0x00002211;
-const TUint32 KGlobalShortcutApp12 = 0x00002212;
-const TUint32 KGlobalShortcutApp13 = 0x00002213;
-const TUint32 KGlobalShortcutApp14 = 0x00002214;
-const TUint32 KGlobalShortcutApp15 = 0x00002215;
-const TUint32 KGlobalShortcutApp16 = 0x00002216;
-const TUint32 KGlobalShortcutApp17 = 0x00002217;
-const TUint32 KGlobalShortcutApp18 = 0x00002218;
-const TUint32 KGlobalShortcutApp19 = 0x00002219;
-
#endif // SETTINGSINTERNALCRKEYS_H
// End of file
\ No newline at end of file
--- a/gssettingsuis/Gs/GSApplication/bld.inf Fri Mar 19 09:34:30 2010 +0200
+++ b/gssettingsuis/Gs/GSApplication/bld.inf Fri Apr 16 15:15:08 2010 +0300
@@ -27,7 +27,7 @@
../rom/GSAppResources.iby LANGUAGE_MW_LAYER_IBY_EXPORT_PATH( GSAppResources.iby )
../Data/backup_registration.xml z:/private/100058EC/backup_registration.xml
../rom/GsResources.iby LANGUAGE_MW_LAYER_IBY_EXPORT_PATH( GsResources.iby )
-loc/GSApp.loc MW_LAYER_LOC_EXPORT_PATH( GSApp.loc )
+loc/gsapp.loc MW_LAYER_LOC_EXPORT_PATH( gsapp.loc )
loc/SoftReject.loc MW_LAYER_LOC_EXPORT_PATH( SoftReject.loc )
PRJ_EXTENSIONS
Binary file gssettingsuis/Gs/conf/s60settingsuis.confml has changed
Binary file gssettingsuis/Gs/conf/s60settingsuis_101F877B.crml has changed
--- a/gssettingsuis/Gs/gslauncher/src/GSLauncher.cpp Fri Mar 19 09:34:30 2010 +0200
+++ b/gssettingsuis/Gs/gslauncher/src/GSLauncher.cpp Fri Apr 16 15:15:08 2010 +0300
@@ -15,7 +15,7 @@
*
*/
-#include <GSLauncher.h>
+#include <gslauncher.h>
// ======== MEMBER FUNCTIONS ========
--- a/layers.sysdef.xml Fri Mar 19 09:34:30 2010 +0200
+++ b/layers.sysdef.xml Fri Apr 16 15:15:08 2010 +0300
@@ -17,5 +17,11 @@
<unit unitID="controlpanel" mrp="" bldFile="&layer_real_source_path;/controlpanel" name="controlpanel" proFile="controlpanel.pro" qmakeArgs="-r -config rom"/>
</module>
</layer>
+ <layer name="api_test_layer">
+ <module name="controlpanel_api_tests">
+ <unit unitID="presdoe.controlpanel_ui_contants_api" mrp="" bldFile="&layer_real_source_path;/controlpanel/tsrc" name="controlpanel_ui_contants_api" />
+ </module>
+ </layer>
+
</systemModel>
</SystemDefinition>
Binary file profilesservices/ProfileEngine/conf/profilesengine.confml has changed
Binary file profilesservices/ProfileEngine/conf/profilesengine_101F8798.crml has changed
--- a/profilesservices/ProfileEngine/group/ProfileEngine.mmp Fri Mar 19 09:34:30 2010 +0200
+++ b/profilesservices/ProfileEngine/group/ProfileEngine.mmp Fri Apr 16 15:15:08 2010 +0300
@@ -61,7 +61,7 @@
USERINCLUDE .
USERINCLUDE ../WrapperInc
USERINCLUDE ../EngInc
-APP_LAYER_SYSTEMINCLUDE
+
MW_LAYER_SYSTEMINCLUDE
LIBRARY bafl.lib
--- a/profilesservices/ProfileEngine/group/ProfilesEngineExports.Inc Fri Mar 19 09:34:30 2010 +0200
+++ b/profilesservices/ProfileEngine/group/ProfilesEngineExports.Inc Fri Apr 16 15:15:08 2010 +0300
@@ -24,7 +24,7 @@
#ifndef PROFILESENGINEEXPORTS_INC
#define PROFILESENGINEEXPORTS_INC
- ../loc/Profile.loc MW_LAYER_LOC_EXPORT_PATH(Profile.loc)
+ ../loc/profile.loc MW_LAYER_LOC_EXPORT_PATH(profile.loc)
// headers
// for SDK