Add generic user-provided notes to save along with the capture.

* In future one of the notes items would be for gathered hardware info.
  Not automatically, but with one button press the full configuration
  can be embedded.
This commit is contained in:
baldurk
2017-11-16 13:23:43 +00:00
parent 19974e1771
commit 4a4089f316
18 changed files with 502 additions and 0 deletions
+10
View File
@@ -1552,6 +1552,16 @@ void MainWindow::on_action_Errors_and_Warnings_triggered()
ui->toolWindowManager->addToolWindow(debugMessages, mainToolArea());
}
void MainWindow::on_action_Comments_triggered()
{
QWidget *comments = m_Ctx.GetCommentView()->Widget();
if(ui->toolWindowManager->toolWindows().contains(comments))
ToolWindowManager::raiseToolWindow(comments);
else
ui->toolWindowManager->addToolWindow(comments, mainToolArea());
}
void MainWindow::on_action_Statistics_Viewer_triggered()
{
QWidget *stats = m_Ctx.GetStatisticsViewer()->Widget();