VirtualBox

Changeset 9217 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
May 29, 2008 11:36:05 AM (17 years ago)
Author:
vboxsync
Message:

FE/Qt4: Notation updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox4/src/VBoxDiskImageManagerDlg.cpp

    r9214 r9217  
    6565
    6666    void setMedia (const VBoxMedia &aMedia) { mMedia = aMedia; }
    67     const VBoxMedia &getMedia() const { return mMedia; }
     67    const VBoxMedia &media() const { return mMedia; }
    6868
    6969    void setPath (const QString &aPath) { mPath = aPath; }
    70     const QString &getPath() const { return mPath; }
     70    const QString &path() const { return mPath; }
    7171
    7272    void setUsage (const QString &aUsage) { mUsage = aUsage; }
    73     const QString &getUsage() const { return mUsage; }
     73    const QString &usage() const { return mUsage; }
    7474
    7575    void setSnapshotUsage (const QString &aSnapshotUsage) { mSnapshotUsage = aSnapshotUsage; }
    76     const QString &getSnapshotUsage() const { return mSnapshotUsage; }
    77 
    78     QString getTotalUsage() const
    79     {
    80         /* should correlate with VBoxDiskImageManagerDlg::compose[Cd/Fd]Tooltip */
     76    const QString &snapshotUsage() const { return mSnapshotUsage; }
     77
     78    QString totalUsage() const
     79    {
     80        /* Should correlate with VBoxDiskImageManagerDlg::compose[Cd/Fd]Tooltip */
    8181        return mSnapshotUsage.isNull() ? mUsage :
    8282            QString ("%1 (%2)").arg (mUsage, mSnapshotUsage);
     
    8484
    8585    void setSnapshotName (const QString &aSnapshotName) { mSnapshotName = aSnapshotName; }
    86     const QString &getSnapshotName() const { return mSnapshotName; }
     86    const QString &snapshotName() const { return mSnapshotName; }
    8787
    8888    void setDiskType (const QString &aDiskType) { mDiskType = aDiskType; }
    89     const QString &getDiskType() const { return mDiskType; }
     89    const QString &diskType() const { return mDiskType; }
    9090
    9191    void setStorageType (const QString &aStorageType) { mStorageType = aStorageType; }
    92     const QString &getStorageType() const { return mStorageType; }
     92    const QString &storageType() const { return mStorageType; }
    9393
    9494    void setVirtualSize (const QString &aVirtualSize) { mVirtualSize = aVirtualSize; }
    95     const QString &getVirtualSize() const { return mVirtualSize; }
     95    const QString &virtualSize() const { return mVirtualSize; }
    9696
    9797    void setActualSize (const QString &aActualSize) { mActualSize = aActualSize; }
    98     const QString &getActualSize() const { return mActualSize; }
     98    const QString &ActualSize() const { return mActualSize; }
    9999
    100100    void setUuid (const QUuid &aUuid) { mUuid = aUuid; }
    101     const QUuid &getUuid() const { return mUuid; }
     101    const QUuid &uuid() const { return mUuid; }
    102102
    103103    void setMachineId (const QUuid &aMachineId) { mMachineId = aMachineId; }
    104     const QUuid &getMachineId() const { return mMachineId; }
     104    const QUuid &machineId() const { return mMachineId; }
    105105
    106106    void setStatus (VBoxMedia::Status aStatus) { mStatus = aStatus; }
    107     VBoxMedia::Status getStatus() const { return mStatus; }
     107    VBoxMedia::Status status() const { return mStatus; }
    108108
    109109    void setToolTip (const QString& aToolTip)
     
    113113            QTreeWidgetItem::setToolTip (i, mToolTip);
    114114    }
    115     const QString &getToolTip() const { return mToolTip; }
    116 
    117     QString getInformation (const QString &aInfo, bool aCompact = true,
    118                             const QString &aElipsis = "middle")
     115    const QString &toolTip() const { return mToolTip; }
     116
     117    QString information (const QString &aInfo, bool aCompact = true,
     118                         const QString &aElipsis = "middle")
    119119    {
    120120        QString compactString = QString ("<compact elipsis=\"%1\">").arg (aElipsis);
     
    150150protected:
    151151
     152    /* Protected member vars */
    152153    VBoxMedia mMedia;
    153154
     
    186187    DiskImageItemIterator& operator++()
    187188    {
    188         return (DiskImageItemIterator&) QTreeWidgetItemIterator::operator++();
     189        return static_cast<DiskImageItemIterator&> (QTreeWidgetItemIterator::operator++());
    189190    }
    190191};
     
    197198        : QIRichLabel (aParent), mLabel (aLabel) {}
    198199
    199     QLabel* label() { return mLabel; }
     200    QLabel* label() const { return mLabel; }
    200201
    201202private:
    202203
     204    /* Private member vars */
    203205    QLabel *mLabel;
    204206};
     
    409411             &vboxProblem(), SLOT (showHelpHelpDialog()));
    410412
    411 
    412413    /* Applying language settings */
    413414    retranslateUi();
    414415}
    415 
    416416
    417417void VBoxDiskImageManagerDlg::setup (int aType, bool aDoSelect,
     
    525525int VBoxDiskImageManagerDlg::exec()
    526526{
    527     AssertMsg (!mEventLoop, ("exec is called recursively"));
     527    AssertMsg (!mEventLoop, ("exec is called recursively!\n"));
    528528
    529529    /* Reset the result code */
     
    558558    DiskImageItem *item = toDiskImageItem (selectedItem (tree));
    559559    if (item)
    560         uuid = item->getUuid();
     560        uuid = item->uuid();
    561561
    562562    return uuid;
     
    570570    DiskImageItem *item = toDiskImageItem (selectedItem (tree));
    571571    if (item)
    572         path = item->getPath().trimmed();
     572        path = item->path().trimmed();
    573573
    574574    return path;
     
    580580{
    581581    CVirtualBox vbox = vboxGlobal().virtualBox();
    582     QUuid machineId = aItem ? aItem->getMachineId() : aHd.GetMachineId();
    583 
    584     QString src = aItem ? aItem->getPath() : aHd.GetLocation();
     582    QUuid machineId = aItem ? aItem->machineId() : aHd.GetMachineId();
     583
     584    QString src = aItem ? aItem->path() : aHd.GetLocation();
    585585    QString location = aItem || aHd.GetStorageType() == KHardDiskStorageType_ISCSIHardDisk ? src :
    586586        QDir::convertSeparators (QFileInfo (src).absoluteFilePath());
    587587
    588     QString storageType = aItem ? aItem->getStorageType() :
     588    QString storageType = aItem ? aItem->storageType() :
    589589        vboxGlobal().toString (aHd.GetStorageType());
    590     QString hardDiskType = aItem ? aItem->getDiskType() :
     590    QString hardDiskType = aItem ? aItem->diskType() :
    591591        vboxGlobal().hardDiskTypeString (aHd);
    592592
    593593    QString usage;
    594594    if (aItem)
    595         usage = aItem->getUsage();
     595        usage = aItem->usage();
    596596    else if (!machineId.isNull())
    597597        usage = vbox.GetMachine (machineId).GetName();
    598598
    599     QUuid snapshotId = aItem ? aItem->getUuid() : aHd.GetSnapshotId();
     599    QUuid snapshotId = aItem ? aItem->uuid() : aHd.GetSnapshotId();
    600600    QString snapshotName;
    601601    if (aItem)
    602         snapshotName = aItem->getSnapshotName();
     602        snapshotName = aItem->snapshotName();
    603603    else if (!machineId.isNull() && !snapshotId.isNull())
    604604    {
     
    664664                                                   DiskImageItem *aItem)
    665665{
    666     QString location = aItem ? aItem->getPath() :
     666    QString location = aItem ? aItem->path() :
    667667        QDir::convertSeparators (QFileInfo (aCd.GetFilePath()).absoluteFilePath());
    668     QUuid uuid = aItem ? aItem->getUuid() : aCd.GetId();
     668    QUuid uuid = aItem ? aItem->uuid() : aCd.GetId();
    669669    QString usage;
    670670    if (aItem)
    671         usage = aItem->getTotalUsage();
     671        usage = aItem->totalUsage();
    672672    else
    673673    {
     
    730730                                                   DiskImageItem *aItem)
    731731{
    732     QString location = aItem ? aItem->getPath() :
     732    QString location = aItem ? aItem->path() :
    733733        QDir::convertSeparators (QFileInfo (aFd.GetFilePath()).absoluteFilePath());
    734     QUuid uuid = aItem ? aItem->getUuid() : aFd.GetId();
     734    QUuid uuid = aItem ? aItem->uuid() : aFd.GetId();
    735735    QString usage;
    736736    if (aItem)
    737         usage = aItem->getTotalUsage();
     737        usage = aItem->totalUsage();
    738738    else
    739739    {
     
    961961        case VBoxDefs::HD:
    962962            item = createHdItem (mHdsTree, aMedia);
    963             if (item->getUuid() == mHdSelectedId)
     963            if (item->uuid() == mHdSelectedId)
    964964            {
    965965                setCurrentItem (mHdsTree, item);
     
    969969        case VBoxDefs::CD:
    970970            item = createCdItem (mCdsTree, aMedia);
    971             if (item->getUuid() == mCdSelectedId)
     971            if (item->uuid() == mCdSelectedId)
    972972            {
    973973                setCurrentItem (mCdsTree, item);
     
    977977        case VBoxDefs::FD:
    978978            item = createFdItem (mFdsTree, aMedia);
    979             if (item->getUuid() == mFdSelectedId)
     979            if (item->uuid() == mFdSelectedId)
    980980            {
    981981                setCurrentItem (mFdsTree, item);
     
    11401140
    11411141    QString dir;
    1142     if (item && item->getStatus() == VBoxMedia::Ok)
    1143         dir = QFileInfo (item->getPath().trimmed()).absolutePath ();
     1142    if (item && item->status() == VBoxMedia::Ok)
     1143        dir = QFileInfo (item->path().trimmed()).absolutePath ();
    11441144
    11451145    if (dir.isEmpty())
     
    11961196    CVirtualBox vbox = vboxGlobal().virtualBox();
    11971197
    1198     QUuid uuid = item->getUuid();
     1198    QUuid uuid = item->uuid();
    11991199    AssertMsg (!uuid.isNull(), ("Current item must have uuid\n"));
    12001200
    1201     QString src = item->getPath().trimmed();
     1201    QString src = item->path().trimmed();
    12021202    VBoxDefs::DiskType type = currentTreeWidgetType();
    12031203
     
    12111211                /// enable image deletion for  them as well (use
    12121212                /// GetStorageType() to define the correct cast).
    1213                 CHardDisk disk = item->getMedia().disk;
     1213                CHardDisk disk = item->media().disk;
    12141214                if (disk.GetStorageType() == KHardDiskStorageType_VirtualDiskImage &&
    12151215                    disk.GetParent().isNull() && /* must not be differencing (see below) */
    1216                     item->getStatus() == VBoxMedia::Ok)
     1216                    item->status() == VBoxMedia::Ok)
    12171217                {
    12181218                    int rc = vboxProblem().confirmHardDiskImageDeletion (this, src);
     
    12731273    CVirtualBox vbox = vboxGlobal().virtualBox();
    12741274
    1275     QUuid itemId = item->getUuid();
     1275    QUuid itemId = item->uuid();
    12761276    AssertMsg (!itemId.isNull(), ("Current item must have uuid\n"));
    12771277
     
    12811281        case VBoxDefs::HD:
    12821282            {
    1283                 CHardDisk hd = item->getMedia().disk;
     1283                CHardDisk hd = item->media().disk;
    12841284                QUuid machineId = hd.GetMachineId();
    12851285                if (vboxProblem().confirmReleaseImage (this,
     
    12871287                {
    12881288                    releaseDisk (machineId, itemId, VBoxDefs::HD);
    1289                     VBoxMedia media (item->getMedia());
     1289                    VBoxMedia media (item->media());
    12901290                    media.status = hd.GetAccessible() ? VBoxMedia::Ok :
    12911291                        hd.isOk() ? VBoxMedia::Inaccessible :
     
    12981298        case VBoxDefs::CD:
    12991299            {
    1300                 QString usage = item->getTotalUsage();
     1300                QString usage = item->totalUsage();
    13011301                if (vboxProblem().confirmReleaseImage (this, usage))
    13021302                {
     
    13091309
    13101310                    CDVDImage cd = vbox.GetDVDImage (itemId);
    1311                     VBoxMedia media (item->getMedia());
     1311                    VBoxMedia media (item->media());
    13121312                    media.status = cd.GetAccessible() ? VBoxMedia::Ok :
    13131313                        cd.isOk() ? VBoxMedia::Inaccessible :
     
    13191319        case VBoxDefs::FD:
    13201320            {
    1321                 QString usage = item->getTotalUsage();
     1321                QString usage = item->totalUsage();
    13221322                if (vboxProblem().confirmReleaseImage (this, usage))
    13231323                {
     
    13301330
    13311331                    CFloppyImage fd = vbox.GetFloppyImage (itemId);
    1332                     VBoxMedia media (item->getMedia());
     1332                    VBoxMedia media (item->media());
    13331333                    media.status = fd.GetAccessible() ? VBoxMedia::Ok :
    13341334                        fd.isOk() ? VBoxMedia::Inaccessible :
     
    15581558    bool notInEnum      = !vboxGlobal().isMediaEnumerationStarted();
    15591559    bool modifyEnabled  = notInEnum &&
    1560                           item &&  item->getUsage().isNull() &&
    1561                           (item->childCount() == 0) && !item->getPath().isNull();
    1562     bool releaseEnabled = item && !item->getUsage().isNull() &&
    1563                           item->getSnapshotUsage().isNull() &&
     1560                          item &&  item->usage().isNull() &&
     1561                          (item->childCount() == 0) && !item->path().isNull();
     1562    bool releaseEnabled = item && !item->usage().isNull() &&
     1563                          item->snapshotUsage().isNull() &&
    15641564                          checkImage (item) &&
    15651565                          !item->parent() && (item->childCount() == 0) &&
    1566                           item->getSnapshotName().isNull();
     1566                          item->snapshotName().isNull();
    15671567    bool newEnabled     = notInEnum &&
    15681568                          currentTreeWidget() == mHdsTree ? true : false;
     
    15791579        bool selectEnabled = item && !item->parent() &&
    15801580                             (!newEnabled ||
    1581                                 (item->getUsage().isNull() ||
    1582                                  item->getMachineId() == mTargetVMId));
     1581                                (item->usage().isNull() ||
     1582                                 item->machineId() == mTargetVMId));
    15831583
    15841584        mButtonBox->button (QDialogButtonBox::Ok)->setEnabled (selectEnabled);
     
    15891589        if (item->treeWidget() == mHdsTree)
    15901590        {
    1591             mHdsPane1->setText (item->getInformation (item->getPath(), true, "end"));
    1592             mHdsPane2->setText (item->getInformation (item->getDiskType(), false));
    1593             mHdsPane3->setText (item->getInformation (item->getStorageType(), false));
    1594             mHdsPane4->setText (item->getInformation (item->getUsage()));
    1595             mHdsPane5->setText (item->getInformation (item->getSnapshotName()));
     1591            mHdsPane1->setText (item->information (item->path(), true, "end"));
     1592            mHdsPane2->setText (item->information (item->diskType(), false));
     1593            mHdsPane3->setText (item->information (item->storageType(), false));
     1594            mHdsPane4->setText (item->information (item->usage()));
     1595            mHdsPane5->setText (item->information (item->snapshotName()));
    15961596        }
    15971597        else if (item->treeWidget() == mCdsTree)
    15981598        {
    1599             mCdsPane1->setText (item->getInformation (item->getPath(), true, "end"));
    1600             mCdsPane2->setText (item->getInformation (item->getTotalUsage()));
     1599            mCdsPane1->setText (item->information (item->path(), true, "end"));
     1600            mCdsPane2->setText (item->information (item->totalUsage()));
    16011601        }
    16021602        else if (item->treeWidget() == mFdsTree)
    16031603        {
    1604             mFdsPane1->setText (item->getInformation (item->getPath(), true, "end"));
    1605             mFdsPane2->setText (item->getInformation (item->getTotalUsage()));
     1604            mFdsPane1->setText (item->information (item->path(), true, "end"));
     1605            mFdsPane2->setText (item->information (item->totalUsage()));
    16061606        }
    16071607    }
     
    18661866    while (*iterator)
    18671867    {
    1868         if ((*iterator)->getUuid() == aId)
     1868        if ((*iterator)->uuid() == aId)
    18691869            return *iterator;
    18701870        ++iterator;
     
    18791879    while (*iterator)
    18801880    {
    1881         if ((*iterator)->getStatus() == aStatus)
     1881        if ((*iterator)->status() == aStatus)
    18821882            return *iterator;
    18831883        ++iterator;
     
    18881888bool VBoxDiskImageManagerDlg::checkImage (DiskImageItem *aItem)
    18891889{
    1890     QUuid itemId = aItem ? aItem->getUuid() : QUuid();
     1890    QUuid itemId = aItem ? aItem->uuid() : QUuid();
    18911891    if (itemId.isNull())
    18921892        return false;
     
    18981898        case VBoxDefs::HD:
    18991899            {
    1900                 CHardDisk hd = aItem->getMedia().disk;
     1900                CHardDisk hd = aItem->media().disk;
    19011901                QUuid machineId = hd.GetMachineId();
    19021902                if (machineId.isNull() ||
     
    20272027    di = toDiskImageItem (mHdsTree->currentItem());
    20282028    if (mHdSelectedId.isNull())
    2029         mHdSelectedId = di ? di->getUuid() : QUuid();
     2029        mHdSelectedId = di ? di->uuid() : QUuid();
    20302030
    20312031    di = toDiskImageItem (mCdsTree->currentItem());
    20322032    if (mCdSelectedId.isNull())
    2033         mCdSelectedId = di ? di->getUuid() : QUuid();
     2033        mCdSelectedId = di ? di->uuid() : QUuid();
    20342034
    20352035    di = toDiskImageItem (mFdsTree->currentItem());
    20362036    if (mFdSelectedId.isNull())
    2037         mFdSelectedId = di ? di->getUuid() : QUuid();
     2037        mFdSelectedId = di ? di->uuid() : QUuid();
    20382038
    20392039    /* Finally, clear all lists */
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