Changeset 92743 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Dec 3, 2021 6:20:38 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148650
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/logviewer
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/logviewer/UIVMLogViewerDialog.cpp ¶
r89585 r92743 71 71 UIVMLogViewerDialog::~UIVMLogViewerDialog() 72 72 { 73 UIVMLogViewerWidget *pWidget = qobject_cast<UIVMLogViewerWidget*>(widget());74 if (pWidget)75 pWidget->setDialogBeingClosed(true);76 73 } 77 74 … … 150 147 /* Create widget: */ 151 148 UIVMLogViewerWidget *pWidget = new UIVMLogViewerWidget(EmbedTo_Dialog, m_pActionPool, true /* show toolbar */, m_comMachine, this); 149 /* Release the CMachine reference as we don't need it anymore. Doing it during dtor causes problems since xcom might be gone already: */ 150 m_comMachine.detach(); 152 151 if (pWidget) 153 152 { -
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/logviewer/UIVMLogViewerWidget.cpp ¶
r89623 r92743 210 210 , m_pCornerButton(0) 211 211 , m_pMachineSelectionMenu(0) 212 , m_f DialogBeingClosed(false)212 , m_fCommitDataSignalReceived(false) 213 213 { 214 214 /* Prepare VM Log-Viewer: */ … … 217 217 if (!comMachine.isNull()) 218 218 setMachines(QVector<QUuid>(1, comMachine.GetId())); 219 connect(&uiCommon(), &UICommon::sigAskToCommitData, 220 this, &UIVMLogViewerWidget::sltCommitDataSignalReceived); 219 221 } 220 222 … … 363 365 } 364 366 365 void UIVMLogViewerWidget::setDialogBeingClosed(bool fFlag)366 {367 m_fDialogBeingClosed = fFlag;368 }369 370 367 bool UIVMLogViewerWidget::shouldBeMaximized() const 371 368 { … … 375 372 void UIVMLogViewerWidget::saveOptions() 376 373 { 377 gEDataManager->setLogViweverOptions(m_font, m_bWrapLines, m_bShowLineNumbers); 374 if (!m_fCommitDataSignalReceived) 375 gEDataManager->setLogViweverOptions(m_font, m_bWrapLines, m_bShowLineNumbers); 378 376 } 379 377 380 378 void UIVMLogViewerWidget::savePanelVisibility() 381 379 { 382 if (m_f DialogBeingClosed)380 if (m_fCommitDataSignalReceived) 383 381 return; 384 382 /* Save a list of currently visible panels: */ … … 679 677 list << pButton->machineId(); 680 678 removeLogViewerPages(list); 679 } 680 681 void UIVMLogViewerWidget::sltCommitDataSignalReceived() 682 { 683 m_fCommitDataSignalReceived = true; 681 684 } 682 685 -
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/logviewer/UIVMLogViewerWidget.h ¶
r89607 r92743 92 92 QFont currentFont() const; 93 93 94 /** Sets m_fDialogBeingClosed. */95 void setDialogBeingClosed(bool fFlag);96 97 94 protected: 98 95 … … 144 141 void sltCloseMachineLogs(); 145 142 void sltTabCloseButtonClick(); 143 void sltCommitDataSignalReceived(); 146 144 147 145 private: … … 252 250 QIToolButton *m_pCornerButton; 253 251 UIMachineListMenu *m_pMachineSelectionMenu; 254 /** This is set to true by the parent dialog. This is necessary not to save 255 * visible panel list during destruction since they are hidden automatically during that. */ 256 bool m_fDialogBeingClosed; 252 /** All extra data saves are done dynamically (as an option changes etc.). The this flag is true 253 * we should not try to save anything to extra data anymore. */ 254 bool m_fCommitDataSignalReceived; 255 257 256 friend class UIVMLogViewerFilterPanel; 258 257 friend class UIVMLogViewerPanel;
Note:
See TracChangeset
for help on using the changeset viewer.