Changeset 92587 in vbox for trunk/src/VBox
- Timestamp:
- Nov 24, 2021 7:47:55 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148471
- 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 168 168 { 169 169 if (m_pLocationLabel) 170 m_pLocationLabel->setText(UIFileManager::tr("Guest File System "));170 m_pLocationLabel->setText(UIFileManager::tr("Guest File System:")); 171 171 UIFileManagerTable::retranslateUi(); 172 172 } … … 263 263 m_comGuestSession.DirectoryRemoveRecursive(strPath, aFlags); 264 264 } 265 266 265 } 267 266 } … … 302 301 return false; 303 302 } 304 305 303 item->setPath(newPath); 306 304 return true; … … 588 586 if (selectedObjects.size() == 0) 589 587 return; 590 //UIGuestDirectoryDiskUsageComputer *directoryThread = 0;591 592 /* if the selection include a directory or it is a multiple selection the create a worker thread593 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 // }608 588 609 589 m_pPropertiesDialog->setWindowTitle(UIFileManager::tr("Properties")); … … 611 591 m_pPropertiesDialog->execute(); 612 592 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 622 593 delete m_pPropertiesDialog; 623 594 m_pPropertiesDialog = 0; 624 625 595 } 626 596 -
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerHostTable.cpp
r86233 r92587 167 167 item->setIsOpened(false); 168 168 } 169 170 169 } 171 170 … … 173 172 { 174 173 if (m_pLocationLabel) 175 m_pLocationLabel->setText(UIFileManager::tr("Host File System "));174 m_pLocationLabel->setText(UIFileManager::tr("Host File System:")); 176 175 UIFileManagerTable::retranslateUi(); 177 176 } … … 207 206 m_pActionPool->action(UIActionIndex_M_FileManager_S_Host_Cut)->setVisible(false); 208 207 m_pActionPool->action(UIActionIndex_M_FileManager_S_Host_Paste)->setVisible(false); 209 210 } 211 208 } 212 209 setSelectionDependentActionsEnabled(false); 213 210 } … … 267 264 bool deleteSuccess = itemToDelete.removeRecursively(); 268 265 269 270 266 if (!deleteSuccess) 267 emit sigLogOutput(QString(item->path()).append(" could not be deleted"), FileManagerLogType_Error); 271 268 } 272 269 -
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerTable.cpp
r90967 r92587 386 386 , m_pathSeparator('/') 387 387 { 388 float fFontMult = 1. 2f;388 float fFontMult = 1.f; 389 389 QFont mFont = font(); 390 390 if (mFont.pixelSize() == -1) … … 437 437 QString strFolder = UIPathOperations::removeTrailingDelimiters(folderList.at(i)).replace('/', m_pathSeparator); 438 438 QString strWord = QString("<a href=\"%1\" style=\"color:black;text-decoration:none;\">%2</a>").arg(strPathUpto[i]).arg(strFolder); 439 439 440 if (i < folderList.size() - 1) 440 441 { … … 446 447 if (iWidth < width()) 447 448 strLabelText.prepend(strWord); 448 449 449 } 450 450 setText(strLabelText); … … 851 851 setSelectionDependentActionsEnabled(false); 852 852 853 /** @todo check if we really need this and if not remove it */ 854 //m_pModel->signalUpdate(); 853 m_pView->scrollToTop(); 855 854 } 856 855
Note:
See TracChangeset
for help on using the changeset viewer.