VirtualBox

Changeset 80101 in vbox for trunk/src


Ignore:
Timestamp:
Aug 1, 2019 1:15:19 PM (5 years ago)
Author:
vboxsync
Message:

FE/Qt: bugref:7720: VirtualBox Manager: Details pane: Small cleanup for all the elements.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIDetailsGenerator.cpp

    r80100 r80101  
    6565        const QString strName = comMachine.GetName();
    6666        table << UITextTableLine(QApplication::translate("UIDetails", "Name", "details (general)"),
    67                                  QString("<a href=#%1,%2>%2</a>").arg(strAnchorType, strName));
     67                                 QString("<a href=#%1,%2>%2</a>")
     68                                     .arg(strAnchorType,
     69                                          strName));
    6870    }
    6971
     
    7577        const QString strOsTypeId = comMachine.GetOSTypeId();
    7678        table << UITextTableLine(QApplication::translate("UIDetails", "Operating System", "details (general)"),
    77                                  QString("<a href=#%1,%2>%3</a>").arg(strAnchorType,
    78                                                                       strOsTypeId,
    79                                                                       uiCommon().vmGuestOSTypeDescription(strOsTypeId)));
     79                                 QString("<a href=#%1,%2>%3</a>")
     80                                     .arg(strAnchorType,
     81                                          strOsTypeId,
     82                                          uiCommon().vmGuestOSTypeDescription(strOsTypeId)));
    8083    }
    8184
     
    8790        const QString strMachineLocation = comMachine.GetSettingsFilePath();
    8891        table << UITextTableLine(QApplication::translate("UIDetails", "Settings File Location", "details (general)"),
    89                                  QString("<a href=#%1,%2>%3</a>").arg(strAnchorType,
    90                                                                       strMachineLocation,
    91                                                                       QDir::toNativeSeparators(QFileInfo(strMachineLocation).absolutePath())));
     92                                 QString("<a href=#%1,%2>%3</a>")
     93                                     .arg(strAnchorType,
     94                                          strMachineLocation,
     95                                          QDir::toNativeSeparators(QFileInfo(strMachineLocation).absolutePath())));
    9296    }
    9397
     
    138142        const int iBaseMemory = comMachine.GetMemorySize();
    139143        table << UITextTableLine(QApplication::translate("UIDetails", "Base Memory", "details (system)"),
    140                                  QApplication::translate("UIDetails", "<a href=#%1,%2>%2 MB</a>", "details")
    141                                     .arg(strAnchorType).arg(iBaseMemory));
     144                                 QString("<a href=#%1,%2>%3</a>")
     145                                     .arg(strAnchorType)
     146                                     .arg(iBaseMemory)
     147                                     .arg(QApplication::translate("UIDetails", "%1 MB").arg(iBaseMemory)));
    142148    }
    143149
     
    167173        const UIBootItemDataList bootItems = loadBootItems(comMachine);
    168174        table << UITextTableLine(QApplication::translate("UIDetails", "Boot Order", "details (system)"),
    169                                  QApplication::translate("UIDetails", "<a href=#%1,%2>%3</a>", "details")
    170                                     .arg(strAnchorType,
    171                                          bootItemsToSerializedString(bootItems),
    172                                          bootItemsToReadableString(bootItems)));
     175                                 QString("<a href=#%1,%2>%3</a>")
     176                                     .arg(strAnchorType,
     177                                          bootItemsToSerializedString(bootItems),
     178                                          bootItemsToReadableString(bootItems)));
    173179    }
    174180
     
    261267        const int iVideoMemory = comMachine.GetVRAMSize();
    262268        table << UITextTableLine(QApplication::translate("UIDetails", "Video Memory", "details (display)"),
    263                                  QApplication::translate("UIDetails", "<a href=#%1,%2>%2 MB</a>", "details")
    264                                     .arg(strAnchorType).arg(iVideoMemory));
     269                                 QString("<a href=#%1,%2>%3</a>")
     270                                     .arg(strAnchorType)
     271                                     .arg(iVideoMemory)
     272                                     .arg(QApplication::translate("UIDetails", "%1 MB").arg(iVideoMemory)));
    265273    }
    266274
     
    298306        const KGraphicsControllerType enmType = comMachine.GetGraphicsControllerType();
    299307        table << UITextTableLine(QApplication::translate("UIDetails", "Graphics Controller", "details (display)"),
    300                                  QApplication::translate("UIDetails", "<a href=#%1,%2>%3</a>", "details")
     308                                 QString("<a href=#%1,%2>%3</a>")
    301309                                     .arg(strAnchorType)
    302310                                     .arg((int)enmType)
     
    435443                    attachmentsMap.insert(attachmentSlot,
    436444                                          QString("<a href=#%1,%2,%3,%4>%5</a>")
    437                                           .arg(strAnchorType,
    438                                                comController.GetName(),
    439                                                gpConverter->toString(attachmentSlot),
    440                                                strMediumLocation,
    441                                                strDeviceType + strAttachmentInfo));
     445                                              .arg(strAnchorType,
     446                                                   comController.GetName(),
     447                                                   gpConverter->toString(attachmentSlot),
     448                                                   strMediumLocation,
     449                                                   strDeviceType + strAttachmentInfo));
    442450                else
    443451                    attachmentsMap.insert(attachmentSlot,
    444452                                          QString("%1")
    445                                           .arg(strDeviceType + strAttachmentInfo));
     453                                              .arg(strDeviceType + strAttachmentInfo));
    446454            }
    447455        }
     
    459467}
    460468
    461 
    462469UITextTable UIDetailsGenerator::generateMachineInformationAudio(CMachine &comMachine,
    463470                                                                const UIExtraDataMetaDefs::DetailsElementOptionTypeAudio &fOptions)
     
    483490            const KAudioDriverType enmType = comAudio.GetAudioDriver();
    484491            table << UITextTableLine(QApplication::translate("UIDetails", "Host Driver", "details (audio)"),
    485                                      QApplication::translate("UIDetails", "<a href=#%1,%2>%3</a>", "details")
     492                                     QString("<a href=#%1,%2>%3</a>")
    486493                                         .arg(strAnchorType)
    487494                                         .arg((int)enmType)
     
    495502            const KAudioControllerType enmType = comAudio.GetAudioController();
    496503            table << UITextTableLine(QApplication::translate("UIDetails", "Controller", "details (audio)"),
    497                                      QApplication::translate("UIDetails", "<a href=#%1,%2>%3</a>", "details")
     504                                     QString("<a href=#%1,%2>%3</a>")
    498505                                         .arg(strAnchorType)
    499506                                         .arg((int)enmType)
     
    800807        /* Try to convert loaded data to bool: */
    801808        const bool fEnabled = !(   strMenubarEnabled.compare("false", Qt::CaseInsensitive) == 0
    802                                    || strMenubarEnabled.compare("no", Qt::CaseInsensitive) == 0
    803                                    || strMenubarEnabled.compare("off", Qt::CaseInsensitive) == 0
    804                                    || strMenubarEnabled == "0");
     809                                || strMenubarEnabled.compare("no", Qt::CaseInsensitive) == 0
     810                                || strMenubarEnabled.compare("off", Qt::CaseInsensitive) == 0
     811                                || strMenubarEnabled == "0");
    805812        /* Append information: */
    806813        table << UITextTableLine(QApplication::translate("UIDetails", "Menu-bar", "details (user interface)"),
    807814                                 fEnabled ? QApplication::translate("UIDetails", "Enabled", "details (user interface/menu-bar)")
    808                                  : QApplication::translate("UIDetails", "Disabled", "details (user interface/menu-bar)"));
     815                                          : QApplication::translate("UIDetails", "Disabled", "details (user interface/menu-bar)"));
    809816    }
    810817#endif /* !VBOX_WS_MAC */
     
    816823        /* Try to convert loaded data to bool: */
    817824        const bool fEnabled = !(   strStatusbarEnabled.compare("false", Qt::CaseInsensitive) == 0
    818                                    || strStatusbarEnabled.compare("no", Qt::CaseInsensitive) == 0
    819                                    || strStatusbarEnabled.compare("off", Qt::CaseInsensitive) == 0
    820                                    || strStatusbarEnabled == "0");
     825                                || strStatusbarEnabled.compare("no", Qt::CaseInsensitive) == 0
     826                                || strStatusbarEnabled.compare("off", Qt::CaseInsensitive) == 0
     827                                || strStatusbarEnabled == "0");
    821828        /* Append information: */
    822829        table << UITextTableLine(QApplication::translate("UIDetails", "Status-bar", "details (user interface)"),
    823830                                 fEnabled ? QApplication::translate("UIDetails", "Enabled", "details (user interface/status-bar)")
    824                                  : QApplication::translate("UIDetails", "Disabled", "details (user interface/status-bar)"));
     831                                          : QApplication::translate("UIDetails", "Disabled", "details (user interface/status-bar)"));
    825832    }
    826833
     
    832839        /* Try to convert loaded data to bool: */
    833840        const bool fEnabled = !(   strMiniToolbarEnabled.compare("false", Qt::CaseInsensitive) == 0
    834                                    || strMiniToolbarEnabled.compare("no", Qt::CaseInsensitive) == 0
    835                                    || strMiniToolbarEnabled.compare("off", Qt::CaseInsensitive) == 0
    836                                    || strMiniToolbarEnabled == "0");
     841                                || strMiniToolbarEnabled.compare("no", Qt::CaseInsensitive) == 0
     842                                || strMiniToolbarEnabled.compare("off", Qt::CaseInsensitive) == 0
     843                                || strMiniToolbarEnabled == "0");
    837844        /* Append information: */
    838845        if (fEnabled)
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette