MCPcopy Create free account
hub / github.com/IgKh/katvan / exportPdf

Method exportPdf

shell/katvan_mainwindow.cpp:867–880  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

865}
866
867void MainWindow::exportPdf()
868{
869 if (!verifyCanExport(ExportType::PDF)) {
870 return;
871 }
872
873 QString targetFileName = utils::showPdfExportDialog(this, d_currentFileName);
874 if (targetFileName.isEmpty()) {
875 return;
876 }
877
878 qApp->setOverrideCursor(Qt::WaitCursor);
879 d_driver->exportToPdf(targetFileName);
880}
881
882void MainWindow::goToLine()
883{

Callers

nothing calls this directly

Calls 2

showPdfExportDialogFunction · 0.85
exportToPdfMethod · 0.45

Tested by

no test coverage detected