VirtualBox

Changeset 92587 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Nov 24, 2021 7:47:55 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
148471
Message:

FE/Qt: bugref:6699 Small fixes in file manager code.

Location:
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerGuestTable.cpp

    r92544 r92587  
    168168{
    169169    if (m_pLocationLabel)
    170         m_pLocationLabel->setText(UIFileManager::tr("Guest File System"));
     170        m_pLocationLabel->setText(UIFileManager::tr("Guest File System:"));
    171171    UIFileManagerTable::retranslateUi();
    172172}
     
    263263            m_comGuestSession.DirectoryRemoveRecursive(strPath, aFlags);
    264264        }
    265 
    266265    }
    267266}
     
    302301        return false;
    303302    }
    304 
    305303    item->setPath(newPath);
    306304    return true;
     
    588586    if (selectedObjects.size() == 0)
    589587        return;
    590     //UIGuestDirectoryDiskUsageComputer *directoryThread = 0;
    591 
    592     /* if the selection include a directory or it is a multiple selection the create a worker thread
    593        to compute total size of the selection (recusively) */
    594     // bool createWorkerThread = (selectedObjects.size() > 1);
    595     // if (!createWorkerThread &&
    596     //     fileType(m_comGuestSession.FsObjQueryInfo(selectedObjects[0], true)) == KFsObjType_Directory)
    597     //     createWorkerThread = true;
    598     // if (createWorkerThread)
    599     // {
    600     //     directoryThread = new UIGuestDirectoryDiskUsageComputer(this, selectedObjects, m_comGuestSession);
    601     //     if (directoryThread)
    602     //     {
    603     //         connect(directoryThread, &UIGuestDirectoryDiskUsageComputer::sigResultUpdated,
    604     //                 this, &UIFileManagerGuestTable::sltReceiveDirectoryStatistics/*, Qt::DirectConnection*/);
    605     //         directoryThread->start();
    606     //     }
    607     // }
    608588
    609589    m_pPropertiesDialog->setWindowTitle(UIFileManager::tr("Properties"));
     
    611591    m_pPropertiesDialog->execute();
    612592
    613     // if (directoryThread)
    614     // {
    615     //     if (directoryThread->isRunning())
    616     //         directoryThread->stopRecursion();
    617     //     disconnect(directoryThread, &UIGuestDirectoryDiskUsageComputer::sigResultUpdated,
    618     //                this, &UIFileManagerGuestTable::sltReceiveDirectoryStatistics/*, Qt::DirectConnection*/);
    619     // }
    620 
    621 
    622593    delete m_pPropertiesDialog;
    623594    m_pPropertiesDialog = 0;
    624 
    625595}
    626596
  • trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerHostTable.cpp

    r86233 r92587  
    167167        item->setIsOpened(false);
    168168    }
    169 
    170169}
    171170
     
    173172{
    174173    if (m_pLocationLabel)
    175         m_pLocationLabel->setText(UIFileManager::tr("Host File System"));
     174        m_pLocationLabel->setText(UIFileManager::tr("Host File System:"));
    176175    UIFileManagerTable::retranslateUi();
    177176}
     
    207206        m_pActionPool->action(UIActionIndex_M_FileManager_S_Host_Cut)->setVisible(false);
    208207        m_pActionPool->action(UIActionIndex_M_FileManager_S_Host_Paste)->setVisible(false);
    209 
    210     }
    211 
     208    }
    212209    setSelectionDependentActionsEnabled(false);
    213210}
     
    267264    bool deleteSuccess = itemToDelete.removeRecursively();
    268265
    269      if (!deleteSuccess)
    270          emit sigLogOutput(QString(item->path()).append(" could not be deleted"), FileManagerLogType_Error);
     266    if (!deleteSuccess)
     267        emit sigLogOutput(QString(item->path()).append(" could not be deleted"), FileManagerLogType_Error);
    271268}
    272269
  • trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerTable.cpp

    r90967 r92587  
    386386    , m_pathSeparator('/')
    387387{
    388     float fFontMult = 1.2f;
     388    float fFontMult = 1.f;
    389389    QFont mFont = font();
    390390    if (mFont.pixelSize() == -1)
     
    437437        QString strFolder = UIPathOperations::removeTrailingDelimiters(folderList.at(i)).replace('/', m_pathSeparator);
    438438        QString strWord = QString("<a href=\"%1\" style=\"color:black;text-decoration:none;\">%2</a>").arg(strPathUpto[i]).arg(strFolder);
     439
    439440        if (i < folderList.size() - 1)
    440441        {
     
    446447        if (iWidth < width())
    447448            strLabelText.prepend(strWord);
    448 
    449449    }
    450450    setText(strLabelText);
     
    851851    setSelectionDependentActionsEnabled(false);
    852852
    853     /** @todo check if we really need this and if not remove it */
    854     //m_pModel->signalUpdate();
     853    m_pView->scrollToTop();
    855854}
    856855
Note: See TracChangeset for help on using the changeset viewer.

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