src/hbcore/utils/hbdeviceprofile.cpp
branchGCC_SURGE
changeset 15 f378acbc9cfb
parent 7 923ff622b8b9
child 21 4633027730f5
child 34 ed14f46c0e55
--- a/src/hbcore/utils/hbdeviceprofile.cpp	Thu Jul 15 14:03:49 2010 +0100
+++ b/src/hbcore/utils/hbdeviceprofile.cpp	Thu Jul 22 16:36:53 2010 +0100
@@ -35,20 +35,20 @@
 #include <QDebug>
 
 // To store the pointer to the deviceProfiles at the client side.
-static HbDeviceProfileList *deviceProfilesList = NULL;
+static HbDeviceProfileList *deviceProfilesList = 0;
 
 #define MM_PER_INCH 25.4
 
 /*!
-	@stable
+    @stable
     @hbcore
     \class HbDeviceProfile
-    \brief HbDeviceProfile holds read-only device parameters. 
-    
-    Instances of this class hold both concrete device specific information 
-    (e.g. physical display size) and aspects that have been configured for 
+    \brief HbDeviceProfile holds read-only device parameters.
+
+    Instances of this class hold both concrete device specific information
+    (e.g. physical display size) and aspects that have been configured for
     a specific device (e.g. orientation, unit value).
-   
+
 */
 
 /*!
@@ -79,7 +79,7 @@
 {
     if (d_ptr->deviceProfiles()) {
         int count = deviceProfilesList->count();
-        bool found( false );
+        bool found(false);
         for (int i = 0; !found && i < count; i++) {
             if (deviceProfilesList->at(i).mName == name) {
                 d_ptr->mProfile = deviceProfilesList->at(i);
@@ -174,8 +174,8 @@
 }
 
 /*!
-    Returns name of alternate profile. 
-    
+    Returns name of alternate profile.
+
     Currently this holds information of the profile which is activated
     on layout switch. Use this information if you need to optimize
     layout switch.
@@ -189,7 +189,7 @@
     Returns standard unit value (denoted by 'un').
 
     The unit value is a display-specific multiplier. It is used in intenal
-    layout calculation. 
+    layout calculation.
 */
 qreal HbDeviceProfile::unitValue() const
 {
@@ -209,7 +209,7 @@
 
 /*!
     Returns current global profile reflecting properties of primary display.
-    
+
     Usually, you should not use this method. Instead, use one of \c profile
     methods.
 */
@@ -236,7 +236,7 @@
 
 /*!
     Returns current profile for this graphics item.
-    
+
     Graphics item must be tied to a scene and scene needs to be part of
     main window. Otherwise, value returned by \c current is provided.
 
@@ -253,10 +253,10 @@
         return current();
     }
     QList<QGraphicsView *> views = scene->views();
-    foreach(QGraphicsView *view, views) {
+    foreach(QGraphicsView * view, views) {
         HbMainWindow *window = qobject_cast<HbMainWindow *>(view);
         if (window) {
-            HbDeviceProfile profile = 
+            HbDeviceProfile profile =
                 HbMainWindowPrivate::d_ptr(window)->profile();
 
             if (!profile.isNull()) {
@@ -280,9 +280,9 @@
 QStringList HbDeviceProfilePrivate::profileNames()
 {
     QStringList profileNames;
-    if(deviceProfiles()){
+    if (deviceProfiles()) {
         int profilesCount = deviceProfilesList->count();
-        for(int i = 0;i < profilesCount ; i++) {
+        for (int i = 0; i < profilesCount ; i++) {
             profileNames.append(deviceProfilesList->at(i).mName);
         }
     }
@@ -299,19 +299,18 @@
 
 HbDeviceProfileList *HbDeviceProfilePrivate::deviceProfiles()
 {
-    if(!deviceProfilesList) {
-	// Will result in IPC call. gets the shared memory offset from themeserver.
+    if (!deviceProfilesList) {
+        // Will result in IPC call. gets the shared memory offset from themeserver.
         deviceProfilesList = HbThemeClient::global()->deviceProfiles();
     }
-       
-    if(!deviceProfilesList) {
+
+    if (!deviceProfilesList) {
         // This is fall back.Create/Get the HbDeviceProfileDatabase Instance at
         // the client side and read the deviceProfilesList.
-        qDebug()<<"DeviceProfile offset not returned by themeserver .. working in fallback mode";
         HbDeviceProfileDatabase *deviceProfileDataBase =
-                HbDeviceProfileDatabase::instance(HbMemoryManager::HeapMemory);
+            HbDeviceProfileDatabase::instance(HbMemoryManager::HeapMemory);
         deviceProfilesList = HbMemoryUtils::getAddress<HbDeviceProfileList>(HbMemoryManager::HeapMemory,
-                                 deviceProfileDataBase->deviceProfilesOffset());
+                             deviceProfileDataBase->deviceProfilesOffset());
     }
     return deviceProfilesList;
 }