/* Copyright (c) 2008-2018 Jan W. Krieger (, ) This software is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (LGPL) as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License (LGPL) for more details. You should have received a copy of the GNU Lesser General Public License (LGPL) along with this program. If not, see . */ /** \file jkqtpbaseplotter.cpp * \ingroup jkqtpplotterclasses */ #include #if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)) #include #include #else #include #endif #include #include #include #include #include #include "jkqtplotter/jkqtpbaseplotter.h" #include "jkqtplottergui/jkqtpgraphsmodel.h" #include "jkqtplottergui/jkqtpenhancedtableview.h" #include #include #include #include #include #include #include #include #include #include #ifdef QFWIDLIB_LIBRARY # include "qftools.h" #endif #include "jkqtplotter/jkqtpgraphsboxplot.h" #include "jkqtplotter/jkqtpgraphsbarchart.h" #include "jkqtplotter/jkqtpgraphsfilledcurve.h" #include "jkqtplotter/jkqtpgraphsimpulses.h" #include "jkqtplotter/jkqtpgraphs.h" #include "jkqtplotter/jkqtpgraphsgeometric.h" #include "jkqtplotter/jkqtpgraphsimage.h" static QString globalUserSettigsFilename=""; static QString globalUserSettigsPrefix=""; static QList jkqtpPaintDeviceAdapters; static QList jkqtpSaveDataAdapters; void initJKQtBasePlotterResources() { Q_INIT_RESOURCE(jkqtpbaseplotter); initJKQtMathTextResources(); } JKQtBasePlotter::JKQtBasePlotter() { initJKQtBasePlotterResources(); } void JKQtBasePlotter::setDefaultJKQtBasePrinterUserSettings(QString userSettigsFilename, QString userSettigsPrefix) { globalUserSettigsFilename=userSettigsFilename; globalUserSettigsPrefix=userSettigsPrefix; } void JKQtBasePlotter::registerPaintDeviceAdapter(JKQtBasePlotter::JKQTPPaintDeviceAdapter *adapter) { jkqtpPaintDeviceAdapters.append(adapter); } void JKQtBasePlotter::deregisterPaintDeviceAdapter(JKQtBasePlotter::JKQTPPaintDeviceAdapter *adapter) { if (jkqtpPaintDeviceAdapters.contains(adapter)) jkqtpPaintDeviceAdapters.removeAll(adapter); } bool JKQtBasePlotter::registerSaveDataAdapter(JKQtBasePlotter::JKQTPSaveDataAdapter *adapter) { if (adapter){ QString format=adapter->getFilter(); for (int i=0; igetFilter()==format) { return false; } } jkqtpSaveDataAdapters.append(adapter); return true; } return false; } bool JKQtBasePlotter::deregisterSaveDataAdapter(JKQtBasePlotter::JKQTPSaveDataAdapter *adapter) { if (jkqtpSaveDataAdapters.contains(adapter)) jkqtpSaveDataAdapters.removeAll(adapter); return true; } JKQtBasePlotter::textSizeData JKQtBasePlotter::getTextSizeDetail(const QFont &fm, const QString &text, QPainter& painter) { return getTextSizeDetail(fm.family(), fm.pointSizeF(), text, painter); } JKQtBasePlotter::textSizeData JKQtBasePlotter::getTextSizeDetail(const QString &fontName, double fontSize, const QString &text, QPainter& painter) { JKQtBasePlotter::textSizeKey dh(fontName, fontSize, text, painter.device()); if (tbrh.contains(dh)) return tbrh[dh]; JKQtBasePlotter::textSizeData d; mathText.set_fontRoman(fontName); mathText.set_fontSize(fontSize); mathText.parse(text); mathText.getSizeDetail(painter, d.width, d.ascent, d.descent, d.strikeoutPos); tbrh[dh]=d; //qDebug()<<"+++ textsize hash size: "<setToolTip("Save plot as image file (PDF, PS; PNG, ...)."); actSaveData=new QAction(QIcon(":/JKQTPlotter/jkqtp_savedata.png"), "Save Data", this); actSaveData->setToolTip("Save Data of the plot as file (CSV, ...)."); actCopyData=new QAction(QIcon(":/JKQTPlotter/jkqtp_copydata.png"), "Copy Data", this); actCopyData->setToolTip("Copy Data of the plot to the clipboard to be pasted into Excel etc."); actCopyMatlab=new QAction(QIcon(":/JKQTPlotter/jkqtp_copymatlab.png"), "Copy Data to Matlab", this); actCopyMatlab->setToolTip("Copy Data of the plot to the clipboard in Matlab script format."); actCopyPixelImage=new QAction(QIcon(":/JKQTPlotter/jkqtp_copyimg.png"), "Copy Image", this); actCopyPixelImage->setToolTip("Copy the plot as a pixel image to the clipboard"); actSavePDF=new QAction(QIcon(":/JKQTPlotter/jkqtp_savepdf.png"), "Save P&DF", this); actSavePDF->setToolTip("Save as PDF"); //toolbar->addAction(actSavePDF); #if (QT_VERSION < QT_VERSION_CHECK(5, 0, 0)) actSavePS=new QAction(QIcon(":/JKQTPlotter/jkqtp_saveps.png"), "Save P&S", this); actSavePS->setToolTip("Save as PostScript"); //toolbar->addAction(actSavePS); #endif actSaveSVG=new QAction(QIcon(":/JKQTPlotter/jkqtp_savesvg.png"), "Save S&VG", this); actSaveSVG->setToolTip("Save as Scalable Vector Graphics (SVG)"); //toolbar->addAction(actSaveSVG); actSavePix=new QAction(QIcon(":/JKQTPlotter/jkqtp_savepix.png"), "Save &Image", this); actSavePix->setToolTip("Save as Pixel Image (PNG, JPEG, TIFF ...)"); //toolbar->addAction(actSavePix); actPrint=new QAction(QIcon(":/JKQTPlotter/jkqtp_print.png"), "&Print", this); actPrint->setToolTip("Print"); //toolbar->addSeparator(); actSaveCSV=new QAction(QIcon(":/JKQTPlotter/jkqtp_savecsv.png"), "Save &CSV", this); actSaveCSV->setToolTip("Save the data which is used for the plot as Comma Separated Values (CSV)"); //toolbar->addAction(actSaveCSV); //toolbar->addSeparator(); actZoomAll=new QAction(QIcon(":/JKQTPlotter/jkqtp_zoomall.png"), "Zoom &All", this); actZoomAll->setToolTip("Zoom to view all data"); actZoomIn=new QAction(QIcon(":/JKQTPlotter/jkqtp_zoomin.png"), "Zoom &In", this); actZoomIn->setToolTip("Zoom in around the center of the plot"); actZoomOut=new QAction(QIcon(":/JKQTPlotter/jkqtp_zoomout.png"), "Zoom &Out", this); actZoomOut->setToolTip("Zoom out"); actShowPlotData=new QAction(QIcon(":/JKQTPlotter/jkqtp_showplotdata.png"), "&Show Plot Data", this); actShowPlotData->setToolTip("opens a dialog that contains all data used for the plot in a table."); connect(actSavePlot, SIGNAL(triggered()), this, SLOT(saveImage())); connect(actSaveData, SIGNAL(triggered()), this, SLOT(saveData())); connect(actCopyData, SIGNAL(triggered()), this, SLOT(copyData())); connect(actCopyPixelImage, SIGNAL(triggered()), this, SLOT(copyPixelImage())); connect(actCopyMatlab, SIGNAL(triggered()), this, SLOT(copyDataMatlab())); connect(actShowPlotData, SIGNAL(triggered()), this, SLOT(showPlotData())); connect(actSavePDF, SIGNAL(triggered()), this, SLOT(saveAsPDF())); #if (QT_VERSION < QT_VERSION_CHECK(5, 0, 0)) connect(actSavePS, SIGNAL(triggered()), this, SLOT(saveAsPS())); #endif connect(actSaveSVG, SIGNAL(triggered()), this, SLOT(saveAsSVG())); connect(actSavePix, SIGNAL(triggered()), this, SLOT(saveAsPixelImage())); connect(actPrint, SIGNAL(triggered()), this, SLOT(print())); connect(actSaveCSV, SIGNAL(triggered()), this, SLOT(saveAsCSV())); connect(actZoomAll, SIGNAL(triggered()), this, SLOT(zoomToFit())); connect(actZoomIn, SIGNAL(triggered()), this, SLOT(zoomIn())); connect(actZoomOut, SIGNAL(triggered()), this, SLOT(zoomOut())); resize(400,300); #ifdef USE_XITS_FONTS mathText.useXITS(); #endif } JKQtBasePlotter::~JKQtBasePlotter(){ clearGraphs(false); if (datastoreInternal && datastore!=nullptr) delete datastore; delete xAxis; delete yAxis; } void JKQtBasePlotter::setGrid(bool val) { xAxis->set_drawGrid(val); yAxis->set_drawGrid(val); }; void JKQtBasePlotter::useExternalDatastore(JKQTPdatastore* newStore){ if (datastoreInternal && datastore!=nullptr) { delete datastore; datastore=nullptr; } datastore=newStore; datastoreInternal=false; }; void JKQtBasePlotter::useAsInternalDatastore(JKQTPdatastore* newStore){ if (datastoreInternal && datastore!=nullptr) { delete datastore; datastore=nullptr; } datastore=newStore; datastoreInternal=true; if (emitPlotSignals) emit plotUpdated(); } void JKQtBasePlotter::useInternalDatastore(){ if (!datastoreInternal) { datastore=new JKQTPdatastore(); datastoreInternal=true; } if (emitPlotSignals) emit plotUpdated(); } void JKQtBasePlotter::forceInternalDatastore(){ if (datastoreInternal && datastore!=nullptr) { delete datastore; datastore=nullptr; } datastore=new JKQTPdatastore(); datastoreInternal=true; if (emitPlotSignals) emit plotUpdated(); } void JKQtBasePlotter::initSettings() { useClipping=true; //doDrawing=true; maintainAspectRatio=def_maintainAspectRatio=false; aspectRatio=def_aspectRatio=1; maintainAxisAspectRatio=def_maintainAxisAspectRatio=false; axisAspectRatio=def_axisAspectRatio=1; def_useAntiAliasingForSystem=false; useAntiAliasingForSystem=def_useAntiAliasingForSystem; def_useAntiAliasingForGraphs=true; useAntiAliasingForGraphs=def_useAntiAliasingForGraphs; def_useAntiAliasingForText=true; useAntiAliasingForText=def_useAntiAliasingForText; gridPrinting=false; gridPrintingList.clear(); gridPrintingCurrentX=0; gridPrintingCurrentY=0; def_plotBorderLeft=5; iplotBorderLeft_nographs=iplotBorderLeft=plotBorderLeft=def_plotBorderLeft; def_plotBorderRight=5; iplotBorderRight_nographs=iplotBorderRight=plotBorderRight=def_plotBorderRight; def_plotBorderTop=5; iplotBorderTop_nographs=iplotBorderTop=plotBorderTop=def_plotBorderTop; def_plotBorderBottom=5; iplotBorderBottom_nographs=iplotBorderBottom=plotBorderBottom=def_plotBorderBottom; //plotWidth=700; //plotHeight=150; xAxis->setRange(-10, 10); yAxis->setRange(-10, 10); def_keyFont="Arial"; keyFont=def_keyFont; def_keyFontSize=9; keyFontSize=def_keyFontSize; def_keyXOffset=0.5; keyXOffset=def_keyXOffset; def_keyYOffset=0.5; keyYOffset=def_keyYOffset; def_keyXSeparation=0.75; keyXSeparation=def_keyXSeparation; def_keyYSeparation=0.75; keyYSeparation=def_keyYSeparation; def_keyFrameColor=QColor("black"); keyFrameColor=def_keyFrameColor; def_keyFrameWidth=1; keyFrameWidth=def_keyFrameWidth; def_showKeyFrame=true; showKeyFrame=def_showKeyFrame; def_keyBackgroundColor=QColor("white"); keyBackgroundColor=def_keyBackgroundColor; def_showKey=true; showKey=def_showKey; def_key_item_width=20; key_item_width=def_key_item_width; def_key_item_height=2.2; key_item_height=def_key_item_height; def_key_line_length=3; key_line_length=def_key_line_length; def_keyXMargin=0.5; keyXMargin=def_keyXMargin; def_keyYMargin=0.5; keyYMargin=def_keyYMargin; def_keyPosition=JKQTPkeyInsideTopRight; keyPosition=def_keyPosition; def_keyLayout=JKQTPkeyLayoutOneColumn; keyLayout=def_keyLayout; def_keyAutosize=true; keyAutosize=def_keyAutosize; def_exportBackgroundColor=QColor("white"); exportBackgroundColor=def_exportBackgroundColor; def_backgroundColor=QColor("white"); backgroundColor=def_backgroundColor; def_plotBackgroundColor=QColor("white"); plotBackgroundColor=def_plotBackgroundColor; def_graphColor=QColor("red"); graphColor=def_graphColor; manyGraphsColorCount=15; def_manyGraphsColor[0]=graphColor; def_manyGraphsColor[1]=QColor("green"); def_manyGraphsColor[2]=QColor("blue"); def_manyGraphsColor[3]=QColor("fuchsia"); def_manyGraphsColor[4]=QColor("darkorange"); def_manyGraphsColor[5]=QColor("navy"); def_manyGraphsColor[6]=QColor("firebrick"); def_manyGraphsColor[7]=QColor("darkgreen"); def_manyGraphsColor[8]=QColor("darkmagenta"); def_manyGraphsColor[9]=QColor("darkgreen"); def_manyGraphsColor[10]=QColor("darkslateblue"); def_manyGraphsColor[11]=QColor("maroon"); def_manyGraphsColor[12]=QColor("indianred"); def_manyGraphsColor[13]=QColor("darkolivegreen"); def_manyGraphsColor[14]=QColor("mediumpurple"); def_manyGraphsColor[15]=QColor("darkcyan"); for (int i=0; idelta()/120.0<<": "<(round(static_cast(plotWidth)/2.0-static_cast(plotWidth)/(2.0*factor)))); double xmax=p2x(static_cast(round(static_cast(plotWidth)/2.0+static_cast(plotWidth)/(2.0*factor)))); double ymin=p2y(static_cast(round(static_cast(plotHeight)/2.0+static_cast(plotHeight)/(2.0*factor)))); double ymax=p2y(static_cast(round(static_cast(plotHeight)/2.0-static_cast(plotHeight)/(2.0*factor)))); xAxis->setRange(xmin, xmax); yAxis->setRange(ymin, ymax); if (emitPlotSignals) emit plotUpdated(); if (emitSignals) emit zoomChangedLocally(xAxis->getMin(), xAxis->getMax(), yAxis->getMin(), yAxis->getMax(), this); } void JKQtBasePlotter::zoom(double nxmin, double nxmax, double nymin, double nymax){ // only react on double clicks inside event double xmin=nxmin; double xmax=nxmax; double ymin=nymin; double ymax=nymax; xAxis->setRange(xmin, xmax); yAxis->setRange(ymin, ymax); if (emitPlotSignals) emit plotUpdated(); if (emitSignals) emit zoomChangedLocally(xAxis->getMin(), xAxis->getMax(), yAxis->getMin(), yAxis->getMax(), this); } void JKQtBasePlotter::resize(int wid, int heigh) { widgetWidth=wid; widgetHeight=heigh; if (emitPlotSignals) emit plotUpdated(); } void JKQtBasePlotter::setWidth(int wid) { widgetWidth=wid; if (emitPlotSignals) emit plotUpdated(); } void JKQtBasePlotter::setHeight(int heigh) { widgetHeight=heigh; if (emitPlotSignals) emit plotUpdated(); } void JKQtBasePlotter::saveSettings(QSettings& settings, QString group){ QString g=group+"/"; if (group.isEmpty()) g=""; if (aspectRatio!=def_aspectRatio) settings.setValue(g+"apect_ratio", aspectRatio); if (maintainAspectRatio!=def_maintainAspectRatio) settings.setValue(g+"maintain_apect_ratio", maintainAspectRatio); if (axisAspectRatio!=def_axisAspectRatio) settings.setValue(g+"axis_apect_ratio", axisAspectRatio); if (maintainAxisAspectRatio!=def_maintainAxisAspectRatio) settings.setValue(g+"maintain_axis_apect_ratio", maintainAxisAspectRatio); if (CSVdecimalSeparator!=def_CSVdecimalSeparator) settings.setValue(g+"csv_decimal_separator", CSVdecimalSeparator); if (CSVcommentInitializer!=def_CSVcommentInitializer) settings.setValue(g+"csv_comment_initializer", CSVcommentInitializer); if (plotBorderLeft!=def_plotBorderLeft) settings.setValue(g+"plot_border_left", plotBorderLeft); if (plotBorderRight!=def_plotBorderRight) settings.setValue(g+"plot_border_right", plotBorderRight); if (plotBorderTop!=def_plotBorderTop) settings.setValue(g+"plot_border_top", plotBorderTop); if (plotBorderBottom!=def_plotBorderBottom) settings.setValue(g+"plot_border_bottom", plotBorderBottom); if (keyXOffset!=def_keyXOffset) settings.setValue(g+"key_xoffset", keyXOffset); if (keyYOffset!=def_keyYOffset) settings.setValue(g+"key_yoffset", keyYOffset); if (keyXMargin!=def_keyXMargin) settings.setValue(g+"key_xmargin", keyXMargin); if (keyYMargin!=def_keyYMargin) settings.setValue(g+"key_ymargin", keyYMargin); if (keyXSeparation!=def_keyXSeparation) settings.setValue(g+"key_xseparation", keyXSeparation); if (keyYSeparation!=def_keyYSeparation) settings.setValue(g+"key_yseparation", keyYSeparation); if (keyFrameColor!=def_keyFrameColor) settings.setValue(g+"key_frame_color", JKQTP_QColor2String(keyFrameColor)); if (keyFrameWidth!=def_keyFrameWidth) settings.setValue(g+"key_frame_width", keyFrameWidth); if (showKeyFrame!=def_showKeyFrame) settings.setValue(g+"show_key_frame", showKeyFrame); if (keyBackgroundColor!=def_keyBackgroundColor) settings.setValue(g+"key_background_color", JKQTP_QColor2String(keyBackgroundColor)); if (showKey!=def_showKey) settings.setValue(g+"show_key", showKey); if (keyPosition!=def_keyPosition) settings.setValue(g+"key_position", JKQTPkeyPosition2String(keyPosition)); if (keyLayout!=def_keyLayout) settings.setValue(g+"key_layout", JKQTPkeyLayout2String(keyLayout)); if (useAntiAliasingForSystem!=def_useAntiAliasingForSystem) settings.setValue(g+"use_antialiasing_for_system", useAntiAliasingForSystem); if (useAntiAliasingForGraphs!=def_useAntiAliasingForGraphs) settings.setValue(g+"use_antialiasing_for_graphs", useAntiAliasingForGraphs); if (useAntiAliasingForText!=def_useAntiAliasingForText) settings.setValue(g+"use_antialiasing_for_text", useAntiAliasingForText); if (backgroundColor!=def_backgroundColor) settings.setValue(g+"background_color", JKQTP_QColor2String(backgroundColor)); if (exportBackgroundColor!=def_exportBackgroundColor) settings.setValue(g+"exportBackgroundColor", JKQTP_QColor2String(exportBackgroundColor)); if (plotBackgroundColor!=def_plotBackgroundColor) settings.setValue(g+"plot_background_color", JKQTP_QColor2String(plotBackgroundColor)); if (graphColor!=def_graphColor) settings.setValue(g+"graph_color", JKQTP_QColor2String(graphColor)); if (graphWidth!=def_graphWidth) settings.setValue(g+"graph_linewidth", graphWidth); if (keyFont!=def_keyFont) settings.setValue(g+"key_fontname", keyFont); if (keyFontSize!=def_keyFontSize) settings.setValue(g+"key_fontsize", keyFontSize); if (key_item_width!=def_key_item_width) settings.setValue(g+"key_item_width", key_item_width); if (key_item_height!=def_key_item_height) settings.setValue(g+"key_item_height", key_item_height); if (key_line_length!=def_key_line_length) settings.setValue(g+"key_line_width", key_line_length); if (keyAutosize!=def_keyAutosize) settings.setValue(g+"key_autosize", keyAutosize); if (plotLabelFontname!=def_plotLabelFontname) settings.setValue(g+"plotLabelFontname", plotLabelFontname); if (plotLabelFontSize!=def_plotLabelFontSize) settings.setValue(g+"plotLabelFontSize", plotLabelFontSize); bool palette_changed=false; for (int cnt=0; cntsaveSettings(settings, g+"xaxis_"); yAxis->saveSettings(settings, g+"yaxis_"); saveUserSettings(); } void JKQtBasePlotter::loadUserSettings(QSettings &settings, QString group) { currentSaveDirectory=settings.value(group+"currentSaveDirectory", currentSaveDirectory).toString(); currentFileFormat=settings.value(group+"currentFileFormat", currentFileFormat).toString(); currentDataFileFormat=settings.value(group+"currentDataFileFormat", currentFileFormat).toString(); printZoomFactor=settings.value(group+"printZoomFactor", printZoomFactor).toDouble(); printSizeX_Millimeter=settings.value(group+"printSizeX", printSizeX_Millimeter).toDouble(); printSizeY_Millimeter=settings.value(group+"printSizeY", printSizeY_Millimeter).toDouble(); printMagnification=settings.value(group+"printMagnification", printMagnification).toDouble(); printSetAbsolutePageSize=settings.value(group+"printSetAbsoluteSize", printSetAbsolutePageSize).toBool(); printAspect=settings.value(group+"printAspect", printAspect).toDouble(); fontSizePrintMultiplier=settings.value(group+"fontSizePrintMultiplier", fontSizePrintMultiplier).toDouble(); lineWidthPrintMultiplier=settings.value(group+"lineWidthPrintMultiplier", lineWidthPrintMultiplier).toDouble(); printKeepAspect=settings.value(group+"printKeepAspect", printKeepAspect).toBool(); exportUnitInMM=settings.value(group+"exportUnitInMM", exportUnitInMM).toBool(); currentPrinter=settings.value(group+"printer", currentPrinter).toString(); settings.beginGroup(group+"selections"); int count=settings.value("count", 0).toInt(); getDataColumnsByUserSaved.clear(); for (int i=0; iloadSettings(settings, g+"yaxis_"); loadUserSettings(); if (emitPlotSignals) emit plotUpdated(); } void JKQtBasePlotter::setXY(double xminn, double xmaxx, double yminn, double ymaxx){ xAxis->setRange(xminn, xmaxx); yAxis->setRange(yminn, ymaxx); if (maintainAxisAspectRatio) { double mid=(yAxis->getMax()+yAxis->getMin())/2.0; double w=fabs(xmaxx-xminn)/axisAspectRatio; yAxis->setRange(mid-w/2.0, mid+w/2.0); } } void JKQtBasePlotter::setX(double xminn, double xmaxx){ xAxis->setRange(xminn, xmaxx); if (maintainAxisAspectRatio) { double mid=(yAxis->getMax()+yAxis->getMin())/2.0; double w=fabs(xmaxx-xminn)/axisAspectRatio; yAxis->setRange(mid-w/2.0, mid+w/2.0); } } void JKQtBasePlotter::setY(double yminn, double ymaxx){ yAxis->setRange(yminn, ymaxx); if (maintainAxisAspectRatio) { double mid=(xAxis->getMax()+xAxis->getMin())/2.0; double w=fabs(ymaxx-yminn)*axisAspectRatio; xAxis->setRange(mid-w/2.0, mid+w/2.0); } } void JKQtBasePlotter::setAbsoluteX(double xminn, double xmaxx) { xAxis->setAbsoluteRange(xminn, xmaxx); } void JKQtBasePlotter::setAbsoluteY(double yminn, double ymaxx) { yAxis->setAbsoluteRange(yminn, ymaxx); } void JKQtBasePlotter::setAbsoluteXY(double xminn, double xmaxx, double yminn, double ymaxx) { xAxis->setAbsoluteRange(xminn, xmaxx); yAxis->setAbsoluteRange(yminn, ymaxx); } void JKQtBasePlotter::calcPlotScaling(JKQTPEnhancedPainter& painter){ #ifdef JKQTBP_AUTOTIMER JKQTPAutoOutputTimer jkaat(QString("JKQtBasePlotter[%1]::calcPlotScaling()").arg(objectName())); #endif if (emitSignals) emit beforePlotScalingRecalculate(); //qDebug()<<"start JKQtPlotterBase::calcPlotScaling"; // if the key is plotted outside , then we have to add place for it (i.e. change the plotBorders iplotBorderBottom=plotBorderBottom; iplotBorderLeft=plotBorderLeft; iplotBorderRight=plotBorderRight; iplotBorderTop=plotBorderTop; iTitleHeight=0; if (!plotLabel.isEmpty()) { /*JKQTmathText mt; mt.set_fontSize(plotLabelFontSize*fontSizeMultiplier); mt.set_fontRoman(plotLabelFontname); #ifdef USE_XITS_FONTS mt.useXITS(); #endif mt.parse(plotLabel); QSizeF s=mt.getSize(painter);*/ QSizeF s=getTextSizeSize(plotLabelFontname, plotLabelFontSize*fontSizeMultiplier, plotLabel, painter); iplotBorderTop+=s.height()*1.2; iTitleHeight=s.height()*1.2; } double keyWidth, keyHeight; QFont f=painter.font(); f.setFamily(keyFont); f.setPointSizeF(keyFontSize*fontSizeMultiplier); QFontMetricsF kfm(f); getKeyExtent(painter, &keyWidth, &keyHeight); iplotKeyBorderTop=0; iplotKeyBorderBottom=0; iplotKeyBorderLeft=0; iplotKeyBorderRight=0; if (keyPosition==JKQTPkeyOutsideTopRight) { iplotKeyBorderTop=keyHeight+2*keyYMargin*kfm.width('X')+ceil(2*keyFrameWidth)+keyYOffset*kfm.width('X')+2; iplotBorderTop = iplotBorderTop + iplotKeyBorderTop; } else if (keyPosition==JKQTPkeyOutsideTopLeft) { iplotKeyBorderTop=keyHeight+2*keyYMargin*kfm.width('X')+ceil(2*keyFrameWidth)+keyYOffset*kfm.width('X')+2; iplotBorderTop = iplotBorderTop + iplotKeyBorderTop; } else if (keyPosition==JKQTPkeyOutsideLeftTop) { iplotKeyBorderLeft=keyWidth+2*keyXMargin*kfm.width('X')+ceil(2*keyFrameWidth)+keyXOffset*kfm.width('X')+2; iplotBorderLeft = iplotBorderLeft + iplotKeyBorderLeft; } else if (keyPosition==JKQTPkeyOutsideLeftBottom) { iplotKeyBorderLeft=keyWidth+2*keyXMargin*kfm.width('X')+ceil(2*keyFrameWidth)+keyXOffset*kfm.width('X')+2; iplotBorderLeft = iplotBorderLeft + iplotKeyBorderLeft; } else if (keyPosition==JKQTPkeyOutsideBottomRight) { iplotKeyBorderBottom=keyHeight+2*keyYMargin*kfm.width('X')+ceil(2*keyFrameWidth)+keyYOffset*kfm.width('X')+2; iplotBorderBottom = iplotBorderBottom + iplotKeyBorderBottom; } else if (keyPosition==JKQTPkeyOutsideBottomLeft) { iplotKeyBorderBottom=keyHeight+2*keyYMargin*kfm.width('X')+ceil(2*keyFrameWidth)+keyYOffset*kfm.width('X')+2; iplotBorderBottom = iplotBorderBottom + iplotKeyBorderBottom; } else if (keyPosition==JKQTPkeyOutsideRightTop) { iplotKeyBorderRight = keyWidth+2*keyXMargin*kfm.width('X')+ceil(2*keyFrameWidth)+keyXOffset*kfm.width('X')+2; iplotBorderRight = iplotBorderRight + iplotKeyBorderRight; } else if (keyPosition==JKQTPkeyOutsideRightBottom) { iplotKeyBorderRight = keyWidth+2*keyXMargin*kfm.width('X')+ceil(2*keyFrameWidth)+keyXOffset*kfm.width('X')+2; iplotBorderRight = iplotBorderRight + iplotKeyBorderRight; } /*if (displayMousePosition) { QFontMetrics fm=fontMetrics(); QString test="�Aquator"; int labelHeight=fm.size(Qt::TextSingleLine, test).height()*1.5; //if (mousePosLabel!=nullptr) labelHeight=mousePosLabel->height(); iplotBorderTop=iplotBorderTop+(labelHeight-plotBorderTop)*1.1; }*/ // read additional size required for coordinate axes QSizeF s=xAxis->getSize1(painter); iplotBorderBottom+=s.height(); s=xAxis->getSize2(painter); iplotBorderTop+=s.height(); s=yAxis->getSize1(painter); iplotBorderLeft+=s.width(); s=yAxis->getSize2(painter); iplotBorderRight+=s.width(); iplotBorderTop_nographs=iplotBorderTop; iplotBorderLeft_nographs=iplotBorderLeft; iplotBorderBottom_nographs=iplotBorderBottom; iplotBorderRight_nographs=iplotBorderRight; // read additional space required by graphs for (int i=0; iget_visible()) { int leftSpace, rightSpace, topSpace, bottomSpace; graphs[i]->getOutsideSize(painter, leftSpace, rightSpace, topSpace, bottomSpace); iplotBorderBottom+=bottomSpace; iplotBorderTop+=topSpace; iplotBorderLeft+=leftSpace; iplotBorderRight+=rightSpace; } } //qDebug()<<" end JKQtPlotterBase::calcPlotScaling"; // synchronize to a master-plotter if (masterPlotter) { if (masterSynchronizeWidth) { iplotBorderLeft=masterPlotter->iplotBorderLeft; iplotBorderRight=masterPlotter->iplotBorderRight; } if (masterSynchronizeHeight) { iplotBorderTop=masterPlotter->iplotBorderTop; iplotBorderBottom=masterPlotter->iplotBorderBottom; } } // first we calculate the width and height of the plot from the widget dimensions and // the supplied border sizes plotWidth=widgetWidth/paintMagnification-iplotBorderLeft-iplotBorderRight; plotHeight=widgetHeight/paintMagnification-iplotBorderTop-iplotBorderBottom; //////////////////////////////////////////////////////////////////// // ENSURE ASPECT RATIO (if activated) //////////////////////////////////////////////////////////////////// if (maintainAspectRatio && (!xAxis->isLogAxis()) && (!xAxis->isLogAxis())) { double currRatio=static_cast(plotWidth)/static_cast(plotHeight); double newPlotWidth=plotWidth; double newPlotHeight=plotHeight; double dx=0; double dy=0; if (currRatio!=aspectRatio) { if (aspectRatio>=currRatio) { newPlotWidth=aspectRatio*static_cast(plotHeight); } else { newPlotHeight=static_cast(plotWidth)/aspectRatio; } dx=plotWidth-newPlotWidth; dy=plotHeight-newPlotHeight; if (dx<0) { newPlotWidth=plotWidth; newPlotHeight=static_cast(plotWidth)/aspectRatio; } else if (dy<0) { newPlotWidth=aspectRatio*static_cast(plotHeight); newPlotHeight=plotHeight; } dx=plotWidth-newPlotWidth; dy=plotHeight-newPlotHeight; if ((dx<0)||(dy<0)) { newPlotWidth=plotWidth; newPlotHeight=plotHeight; } } //if (newPlotWidth>widgetWidth-iplotBorderLeft-iplotBorderRight) newPlotWidth=widgetWidth-iplotBorderLeft-iplotBorderRight; //if (newPlotHeight>widgetHeight-iplotBorderTop-iplotBorderBottom) newPlotHeight=widgetHeight-iplotBorderTop-iplotBorderBottom; dx=plotWidth-newPlotWidth; dy=plotHeight-newPlotHeight; iplotBorderBottom+=dy/2.0; iplotBorderTop+=dy/2.0; iplotBorderLeft+=dx/2.0; iplotBorderRight+=dx/2.0; plotWidth=widgetWidth/paintMagnification-iplotBorderLeft-iplotBorderRight; plotHeight=widgetHeight/paintMagnification-iplotBorderTop-iplotBorderBottom; } xAxis->calcPlotScaling(true); yAxis->calcPlotScaling(true); //////////////////////////////////////////////////////////////////// // ENSURE ASPECT RATIO OF PLOT 1x1 PIXELS (if activated) //////////////////////////////////////////////////////////////////// if (maintainAxisAspectRatio && (!xAxis->isLogAxis()) && (!xAxis->isLogAxis())) { double cplotWidth=fabs(xAxis->getMax()-xAxis->getMin()); double newPlotWidth=cplotWidth; double xmid=(xAxis->getMax()+xAxis->getMin())/2.0; double cplotHeight=fabs(yAxis->getMax()-yAxis->getMin()); double newPlotHeight=cplotHeight; double ymid=(yAxis->getMax()+yAxis->getMin())/2.0; double currRatio=fabs(cplotWidth/cplotHeight); if (currRatio!=axisAspectRatio) { //if (axisAspectRatio<=currRatio) { newPlotWidth=axisAspectRatio*cplotHeight; //} else { // newPlotHeight=cplotWidth/axisAspectRatio; //} } xAxis->setRange(xmid-newPlotWidth/2.0, xmid+newPlotWidth/2.0); yAxis->setRange(ymid-newPlotHeight/2.0, ymid+newPlotHeight/2.0); xAxis->calcPlotScaling(true); yAxis->calcPlotScaling(true); } if (emitPlotSignals) emit plotScalingRecalculated(); } void JKQtBasePlotter::plotSystemGrid(JKQTPEnhancedPainter& painter) { #ifdef JKQTBP_AUTOTIMER JKQTPAutoOutputTimer jkaaot("JKQtBasePlotter::plotSystemGrid"); #endif //qDebug()<<"start JKQtPlotterBase::plotSystemGrid"; xAxis->drawGrids(painter); yAxis->drawGrids(painter); //qDebug()<<" end JKQtPlotterBase::plotSystemGrid"; } void JKQtBasePlotter::plotSystemXAxis(JKQTPEnhancedPainter& painter) { #ifdef JKQTBP_AUTOTIMER JKQTPAutoOutputTimer jkaaot("JKQtBasePlotter::plotSystemXAxis"); #endif //qDebug()<<"start JKQtPlotterBase::plotSystemXAxis"; xAxis->drawAxes(painter); //qDebug()<<" end JKQtPlotterBase::plotSystemXAxis"; } void JKQtBasePlotter::plotSystemYAxis(JKQTPEnhancedPainter& painter) { #ifdef JKQTBP_AUTOTIMER JKQTPAutoOutputTimer jkaaot("JKQtBasePlotter::plotSystemYAxis"); #endif //qDebug()<<"start JKQtPlotterBase::plotSystemYAxis"; yAxis->drawAxes(painter); //qDebug()<<" end JKQtPlotterBase::plotSystemYAxis"; } JKQtBasePlotter::JKQTPPen JKQtBasePlotter::getPlotStyle(int i) const{ int colorI=-1; int styleI=0; for (int k=0; k<=i; k++) { colorI++; if (colorI>=manyGraphsColorCount) { styleI++; colorI=0; if (styleI>=5) styleI=0; } } JKQTPPen p; //std::cout<<"plotstyle "<0 && keyHeight>0 draw the frame and the contents double keyWidth=0; double keyHeight=0; getKeyExtent(painter, &keyWidth, &keyHeight); double keyrWidth=keyWidth+2.0*keyXMargin*kfm.width('X')+2.0*keyFrameWidth*lineWidthPrintMultiplier; double keyrHeight=keyHeight+2.0*keyYMargin*kfm.width('X')+2.0*keyFrameWidth*lineWidthPrintMultiplier; if ((keyWidth>0) && (keyHeight>0)) { // key position double x,y; switch(keyPosition) { case JKQTPkeyOutsideTopRight: x=iplotBorderLeft+plotWidth+iplotBorderRight-keyrWidth-keyXOffset*kfm.width('X'); y=keyYOffset*kfm.width('X')+iTitleHeight; break; case JKQTPkeyOutsideTopLeft: x=iplotBorderLeft+keyXOffset*kfm.width('X'); y=keyYOffset*kfm.width('X')+iTitleHeight; break; case JKQTPkeyOutsideBottomRight: x=iplotBorderLeft+plotWidth-keyrWidth-keyXOffset*kfm.width('X'); y=iplotBorderTop+plotHeight+iplotBorderBottom-keyrHeight-keyYOffset*kfm.width('X'); break; case JKQTPkeyOutsideBottomLeft: x=iplotBorderLeft+keyXOffset*kfm.width('X'); y=iplotBorderTop+plotHeight+iplotBorderBottom-keyrHeight-keyYOffset*kfm.width('X'); break; case JKQTPkeyOutsideRightTop: x=iplotBorderLeft+plotWidth+iplotBorderRight-keyrWidth-keyXOffset*kfm.width('X'); y=iplotBorderTop+keyYOffset*kfm.width('X'); break; case JKQTPkeyOutsideRightBottom: x=iplotBorderLeft+plotWidth+iplotBorderRight-keyrWidth-keyXOffset*kfm.width('X'); y=iplotBorderTop+plotHeight-keyrHeight-keyYOffset*kfm.width('X'); break; case JKQTPkeyOutsideLeftTop: x=keyXOffset*kfm.width('X'); y=iplotBorderTop+keyYOffset*kfm.width('X'); break; case JKQTPkeyOutsideLeftBottom: x=keyXOffset*kfm.width('X'); y=iplotBorderTop+plotHeight-keyrHeight-keyYOffset*kfm.width('X'); break; case JKQTPkeyInsideBottomRight: x=iplotBorderLeft+plotWidth-keyrWidth-keyXOffset*kfm.width('X'); y=iplotBorderTop+plotHeight-keyrHeight-keyYOffset; break; case JKQTPkeyInsideBottomLeft: x=iplotBorderLeft+keyXOffset*kfm.width('X'); y=iplotBorderTop+plotHeight-keyrHeight-keyYOffset*kfm.width('X'); break; case JKQTPkeyInsideTopLeft: x=iplotBorderLeft+keyXOffset*kfm.width('X'); y=iplotBorderTop+keyYOffset*kfm.width('X'); break; case JKQTPkeyInsideTopRight: default: x=iplotBorderLeft+plotWidth-keyrWidth-keyXOffset*kfm.width('X'); y=iplotBorderTop+keyYOffset*kfm.width('X'); break; } // save old brushes and pens painter.save(); QPen pf=painter.pen(); QBrush bf=painter.brush(); pf.setColor(keyFrameColor); pf.setWidthF(qMax(JKQTPLOTTER_ABS_MIN_LINEWIDTH, pt2px(painter, keyFrameWidth*lineWidthMultiplier))); pf.setStyle(Qt::SolidLine); bf.setColor(keyBackgroundColor); bf.setStyle(Qt::SolidPattern); painter.setBrush(bf); if (!showKeyFrame) { QPen pff=pf; pff.setColor(keyBackgroundColor); pff.setWidthF(JKQTPLOTTER_ABS_MIN_LINEWIDTH); painter.setPen(pff); } else { painter.setPen(pf); } painter.drawRect(QRectF(x,y,keyrWidth, keyrHeight)); y=y+keyYMargin*kfm.width('X')+keyFrameWidth*lineWidthMultiplier/2.0; x=x+keyXMargin*kfm.width('X')+keyFrameWidth*lineWidthMultiplier/2.0; painter.setPen(pf); if (useClipping) { QRegion cregion(x,y,keyrWidth, keyrHeight); painter.setClipping(true); painter.setClipRegion(cregion); painter.setClipping(true); } plotKeyContents(painter, x, y, keyWidth, keyHeight); if (useClipping) painter.setClipping(false); painter.restore(); } //qDebug()<<" end JKQtPlotterBase::plotKey"; } void JKQtBasePlotter::plotOverlays(JKQTPEnhancedPainter &painter) { #ifdef JKQTBP_AUTOTIMER JKQTPAutoOutputTimer jkaaot("JKQtBasePlotter::plotOverlays"); #endif if (overlays.isEmpty()) return; if (useClipping) { QRegion cregion(iplotBorderLeft, iplotBorderTop, plotWidth, plotHeight); painter.setClipping(true); painter.setClipRegion(cregion); } for (int j=0; jget_visible()) g->draw(painter); } if (useClipping) { painter.setClipping(false); } } void JKQtBasePlotter::paintPlot(JKQTPEnhancedPainter& painter, bool drawOverlays) { #ifdef JKQTBP_AUTOTIMER JKQTPAutoOutputTimer jkaaot("JKQtBasePlotter::paintPlot"); #endif //qDebug()<<"start JKQtPlotterBase::paintPlot"; // draw background painter.save(); painter.setPen(backgroundColor); if (backgroundColor!=Qt::transparent) painter.fillRect(QRectF(0,0,widgetWidth/paintMagnification, widgetHeight/paintMagnification), QBrush(backgroundColor)); painter.fillRect(QRectF(iplotBorderLeft, iplotBorderTop, plotWidth, plotHeight), QBrush(plotBackgroundColor)); painter.restore(); painter.setRenderHint(JKQTPEnhancedPainter::NonCosmeticDefaultPen, true); painter.setRenderHint(JKQTPEnhancedPainter::Antialiasing, useAntiAliasingForSystem); painter.setRenderHint(JKQTPEnhancedPainter::TextAntialiasing, useAntiAliasingForText); plotSystemGrid(painter); if (!plotLabel.isEmpty()) { mathText.set_fontSize(plotLabelFontSize*fontSizeMultiplier); mathText.set_fontRoman(plotLabelFontname); mathText.parse(plotLabel); double a=0,d=0,so=0,w=0; getTextSizeDetail(plotLabelFontname,plotLabelFontSize*fontSizeMultiplier,plotLabel, painter, w, a, d, so); QSizeF s=QSizeF(w, a+d); mathText.draw(painter, iplotBorderLeft+(plotWidth-s.width())/2.0,plotBorderTop+a*1.2); } painter.setRenderHint(JKQTPEnhancedPainter::Antialiasing, useAntiAliasingForGraphs); painter.setRenderHint(JKQTPEnhancedPainter::TextAntialiasing, useAntiAliasingForText); painter.save(); plotGraphs(painter); painter.restore(); painter.setRenderHint(JKQTPEnhancedPainter::Antialiasing, useAntiAliasingForSystem); painter.setRenderHint(JKQTPEnhancedPainter::TextAntialiasing, useAntiAliasingForText); plotSystemXAxis(painter); plotSystemYAxis(painter); painter.setRenderHint(JKQTPEnhancedPainter::Antialiasing, useAntiAliasingForGraphs); painter.setRenderHint(JKQTPEnhancedPainter::TextAntialiasing, useAntiAliasingForText); if (showKey) plotKey(painter); painter.setRenderHint(JKQTPEnhancedPainter::TextAntialiasing, useAntiAliasingForText); if (drawOverlays) plotOverlays(painter); //qDebug()<<" end JKQtPlotterBase::paintPlot"; } void JKQtBasePlotter::paintOverlays(JKQTPEnhancedPainter &painter) { painter.setRenderHint(JKQTPEnhancedPainter::NonCosmeticDefaultPen, true); painter.setRenderHint(JKQTPEnhancedPainter::Antialiasing, useAntiAliasingForGraphs); painter.setRenderHint(JKQTPEnhancedPainter::TextAntialiasing, useAntiAliasingForText); painter.save(); plotOverlays(painter); painter.restore(); } void JKQtBasePlotter::gridPrintingCalc() { gridPrintingRows.clear(); gridPrintingColumns.clear(); if (!gridPrinting) { gridPrintingSize=QSize(widgetWidth/paintMagnification, widgetHeight/paintMagnification); gridPrintingRows.push_back(widgetHeight/paintMagnification); gridPrintingColumns.push_back(widgetWidth/paintMagnification); } else { // first find min and max columns/rows size_t cmin=gridPrintingCurrentX; size_t cmax=gridPrintingCurrentX; size_t rmin=gridPrintingCurrentY; size_t rmax=gridPrintingCurrentY; for (int i=0; i< gridPrintingList.size(); i++) { size_t c=gridPrintingList[i].x; size_t r=gridPrintingList[i].y; if (ccmax) cmax=c; if (rrmax) rmax=r; } // fill gridPrintingRows and gridPrintingColumns for (size_t i=0; i<=cmax; i++) { gridPrintingColumns.push_back(0); } for (size_t i=0; i<=rmax; i++) { gridPrintingRows.push_back(0); } gridPrintingColumns[gridPrintingCurrentX]=widgetWidth/paintMagnification; gridPrintingRows[gridPrintingCurrentY]=widgetHeight/paintMagnification; for (int i=0; i< gridPrintingList.size(); i++) { int cw=gridPrintingList[i].plotter->widgetWidth/paintMagnification; int ch=gridPrintingList[i].plotter->widgetHeight/paintMagnification; size_t c=gridPrintingList[i].x; size_t r=gridPrintingList[i].y; if (cw>gridPrintingColumns[c]) gridPrintingColumns[c]=cw; if (ch>gridPrintingRows[r]) gridPrintingRows[r]=ch; } int w=0; int h=0; for (int i=0; i(double)pageRect.width()) ||*/ (scale*(double)widgetHeight/paintMagnification>(double)pageRect.height()) && scaleIfTooLarge) { scale=(double)pageRect.height()/(double)widgetHeight*paintMagnification; } if (!scaleIfTooSmall && scale>1.0) scale=1.0; if (!scaleIfTooLarge && !scaleIfTooSmall) scale=1.0; #ifdef SHOW_JKQTPLOTTER_DEBUG qDebug()<<"gridPaint: scale="< fsm, lwm, pm; QList backg; for (int i=0; i< gridPrintingList.size(); i++) { fsm.append(gridPrintingList[i].plotter->get_fontSizeMultiplier()); lwm.append(gridPrintingList[i].plotter->get_lineWidthMultiplier()); pm.append(gridPrintingList[i].plotter->get_paintMagnification()); backg.append(gridPrintingList[i].plotter->get_exportBackgroundColor()); gridPrintingList[i].plotter->set_fontSizeMultiplier(fontSizeMultiplier); gridPrintingList[i].plotter->set_lineWidthMultiplier(lineWidthMultiplier); gridPrintingList[i].plotter->set_paintMagnification(paintMagnification); gridPrintingList[i].plotter->set_backgroundColor(gridPrintingList[i].plotter->get_exportBackgroundColor()); gridPrintingList[i].plotter->calcPlotScaling(painter); } gridPrintingCalc(); // ensure the grid plot has been calculated // scale the plot so it fits on the page double scale=(double)pageRect.width()/(double)gridPrintingSize.width(); if (/*(scale*(double)gridPrintingSize.width()>(double)pageRect.width()) ||*/ (scale*(double)gridPrintingSize.height()>(double)pageRect.height()) && scaleIfTooLarge) { scale=(double)pageRect.height()/(double)gridPrintingSize.height(); } if (!scaleIfTooSmall && scale>1.0) scale=1.0; if (!scaleIfTooLarge && !scaleIfTooSmall) scale=1.0; #ifdef SHOW_JKQTPLOTTER_DEBUG qDebug()<<"gridPaint: scale="<paintPlot(painter, drawOverlays); painter.restore(); } painter.restore(); for (int i=0; i< gridPrintingList.size(); i++) { gridPrintingList[i].plotter->set_fontSizeMultiplier(fsm[i]); gridPrintingList[i].plotter->set_lineWidthMultiplier(lwm[i]); gridPrintingList[i].plotter->set_paintMagnification(pm[i]); gridPrintingList[i].plotter->set_backgroundColor(backg[i]); gridPrintingList[i].plotter->update_plot(); } } } void JKQtBasePlotter::gridPaintOverlays(JKQTPEnhancedPainter &painter, QSizeF pageRect) { if (!gridPrinting) { double scale=(double)pageRect.width()/(double)widgetWidth*paintMagnification; if (/*(scale*(double)widgetWidth/paintMagnification>(double)pageRect.width()) ||*/ (scale*(double)widgetHeight>(double)pageRect.height())) { scale=(double)pageRect.height()/(double)widgetHeight; } painter.save(); // scale the plot so it fits on the page painter.scale(scale, scale); paintOverlays(painter); painter.restore(); } else { gridPrintingCalc(); // ensure the grid plot has been calculated // scale the plot so it fits on the page double scale=(double)pageRect.width()/(double)gridPrintingSize.width(); if (/*(scale*(double)gridPrintingSize.width()>(double)pageRect.width()) ||*/ (scale*(double)gridPrintingSize.height()>(double)pageRect.height())) { scale=(double)pageRect.height()/(double)gridPrintingSize.height(); } painter.save(); painter.scale(scale, scale); // plot this plotter painter.save(); int t_x=0; int t_y=0; //std::cout<<"printing this ...\n"; for (size_t i=0; ipaintOverlays(painter); painter.restore(); } painter.restore(); } } void JKQtBasePlotter::print(QPrinter* printer, bool displayPreview) { loadUserSettings(); QPrinter* p=printer; bool delP=false; // select a printer if (p==nullptr) { p=new QPrinter(); p->setPrinterName(currentPrinter); delP=true; QPrintDialog *dialog = new QPrintDialog(p, nullptr); dialog->setWindowTitle(tr("Print Plot")); if (dialog->exec() != QDialog::Accepted) { delete p; delete dialog; return; } currentPrinter=p->printerName(); delete dialog; } p->setPageMargins(10,10,10,10,QPrinter::Millimeter); if (widgetWidth>widgetHeight) { p->setOrientation(QPrinter::Landscape); } else { p->setOrientation(QPrinter::Portrait); } printpreviewNew(p, false, -1.0, -1.0, displayPreview); if (delP) delete p; saveUserSettings(); } void JKQtBasePlotter::printpreview(QPrinter *p, bool setabsolutesize) { double lw=lineWidthMultiplier; double fs=fontSizeMultiplier; QColor bc=backgroundColor; backgroundColor=exportBackgroundColor; lineWidthMultiplier=lineWidthPrintMultiplier; fontSizeMultiplier=fontSizePrintMultiplier; exportPreviewLabel=nullptr; printSizeX_Millimeter=widgetWidth; printSizeY_Millimeter=widgetHeight; printAspect=1; printKeepAspect=false; printSetAbsolutePageSize=setabsolutesize; printKeepAbsoluteFontSizes=false; printScaleToPagesize=true; QDialog* dlg=new QDialog(nullptr, Qt::WindowMinMaxButtonsHint); dlg->setSizeGripEnabled(true); //printZoomFactor=0.95; //printMagnification=1.5; QGridLayout* layout=new QGridLayout(); dlg->setLayout(layout); dlg->setWindowTitle(tr("Graph print/export preview ...")); dlg->setWindowIcon(QIcon(":/JKQTPlotter/jkqtp_exportprintpreview.png")); printPreview=new QPrintPreviewWidget(p, dlg); connect(printPreview, SIGNAL(paintRequested(QPrinter*)), this, SLOT(printpreviewPaintRequested(QPrinter*))); if (!setabsolutesize) { JKQTPEnhancedDoubleSpinBox* spinZoom=new JKQTPEnhancedDoubleSpinBox(dlg); spinZoom->setRange(0.0001,10000); spinZoom->setValue(printZoomFactor*100.0); spinZoom->setSingleStep(5); spinZoom->setDecimals(0); spinZoom->setSuffix(tr(" %")); spinZoom->setToolTip(tr("use this setting to scale the plot)")); connect(spinZoom, SIGNAL(editingFinished(double)), this, SLOT(printpreviewSetZoom(double))); layout->addWidget(new QLabel(tr("size on paper: ")), 0,layout->columnCount()); layout->addWidget(spinZoom, 0,layout->columnCount()); } else { printSizeX_Millimeter=100; printAspect=double(widgetHeight)/double(widgetWidth); if (gridPrinting) { gridPrintingCalc(); printAspect=double(gridPrintingSize.height())/double(gridPrintingSize.width()); } printSizeY_Millimeter=printSizeX_Millimeter*printAspect; printKeepAspect=true; JKQTPEnhancedDoubleSpinBox* spinSizeX=new JKQTPEnhancedDoubleSpinBox(dlg); spinSizeX->setRange(1,10000); spinSizeX->setValue(printSizeX_Millimeter); spinSizeX->setSingleStep(10); spinSizeX->setDecimals(1); spinSizeX->setSuffix(tr(" mm")); spinSizeX->setToolTip(tr("set the size of the output page")); connect(spinSizeX, SIGNAL(editingFinished(double)), this, SLOT(printpreviewSetSizeX(double))); spinSizeY=new JKQTPEnhancedDoubleSpinBox(dlg); spinSizeY->setRange(1,10000); spinSizeY->setValue(printSizeY_Millimeter); spinSizeY->setSingleStep(10); spinSizeY->setDecimals(1); spinSizeY->setSuffix(tr(" mm")); spinSizeY->setToolTip(tr("set the size of the output page")); spinSizeY->setEnabled(false); connect(spinSizeY, SIGNAL(valueChanged(double)), this, SLOT(printpreviewSetSizeY(double))); QCheckBox* chkAspect=new QCheckBox(tr("keep aspect ratio"), dlg); chkAspect->setChecked(true); chkAspect->setToolTip(tr("choose whether to keep the aspect ratio for the print/export, as on the screen.")); connect(chkAspect, SIGNAL(toggled(bool)), spinSizeY, SLOT(setDisabled(bool))); connect(chkAspect, SIGNAL(toggled(bool)), this, SLOT(printpreviewSetAspectRatio(bool))); layout->addWidget(new QLabel(tr("page size: ")), 0,layout->columnCount()); layout->addWidget(spinSizeX, 0,layout->columnCount()); layout->addWidget(new QLabel(tr(" x ")), 0,layout->columnCount()); layout->addWidget(spinSizeY, 0,layout->columnCount()); layout->addWidget(chkAspect, 0,layout->columnCount()); } JKQTPEnhancedDoubleSpinBox* spinMagnification=new JKQTPEnhancedDoubleSpinBox(dlg); spinMagnification->setRange(1,1000); spinMagnification->setValue(printMagnification*100.0); spinMagnification->setSingleStep(10); spinMagnification->setDecimals(0); spinMagnification->setSuffix(tr(" %")); spinMagnification->setToolTip(tr("use this to change the base size of the plot
" "This will not change the size of the plot on
" "the page, only it's appearance. A magn. of 100%
" "will print the plot in the same proportions as
" "on the screen, whereas 50% will use twice as much
" "space for the plot, as on the screen. This mainly
" "influences the relative font size!
")); connect(spinMagnification, SIGNAL(editingFinished(double)), this, SLOT(printpreviewSetMagnification(double))); JKQTPEnhancedDoubleSpinBox* spinLineWidthMult=new JKQTPEnhancedDoubleSpinBox(dlg); spinLineWidthMult->setRange(1,1000); spinLineWidthMult->setValue(lineWidthPrintMultiplier*100.0); spinLineWidthMult->setSingleStep(10); spinLineWidthMult->setDecimals(0); spinLineWidthMult->setSuffix(tr(" %")); spinLineWidthMult->setToolTip(tr("use this to change the relative width of the lines\n" "in the exported/printed plot.")); connect(spinLineWidthMult, SIGNAL(editingFinished(double)), this, SLOT(printpreviewSetLineWidthMultiplier(double))); JKQTPEnhancedDoubleSpinBox* spinFontSizeMult=new JKQTPEnhancedDoubleSpinBox(dlg); spinFontSizeMult->setRange(1,1000); spinFontSizeMult->setValue(fontSizePrintMultiplier*100.0); spinFontSizeMult->setSingleStep(10); spinFontSizeMult->setDecimals(0); spinFontSizeMult->setSuffix(tr(" %")); spinFontSizeMult->setToolTip(tr("use this to change the relative size of the text fonts\n" "in the exported/printed plot.")); connect(spinFontSizeMult, SIGNAL(editingFinished(double)), this, SLOT(printpreviewSetFontSizeMultiplier(double))); //layout->addWidget(new QLabel(tr("magnification: ")), 0,layout->columnCount()); //layout->addWidget(spinMagnification, 0,layout->columnCount()); layout->addWidget(new QLabel(tr("linewidth mult.: ")), 0,layout->columnCount()); layout->addWidget(spinLineWidthMult, 0,layout->columnCount()); layout->addWidget(new QLabel(tr("font size mult.: ")), 0,layout->columnCount()); layout->addWidget(spinFontSizeMult, 0,layout->columnCount()); layout->addWidget(new QWidget(), 0,layout->columnCount()); layout->setColumnStretch(layout->columnCount()-1, 1); layout->addWidget(printPreview, layout->rowCount(),0, 1, layout->columnCount()); QDialogButtonBox* buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); connect(buttonBox, SIGNAL(accepted()), dlg, SLOT(accept())); connect(buttonBox, SIGNAL(rejected()), dlg, SLOT(reject())); layout->addWidget(buttonBox, layout->rowCount(),0, 1, layout->columnCount()); dlg->resize(800,500); if (dlg->exec()==QDialog::Accepted) { printpreviewPaintRequested(p); } delete dlg; printPreview=nullptr; lineWidthMultiplier=lw; fontSizeMultiplier=fs; backgroundColor=bc; } bool JKQtBasePlotter::printpreviewNew(QPaintDevice* paintDevice, bool setAbsolutePaperSize, double printsizeX_inMM, double printsizeY_inMM, bool displayPreview) { QPrinter *printer=dynamic_cast(paintDevice); QSvgGenerator* svg=dynamic_cast(paintDevice); double lw=lineWidthMultiplier; double fs=fontSizeMultiplier; double oldP=paintMagnification; QColor bc=backgroundColor; backgroundColor=exportBackgroundColor; lineWidthMultiplier=lineWidthPrintMultiplier; fontSizeMultiplier=fontSizePrintMultiplier; exportPreviewLabel=nullptr; printMagnification=1.0; paintMagnification=1.0; gridPrintingCalc(); //double resolution=paintDevice->logicalDpiX(); //if (printer) resolution=printer->resolution(); printAspect=gridPrintingSize.height()/gridPrintingSize.width(); if (printer) printPageSizeMM=printer->pageRect(QPrinter::Millimeter).size(); else printPageSizeMM=QSizeF(paintDevice->widthMM(), paintDevice->heightMM()); printSizeX_Millimeter=double(gridPrintingSize.width())/96.0*25.4;//double(resolution)*25.4; // convert current widget size in pixels to millimeters, assuming 96dpi (default screen resolution) printSizeY_Millimeter=double(gridPrintingSize.height())/96.0*25.4;//double(resolution)*25.4; if (printsizeX_inMM>0) printSizeX_Millimeter=printsizeX_inMM; if (printsizeY_inMM>0) printSizeY_Millimeter=printsizeY_inMM; bool startWithMagnification=false; if (!setAbsolutePaperSize) { if (printSizeX_Millimeter>printPageSizeMM.width() || printSizeY_Millimeter>printPageSizeMM.height()) { startWithMagnification=true; printMagnification=qMin(printPageSizeMM.width()/printSizeX_Millimeter, printPageSizeMM.height()/printSizeY_Millimeter); } } printKeepAspect=true; printSetAbsolutePageSize=setAbsolutePaperSize; printKeepAbsoluteFontSizes=true; printScaleToPagesize=false; QDialog* dlg=new QDialog(nullptr, Qt::WindowMinMaxButtonsHint); dlg->setSizeGripEnabled(true); //printZoomFactor=0.95; //printMagnification=1.5; QGridLayout* layout=new QGridLayout(); dlg->setLayout(layout); dlg->setWindowTitle(tr("Graph print/export preview ...")); dlg->setWindowIcon(QIcon(":/JKQTPlotter/jkqtp_exportprintpreview.png")); bool delPrinter=false; if (svg) { printer=new QPrinter(); printer->setColorMode(QPrinter::Color); printer->setOutputFormat(QPrinter::PdfFormat); printer->setResolution(svg->logicalDpiX()); printer->setPageMargins(0,0,0,0,QPrinter::Millimeter); printer->setColorMode(QPrinter::Color); delPrinter=true; } else if (!printer) { printer=new QPrinter(); printer->setOutputFormat(QPrinter::PdfFormat); printer->setResolution(paintDevice->logicalDpiX()); printer->setPageMargins(0,0,0,0,QPrinter::Millimeter); printer->setColorMode(QPrinter::Color); delPrinter=true; } printPreview=new QPrintPreviewWidget(printer, dlg); connect(printPreview, SIGNAL(paintRequested(QPrinter*)), this, SLOT(printpreviewPaintRequestedNew(QPrinter*))); spinSizeX=new JKQTPEnhancedDoubleSpinBox(dlg); spinSizeX->setRange(10,100000); spinSizeX->setValue(printSizeX_Millimeter); spinSizeX->setSingleStep(10); spinSizeX->setDecimals(1); spinSizeX->setSuffix(tr(" mm")); spinSizeX->setToolTip(tr("set the size of the output in millimeters")); connect(spinSizeX, SIGNAL(valueChanged(double)), this, SLOT(printpreviewSetSizeXNew(double))); connect(spinSizeX, SIGNAL(editingFinished()), this, SLOT(printpreviewUpdate())); spinSizeY=new JKQTPEnhancedDoubleSpinBox(dlg); spinSizeY->setRange(10,100000); spinSizeY->setValue(printSizeY_Millimeter); spinSizeY->setSingleStep(10); spinSizeY->setDecimals(1); spinSizeY->setSuffix(tr(" mm")); spinSizeY->setToolTip(tr("set the size of the output in millimeters")); spinSizeY->setEnabled(false); connect(spinSizeY, SIGNAL(valueChanged(double)), this, SLOT(printpreviewSetSizeYNew(double))); connect(spinSizeY, SIGNAL(editingFinished()), this, SLOT(printpreviewUpdate())); QCheckBox* chkAspect=new QCheckBox(tr("keep aspect ratio"), dlg); chkAspect->setChecked(true); chkAspect->setToolTip(tr("choose whether to keep the aspect ratio for the print/export, as on the screen.")); connect(chkAspect, SIGNAL(toggled(bool)), spinSizeY, SLOT(setDisabled(bool))); connect(chkAspect, SIGNAL(toggled(bool)), this, SLOT(printpreviewSetAspectRatio(bool))); if (setAbsolutePaperSize) { layout->addWidget(new QLabel(tr("paper/plot size: ")), 0,layout->columnCount()); } else if (printer && !svg) { int y=layout->columnCount(); layout->addWidget(new QLabel(tr("plot size: ")), 0,y); } else { int y=layout->columnCount(); layout->addWidget(new QLabel(tr("paper size: ")), 1,y); layout->addWidget(new QLabel(tr("plot size: ")), 0,y); } layout->addWidget(spinSizeX, 0,layout->columnCount()); layout->addWidget(new QLabel(tr(" x ")), 0,layout->columnCount()); layout->addWidget(spinSizeY, 0,layout->columnCount()); layout->addWidget(chkAspect, 0,layout->columnCount()); if (!setAbsolutePaperSize && printer && !svg) { if (printer) layout->addWidget(new QLabel(tr("%1x%2 mm^2").arg(printer->pageRect(QPrinter::Millimeter).width()).arg(printer->pageRect(QPrinter::Millimeter).height())), 1,layout->columnCount()-4, 1, 4); QCheckBox* chkSetMagnification=new QCheckBox(tr("set by magnification: "), dlg); chkSetMagnification->setChecked(false); spinMagnification=new JKQTPEnhancedDoubleSpinBox(dlg); spinMagnification->setEnabled(false); spinMagnification->setRange(1,1000); spinMagnification->setValue(printMagnification*100.0); spinMagnification->setSingleStep(10); spinMagnification->setDecimals(0); spinMagnification->setSuffix(tr(" %")); spinMagnification->setToolTip(tr("use this to change the base size of the plot
" "This will not change the size of the plot on
" "the page, only it's appearance. A magn. of 100%
" "will print the plot in the same proportions as
" "on the screen, whereas 50% will use twice as much
" "space for the plot, as on the screen. This mainly
" "influences the relative font size!
")); connect(spinMagnification, SIGNAL(valueChanged(double)), this, SLOT(printpreviewSetMagnificationNew(double))); connect(chkSetMagnification, SIGNAL(toggled(bool)), spinMagnification, SLOT(setEnabled(bool))); connect(chkSetMagnification, SIGNAL(toggled(bool)), spinSizeX, SLOT(setDisabled(bool))); connect(chkSetMagnification, SIGNAL(toggled(bool)), spinSizeY, SLOT(setDisabled(bool))); connect(chkSetMagnification, SIGNAL(toggled(bool)), chkAspect, SLOT(setDisabled(bool))); connect(spinMagnification, SIGNAL(editingFinished()), this, SLOT(printpreviewUpdate())); connect(chkSetMagnification, SIGNAL(toggled(bool)), this, SLOT(printpreviewToggleMagnification(bool))); spinMagnification->setEnabled(startWithMagnification); chkSetMagnification->setChecked(startWithMagnification); layout->addWidget(chkSetMagnification, 0,layout->columnCount()); layout->addWidget(spinMagnification, 0,layout->columnCount()); } JKQTPEnhancedDoubleSpinBox* spinLineWidthMult=new JKQTPEnhancedDoubleSpinBox(dlg); spinLineWidthMult->setRange(1,1000); spinLineWidthMult->setValue(lineWidthPrintMultiplier*100.0); spinLineWidthMult->setSingleStep(10); spinLineWidthMult->setDecimals(0); spinLineWidthMult->setSuffix(tr(" %")); spinLineWidthMult->setToolTip(tr("use this to change the relative width of the lines\n" "in the exported/printed plot.")); connect(spinLineWidthMult, SIGNAL(editingFinished(double)), this, SLOT(printpreviewSetLineWidthMultiplier(double))); QCheckBox* chkKeepAbsoluteFontSize=new QCheckBox(tr("keep abs. fontsize"), dlg); chkKeepAbsoluteFontSize->setChecked(true); connect(chkKeepAbsoluteFontSize, SIGNAL(toggled(bool)), this, SLOT(printpreviewSetKeepAbsFontsize(bool))); JKQTPEnhancedDoubleSpinBox* spinFontSizeMult=new JKQTPEnhancedDoubleSpinBox(dlg); spinFontSizeMult->setEnabled(false); spinFontSizeMult->setRange(1,1000); spinFontSizeMult->setValue(fontSizePrintMultiplier*100.0); spinFontSizeMult->setSingleStep(10); spinFontSizeMult->setDecimals(0); spinFontSizeMult->setSuffix(tr(" %")); spinFontSizeMult->setToolTip(tr("use this to change the relative size of the text fonts\n" "in the exported/printed plot.")); connect(spinFontSizeMult, SIGNAL(editingFinished(double)), this, SLOT(printpreviewSetFontSizeMultiplier(double))); connect(chkKeepAbsoluteFontSize, SIGNAL(toggled(bool)), spinFontSizeMult, SLOT(setDisabled(bool))); layout->addWidget(new QLabel(tr("linewidth mult.: ")), 0,layout->columnCount()); layout->addWidget(spinLineWidthMult, 0,layout->columnCount()); int gpos=layout->columnCount(); layout->addWidget(chkKeepAbsoluteFontSize, 0,gpos,1,2); layout->addWidget(new QLabel(tr("font size mult.: ")), 1,gpos); layout->addWidget(spinFontSizeMult, 1,gpos+1); layout->addWidget(new QWidget(), 0,layout->columnCount()); layout->setColumnStretch(layout->columnCount()-1, 1); layout->addWidget(printPreview, layout->rowCount(),0, 1, layout->columnCount()); QDialogButtonBox* buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); connect(buttonBox, SIGNAL(accepted()), dlg, SLOT(accept())); connect(buttonBox, SIGNAL(rejected()), dlg, SLOT(reject())); layout->addWidget(buttonBox, layout->rowCount(),0, 1, layout->columnCount()); dlg->resize(800,500); bool res=false; if (printer) { if (!displayPreview || dlg->exec()==QDialog::Accepted) { qDebug()<setSizeGripEnabled(true); //printZoomFactor=0.95; //printMagnification=1.5; QGridLayout* layout=new QGridLayout(); dlg->setLayout(layout); dlg->setWindowTitle(tr("Graph export preview ...")); dlg->setWindowIcon(QIcon(":/JKQTPlotter/jkqtp_exportprintpreview.png")); /*printPreview=new QPrintPreviewWidget(p, dlg); connect(printPreview, SIGNAL(paintRequested(QPrinter*)), this, SLOT(printpreviewPaintRequested(QPrinter*)));*/ QScrollArea* scroll=new QScrollArea(dlg); { QPalette p(scroll->palette()); // Set background colour to black p.setColor(QPalette::Background, Qt::darkGray); scroll->setPalette(p); } exportPreviewLabel=new QLabel(scroll); exportPreviewLabel->setMargin(10); scroll->setWidget(exportPreviewLabel); { QPalette p(exportPreviewLabel->palette()); // Set background colour to black p.setColor(QPalette::Background, Qt::darkGray); exportPreviewLabel->setPalette(p); } printAspect=double(widgetHeight)/double(widgetWidth); if (gridPrinting) { gridPrintingCalc(); printAspect=double(gridPrintingSize.height())/double(gridPrintingSize.width()); } printSizeY_Millimeter=printSizeX_Millimeter*printAspect; printKeepAspect=true; JKQTPEnhancedDoubleSpinBox* spinSizeX=new JKQTPEnhancedDoubleSpinBox(dlg); spinSizeX->setRange(1,10000); spinSizeX->setValue(printSizeX_Millimeter); spinSizeX->setSingleStep(10); if (unitIsMM) spinSizeX->setDecimals(1); else spinSizeX->setDecimals(0); if (unitIsMM) spinSizeX->setSuffix(tr(" mm")); spinSizeX->setToolTip(tr("set the size of the output page")); connect(spinSizeX, SIGNAL(editingFinished(double)), this, SLOT(printpreviewSetSizeX(double))); spinSizeY=new JKQTPEnhancedDoubleSpinBox(dlg); spinSizeY->setRange(1,10000); spinSizeY->setValue(printSizeY_Millimeter); spinSizeY->setSingleStep(10); if (unitIsMM) spinSizeY->setDecimals(1); else spinSizeY->setDecimals(0); if (unitIsMM) spinSizeY->setSuffix(tr(" mm")); spinSizeY->setToolTip(tr("set the size of the output page")); spinSizeY->setEnabled(false); connect(spinSizeY, SIGNAL(editingFinished(double)), this, SLOT(printpreviewSetSizeY(double))); QCheckBox* chkAspect=new QCheckBox(tr("keep aspect ratio"), dlg); chkAspect->setChecked(true); chkAspect->setToolTip(tr("choose whether to keep the aspect ratio for the print/export, as on the screen.")); connect(chkAspect, SIGNAL(toggled(bool)), spinSizeY, SLOT(setDisabled(bool))); connect(chkAspect, SIGNAL(toggled(bool)), this, SLOT(printpreviewSetAspectRatio(bool))); layout->addWidget(new QLabel(tr("page size: ")), 0,layout->columnCount()); layout->addWidget(spinSizeX, 0,layout->columnCount()); layout->addWidget(new QLabel(tr(" x ")), 0,layout->columnCount()); layout->addWidget(spinSizeY, 0,layout->columnCount()); layout->addWidget(chkAspect, 0,layout->columnCount()); JKQTPEnhancedDoubleSpinBox* spinMagnification=new JKQTPEnhancedDoubleSpinBox(dlg); spinMagnification->setRange(1,1000); spinMagnification->setValue(printMagnification*100.0); spinMagnification->setSingleStep(10); spinMagnification->setDecimals(0); spinMagnification->setSuffix(tr(" %")); spinMagnification->setToolTip(tr("use this to change the base size of the plot
" "This will not change the size of the plot on
" "the page, only it's appearance. A magn. of 100%
" "will print the plot in the same proportions as
" "on the screen, whereas 50% will use twice as much
" "space for the plot, as on the screen. This mainly
" "influences the relative font size!
")); connect(spinMagnification, SIGNAL(editingFinished(double)), this, SLOT(printpreviewSetMagnification(double))); layout->addWidget(new QLabel(tr("magnification: ")), 0,layout->columnCount()); layout->addWidget(spinMagnification, 0,layout->columnCount()); JKQTPEnhancedDoubleSpinBox* spinLineWidthMult=new JKQTPEnhancedDoubleSpinBox(dlg); spinLineWidthMult->setRange(1,1000); spinLineWidthMult->setValue(lineWidthPrintMultiplier*100.0); spinLineWidthMult->setSingleStep(10); spinLineWidthMult->setDecimals(0); spinLineWidthMult->setSuffix(tr(" %")); spinLineWidthMult->setToolTip(tr("use this to change the relative width of the lines\n" "in the exported/printed plot.")); connect(spinLineWidthMult, SIGNAL(editingFinished(double)), this, SLOT(printpreviewSetLineWidthMultiplier(double))); JKQTPEnhancedDoubleSpinBox* spinFontSizeMult=new JKQTPEnhancedDoubleSpinBox(dlg); spinFontSizeMult->setRange(1,1000); spinFontSizeMult->setValue(fontSizePrintMultiplier*100.0); spinFontSizeMult->setSingleStep(10); spinFontSizeMult->setDecimals(0); spinFontSizeMult->setSuffix(tr(" %")); spinFontSizeMult->setToolTip(tr("use this to change the relative size of the text fonts\n" "in the exported/printed plot.")); connect(spinFontSizeMult, SIGNAL(editingFinished(double)), this, SLOT(printpreviewSetFontSizeMultiplier(double))); layout->addWidget(new QLabel(tr("magnification: ")), 0,layout->columnCount()); layout->addWidget(spinMagnification, 0,layout->columnCount()); layout->addWidget(new QLabel(tr("linewidth mult.: ")), 0,layout->columnCount()); layout->addWidget(spinLineWidthMult, 0,layout->columnCount()); layout->addWidget(new QLabel(tr("font size mult.: ")), 0,layout->columnCount()); layout->addWidget(spinFontSizeMult, 0,layout->columnCount()); layout->addWidget(new QWidget(), 0,layout->columnCount()); layout->setColumnStretch(layout->columnCount()-1, 1); layout->addWidget(scroll, layout->rowCount(),0, 1, layout->columnCount()); QDialogButtonBox* buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); connect(buttonBox, SIGNAL(accepted()), dlg, SLOT(accept())); connect(buttonBox, SIGNAL(rejected()), dlg, SLOT(reject())); layout->addWidget(buttonBox, layout->rowCount(),0, 1, layout->columnCount()); dlg->resize(800,500); updatePreviewLabel(); bool result=false; if (dlg->exec()==QDialog::Accepted) { result=true; } return result; } void JKQtBasePlotter::updatePreviewLabel() { double factor=1; if (exportUnitInMM) factor=600.0/double(printSizeX_Millimeter); QImage pix(double(printSizeX_Millimeter)*factor*1.1, double(printSizeY_Millimeter)*factor*1.1, QImage::Format_ARGB32); pix.fill(Qt::transparent); JKQTPEnhancedPainter painter; painter.begin(&pix); exportpreviewPaintRequested(painter, QSize(double(printSizeX_Millimeter)*factor, double(printSizeY_Millimeter)*factor)); painter.end(); if (exportPreviewLabel) { QPixmap pm; pm.convertFromImage(pix); exportPreviewLabel->setPixmap(pm); exportPreviewLabel->resize(pm.size()); } } void JKQtBasePlotter::printpreviewPaintRequested(QPrinter* printer) { double lw=lineWidthMultiplier; double fs=fontSizeMultiplier; QColor bc=backgroundColor; backgroundColor=exportBackgroundColor; lineWidthMultiplier=lineWidthPrintMultiplier; fontSizeMultiplier=fontSizePrintMultiplier; bool oldEmitPlotSignals=emitPlotSignals; emitPlotSignals=false; QApplication::setOverrideCursor(QCursor(Qt::WaitCursor)); QApplication::processEvents(); int oldWidgetWidth=widgetWidth; int oldWidgetHeight=widgetHeight; //widgetWidth=widgetWidth/printMagnification; //widgetHeight=widgetHeight/printMagnification; double oldpm=paintMagnification; paintMagnification=printMagnification; if (printSetAbsolutePageSize) { #ifdef SHOW_JKQTPLOTTER_DEBUG qDebug()<<"set printing abs. size to "<setPaperSize(QPrinter::Custom); printer->setOrientation(QPrinter::Portrait); printer->setPaperSize(QSizeF(printSizeX_Millimeter, printSizeY_Millimeter), QPrinter::Millimeter); if (!gridPrinting) widgetHeight=widgetWidth*printSizeY_Millimeter/printSizeX_Millimeter; } JKQTPEnhancedPainter painter; painter.begin(printer); if (!printSetAbsolutePageSize) { #ifdef SHOW_JKQTPLOTTER_DEBUG qDebug()<<"scale printing to "<pageRect().size()<<" "; QSizeF sl=QSizeF(QSizeF(printer->pageRect().size()).width()/printer->logicalDpiX()*25.4, QSizeF(printer->pageRect().size()).height()/printer->logicalDpiY()*25.4); qDebug()<<"print with paper size "<pageRect().size(), true, printScaleToPagesize, printScaleToPagesize); painter.end(); widgetWidth=oldWidgetWidth; widgetHeight=oldWidgetHeight; QApplication::restoreOverrideCursor(); QApplication::processEvents(); emitPlotSignals=oldEmitPlotSignals; lineWidthMultiplier=lw; fontSizeMultiplier=fs; paintMagnification=oldpm; backgroundColor=bc; } void JKQtBasePlotter::printpreviewPaintRequestedNew(QPrinter* printer) { QPaintDevice* paintDevice=dynamic_cast(printer); printpreviewPaintRequestedNew(paintDevice); } void JKQtBasePlotter::printpreviewPaintRequestedNew(QPaintDevice *paintDevice) { //QPaintDevice* paintDevice=dynamic_cast(printer); QPrinter* printer=dynamic_cast(paintDevice); QSvgGenerator* svg=dynamic_cast(paintDevice); double lw=lineWidthMultiplier; double fs=fontSizeMultiplier; QColor bc=backgroundColor; backgroundColor=exportBackgroundColor; lineWidthMultiplier=lineWidthPrintMultiplier; fontSizeMultiplier=fontSizePrintMultiplier; bool oldEmitPlotSignals=emitPlotSignals; emitPlotSignals=false; QApplication::setOverrideCursor(QCursor(Qt::WaitCursor)); QApplication::processEvents(); int oldWidgetWidth=widgetWidth; int oldWidgetHeight=widgetHeight; double oldpm=paintMagnification; paintMagnification=1.0; gridPrintingCalc(); if (printSetAbsolutePageSize) { #ifdef SHOW_JKQTPLOTTER_DEBUG qDebug()<<"set printing abs. size to "<setOrientation(QPrinter::Portrait); printer->setPaperSize(QSizeF(printSizeX_Millimeter, printSizeY_Millimeter), QPrinter::Millimeter); } else if (svg) { QRectF siz=QRectF(0,0,printSizeX_Millimeter,printSizeY_Millimeter); svg->setSize(QSize(ceil(siz.width()*svg->resolution()/25.4), ceil(siz.height()*svg->resolution()/25.4))); svg->setViewBox(QRect(0,0,-1,-1));//*25.4/double(svg->resolution()), printSizeY_Millimeter*25.4/double(svg->resolution()))); } } paintMagnification=gridPrintingSize.width()/(printSizeX_Millimeter/25.4*double(paintDevice->logicalDpiX())); if (!gridPrinting) widgetHeight=widgetWidth*printSizeY_Millimeter/printSizeX_Millimeter; JKQTPEnhancedPainter painter; if (printer) painter.begin(printer); else if (svg) painter.begin(svg); else painter.begin(paintDevice); if (printKeepAbsoluteFontSizes) { fontSizeMultiplier=1.0;//1.0/paintMagnification; } if (svg) { lineWidthMultiplier=lineWidthMultiplier*72.0/96.0; fontSizeMultiplier=fontSizeMultiplier*72.0/96.0; } #ifdef SHOW_JKQTPLOTTER_DEBUG qDebug()<<"\n\n\n=========================================================================="; qDebug()<<"printAspect = "<pageRect().size()<<" "; QSizeF sl=QSizeF(QSizeF(printer->pageRect().size()).width()/printer->logicalDpiX()*25.4, QSizeF(printer->pageRect().size()).height()/printer->logicalDpiY()*25.4); qDebug()<<"print with paper size "<size()<<" "; QSizeF sl=QSizeF(QSizeF(svg->viewBoxF().size()).width()/svg->resolution()*25.4, QSizeF(svg->size()).height()/svg->resolution()*25.4); qDebug()<<"print with paper size "<pageRect().size(), true, printScaleToPagesize, printScaleToPagesize); else if (svg) gridPaint(painter, svg->size(), true, printScaleToPagesize, printScaleToPagesize); else gridPaint(painter, QSizeF(paintDevice->width(), paintDevice->height()), true, printScaleToPagesize, printScaleToPagesize); painter.end(); widgetWidth=oldWidgetWidth; widgetHeight=oldWidgetHeight; QApplication::restoreOverrideCursor(); QApplication::processEvents(); emitPlotSignals=oldEmitPlotSignals; lineWidthMultiplier=lw; fontSizeMultiplier=fs; paintMagnification=oldpm; backgroundColor=bc; } void JKQtBasePlotter::exportpreviewPaintRequested(JKQTPEnhancedPainter &painter, QSize size) { double lw=lineWidthMultiplier; double fs=fontSizeMultiplier; QColor bc=backgroundColor; backgroundColor=exportBackgroundColor; lineWidthMultiplier=lineWidthPrintMultiplier; fontSizeMultiplier=fontSizePrintMultiplier; bool oldEmitPlotSignals=emitPlotSignals; emitPlotSignals=false; QApplication::setOverrideCursor(QCursor(Qt::WaitCursor)); QApplication::processEvents(); int oldWidgetWidth=widgetWidth; int oldWidgetHeight=widgetHeight; widgetWidth=size.width(); widgetHeight=size.height(); gridPaint(painter, size); widgetWidth=oldWidgetWidth; widgetHeight=oldWidgetHeight; QApplication::restoreOverrideCursor(); QApplication::processEvents(); emitPlotSignals=oldEmitPlotSignals; lineWidthMultiplier=lw; fontSizeMultiplier=fs; backgroundColor=bc; } void JKQtBasePlotter::printpreviewSetZoom(double value) { printZoomFactor=value/100.0; if (printPreview) printPreview->updatePreview(); if (exportPreviewLabel) updatePreviewLabel(); } void JKQtBasePlotter::printpreviewSetSizeX(double value) { printSizeX_Millimeter=value; if (printKeepAspect) { printSizeY_Millimeter=printSizeX_Millimeter*printAspect; spinSizeY->setValue(printSizeY_Millimeter); } if (printDoUpdate) { if (printPreview) printPreview->updatePreview(); if (exportPreviewLabel) updatePreviewLabel(); } } void JKQtBasePlotter::printpreviewSetSizeY(double value) { if (printKeepAspect) return; printSizeY_Millimeter=value; if (printDoUpdate) { if (printPreview) printPreview->updatePreview(); if (exportPreviewLabel) updatePreviewLabel(); } } void JKQtBasePlotter::printpreviewSetSizeXNew(double value) { printSizeX_Millimeter=value; if (printKeepAspect) { printSizeY_Millimeter=printSizeX_Millimeter*printAspect; spinSizeY->setValue(printSizeY_Millimeter); } } void JKQtBasePlotter::printpreviewSetSizeYNew(double value) { printSizeY_Millimeter=value; } void JKQtBasePlotter::printpreviewSetMagnification(double value) { printMagnification=value/100.0; if (printPreview) printPreview->updatePreview(); if (exportPreviewLabel) updatePreviewLabel(); } void JKQtBasePlotter::printpreviewSetMagnificationNew(double value) { printMagnification=value/100.0; printDoUpdate=false; if (spinSizeY) { spinSizeY->setValue(printMagnification*printPageSizeMM.height()); } if (spinSizeX) { spinSizeX->setValue(printMagnification*printPageSizeMM.width()); } printDoUpdate=true; } void JKQtBasePlotter::printpreviewSetAspectRatio(bool checked) { printKeepAspect=checked; if (printKeepAspect) { printSizeY_Millimeter=printSizeX_Millimeter*printAspect; spinSizeY->setValue(printSizeY_Millimeter); } if (printPreview) printPreview->updatePreview(); if (exportPreviewLabel) updatePreviewLabel(); } void JKQtBasePlotter::printpreviewSetKeepAbsFontsize(bool checked) { printKeepAbsoluteFontSizes=checked; if (printPreview) printPreview->updatePreview(); if (exportPreviewLabel) updatePreviewLabel(); } void JKQtBasePlotter::printpreviewToggleMagnification(bool checked) { if (checked) { if (spinMagnification) printpreviewSetMagnificationNew(spinMagnification->value()); } printpreviewUpdate(); } void JKQtBasePlotter::printpreviewSetLineWidthMultiplier(double value) { lineWidthPrintMultiplier=value/100.0; if (printPreview) printPreview->updatePreview(); if (exportPreviewLabel) updatePreviewLabel(); } void JKQtBasePlotter::printpreviewSetFontSizeMultiplier(double value) { fontSizePrintMultiplier=value/100.0; if (printPreview) printPreview->updatePreview(); if (exportPreviewLabel) updatePreviewLabel(); } void JKQtBasePlotter::printpreviewUpdate() { if (printDoUpdate) { if (printPreview) printPreview->updatePreview(); if (exportPreviewLabel) updatePreviewLabel(); } } void JKQtBasePlotter::draw(JKQTPEnhancedPainter& painter, QRect rect, bool drawOverlays) { #ifdef JKQTBP_AUTOTIMER JKQTPAutoOutputTimer jkaaot(QString("JKQtBasePlotter::draw(rect, %1)").arg(drawOverlays)); #endif bool oldEmitPlotSignals=emitPlotSignals; emitPlotSignals=false; #ifdef JKQTBP_DEBUGTIMING QString on=objectName(); if (on.isEmpty() && parent()) on=parent()->objectName(); qDebug()<objectName(); qDebug()<objectName(); qDebug()<(double)rect.width()) || (scale*(double)widgetHeight/paintMagnification>(double)rect.height())) { scale=(double)rect.height()/(double)widgetHeight*paintMagnification; } painter.save(); // scale the plot so it fits on the page painter.scale(scale, scale); #ifdef JKQTBP_DEBUGTIMING time.start(); #endif paintPlot(painter, drawOverlays); #ifdef JKQTBP_DEBUGTIMING qDebug()<objectName(); qDebug()<(double)rect.width()) || (scale*(double)widgetHeight/paintMagnification>(double)rect.height())) { scale=(double)rect.height()/(double)widgetHeight*paintMagnification; } painter.save(); // scale the plot so it fits on the page painter.scale(scale, scale); #ifdef JKQTBP_DEBUGTIMING time.start(); #endif paintPlot(painter, drawOverlays); #ifdef JKQTBP_DEBUGTIMING qDebug()<(double)rect.width()) || (scale*(double)widgetHeight/paintMagnification>(double)rect.height())) { scale=(double)rect.height()/(double)widgetHeight*paintMagnification; } painter.save(); // scale the plot so it fits on the page painter.scale(scale, scale); paintOverlays(painter); painter.restore(); painter.restore(); } void JKQtBasePlotter::registerAdditionalAction(const QString &key, QAction *act) { if (!lstAdditionalPlotterActions.contains(key)) { QList > l; lstAdditionalPlotterActions.insert(key, l); } lstAdditionalPlotterActions[key].append(act); AdditionalActionsMapIterator it(lstAdditionalPlotterActions); while (it.hasNext()) { it.next(); for (int i=it.value().size()-1; i>=0; i--) { if (!it.value().at(i)) { lstAdditionalPlotterActions[it.key()].removeAt(i); } } } } void JKQtBasePlotter::deregisterAdditionalAction(QAction *act) { AdditionalActionsMapIterator it(lstAdditionalPlotterActions); while (it.hasNext()) { it.next(); for (int i=it.value().size()-1; i>=0; i--) { if (it.value().at(i)==act) { lstAdditionalPlotterActions[it.key()].removeAt(i); } } } } void JKQtBasePlotter::copyData() { loadUserSettings(); QString result=""; QString qfresult; QSet cols=getDataColumnsByUser(); { QTextStream txt(&result); QLocale loc=QLocale::system(); loc.setNumberOptions(QLocale::OmitGroupSeparator); QChar dp=loc.decimalPoint(); QString sep="\t"; datastore->saveCSV(txt, cols, sep, QString(dp), " ", "\""); txt.flush(); } { QTextStream txt(&qfresult); datastore->saveCSV(txt, cols, ",", ".", "#!", "\""); txt.flush(); } QClipboard *clipboard = QApplication::clipboard(); QMimeData* mime=new QMimeData(); mime->setText(result); mime->setData("jkqtplotter/csv", qfresult.toUtf8()); clipboard->setMimeData(mime); //clipboard->setText(result); saveUserSettings(); } void JKQtBasePlotter::copyDataMatlab() { loadUserSettings(); QString result=""; { QTextStream txt(&result); datastore->saveMatlab(txt, getDataColumnsByUser()); txt.flush(); } QClipboard *clipboard = QApplication::clipboard(); clipboard->setText(result); saveUserSettings(); } void JKQtBasePlotter::saveData(QString filename, QString format) { loadUserSettings(); QStringList fileformats; QStringList fileformatIDs; fileformats<getFilter(); fileformatIDs<=0 && idx > dataset=datastore->getData(&cn); jkqtpSaveDataAdapters[idx]->saveJKQTPData(fn, dataset, cn); } } } } void JKQtBasePlotter::saveAsCSV(QString filename) { loadUserSettings(); QString fn=filename; if (fn.isEmpty()) { fn = QFileDialog::getSaveFileName(nullptr, tr("Save Plot Data"), currentSaveDirectory, tr("Comma Separated Values (*.csv *.dat)")); if (!fn.isEmpty()) currentSaveDirectory=QFileInfo(fn).absolutePath(); } if (!fn.isEmpty()) { datastore->saveCSV(fn, getDataColumnsByUser(), ", ", CSVdecimalSeparator, CSVcommentInitializer); } saveUserSettings(); } void JKQtBasePlotter::saveAsSYLK(QString filename) { loadUserSettings(); QString fn=filename; if (fn.isEmpty()) { fn = QFileDialog::getSaveFileName(nullptr, tr("Save Plot Data"), currentSaveDirectory, tr("SYLK spreadsheet (*.slk)")); if (!fn.isEmpty()) currentSaveDirectory=QFileInfo(fn).absolutePath(); } if (!fn.isEmpty()) { datastore->saveSYLK(fn, getDataColumnsByUser()); } saveUserSettings(); } void JKQtBasePlotter::saveAsMatlab(QString filename) { loadUserSettings(); QString fn=filename; if (fn.isEmpty()) { fn = QFileDialog::getSaveFileName(nullptr, tr("Save Plot Data"), currentSaveDirectory, tr("Matlab Script (*.m)")); if (!fn.isEmpty()) currentSaveDirectory=QFileInfo(fn).absolutePath(); } if (!fn.isEmpty()) { datastore->saveMatlab(fn, getDataColumnsByUser()); } saveUserSettings(); } void JKQtBasePlotter::saveAsDIF(QString filename) { loadUserSettings(); QString fn=filename; if (fn.isEmpty()) { fn = QFileDialog::getSaveFileName(nullptr, tr("Save Plot Data"), currentSaveDirectory, tr("DIF: Data Interchange Format (*.dif)")); if (!fn.isEmpty()) currentSaveDirectory=QFileInfo(fn).absolutePath(); } if (!fn.isEmpty()) { datastore->saveDIF(fn, getDataColumnsByUser()); } saveUserSettings(); } void JKQtBasePlotter::saveAsSemicolonSV(QString filename) { loadUserSettings(); QString fn=filename; if (fn.isEmpty()) { fn = QFileDialog::getSaveFileName(nullptr, tr("Save Plot Data"), currentSaveDirectory, tr("Comma Separated Values (*.csv *.dat)")); if (!fn.isEmpty()) currentSaveDirectory=QFileInfo(fn).absolutePath(); } if (!fn.isEmpty()) { datastore->saveCSV(fn, getDataColumnsByUser(), ";", CSVdecimalSeparator, CSVcommentInitializer); } saveUserSettings(); } void JKQtBasePlotter::saveAsTabSV(QString filename) { loadUserSettings(); QString fn=filename; if (fn.isEmpty()) { fn = QFileDialog::getSaveFileName(nullptr, tr("Save Plot Data"), currentSaveDirectory, tr("Tabulator Separated Values (*.txt)")); if (!fn.isEmpty()) currentSaveDirectory=QFileInfo(fn).absolutePath(); } if (!fn.isEmpty()) { datastore->saveCSV(fn, getDataColumnsByUser(), "\t", CSVdecimalSeparator, CSVcommentInitializer); } saveUserSettings(); } void JKQtBasePlotter::saveAsGerExcelCSV(QString filename) { loadUserSettings(); QString fn=filename; if (fn.isEmpty()) { fn = QFileDialog::getSaveFileName(nullptr, tr("Save Plot Data"), currentSaveDirectory, tr("Tabulator Separated Values (*.txt)")); if (!fn.isEmpty()) currentSaveDirectory=QFileInfo(fn).absolutePath(); } if (!fn.isEmpty()) { datastore->saveCSV(fn, getDataColumnsByUser(), ";", ",", " ", "\""); } saveUserSettings(); } void JKQtBasePlotter::saveAsPDF(QString filename, bool displayPreview) { loadUserSettings(); QString fn=filename; if (fn.isEmpty()) { fn = QFileDialog::getSaveFileName(nullptr, tr("Save Plot"), currentSaveDirectory, tr("PDF File (*.pdf)")); if (!fn.isEmpty()) currentSaveDirectory=QFileInfo(fn).absolutePath(); } if (!fn.isEmpty()) { QPrinter* printer=new QPrinter; bool doLandscape=widgetWidth>widgetHeight; if (gridPrinting) { gridPrintingCalc(); doLandscape=gridPrintingSize.width()>gridPrintingSize.height(); } if (doLandscape) { printer->setOrientation(QPrinter::Landscape); } else { printer->setOrientation(QPrinter::Portrait); } printer->setOutputFormat(QPrinter::PdfFormat); printer->setColorMode(QPrinter::Color); printer->setOutputFileName(fn); printer->setPageMargins(0,0,0,0,QPrinter::Millimeter); printer->setColorMode(QPrinter::Color); printpreviewNew(printer, true, -1.0, -1.0, displayPreview); delete printer; } saveUserSettings(); } void JKQtBasePlotter::saveAsPS(QString filename, bool displayPreview) { #if (QT_VERSION < QT_VERSION_CHECK(5, 0, 0)) loadUserSettings(); QString fn=filename; if (fn.isEmpty()) { fn = QFileDialog::getSaveFileName(nullptr, tr("Save Plot"), currentSaveDirectory, tr("PostScript File (*.ps)")); if (!fn.isEmpty()) currentSaveDirectory=QFileInfo(fn).absolutePath(); } if (!fn.isEmpty()) { QPrinter* printer=new QPrinter; bool doLandscape=widgetWidth>widgetHeight; if (gridPrinting) { gridPrintingCalc(); doLandscape=gridPrintingSize.width()>gridPrintingSize.height(); } if (doLandscape) { printer->setOrientation(QPrinter::Landscape); } else { printer->setOrientation(QPrinter::Portrait); } printer->setOutputFormat(QPrinter::PostScriptFormat); printer->setColorMode(QPrinter::Color); printer->setOutputFileName(fn); printer->setPageMargins(0,0,0,0,QPrinter::Millimeter); printpreviewNew(printer, true, -1.0, -1.0, displayPreview); delete printer; } saveUserSettings(); #else saveAsPDF(filename+".pdf", displayPreview); #endif } void JKQtBasePlotter::saveImage(QString filename, bool displayPreview) { loadUserSettings(); QString fn=filename; QStringList filt; filt<getFilter(); } int qtwritersidx=filt.size(); QList writerformats=QImageWriter::supportedImageFormats(); for (int i=0; iopen(); tempFM=tf->fileName(); tf->close(); delete tf; QFile::copy(fn, tempFM); } mathText.set_useUnparsed(!jkqtpPaintDeviceAdapters[adapterID]->useLatexParser()); gridPrintingCalc(); QPaintDevice* svg=jkqtpPaintDeviceAdapters[adapterID]->createPaintdevice(fn, gridPrintingSize.width(), gridPrintingSize.height()); if (!printpreviewNew(svg, jkqtpPaintDeviceAdapters[adapterID]->getSetAbsolutePaperSize(), jkqtpPaintDeviceAdapters[adapterID]->getPrintSizeXInMM(), jkqtpPaintDeviceAdapters[adapterID]->getPrintSizeYInMM(), displayPreview)) { delete svg; if (QFile::exists(tempFM)) { QFile::copy(tempFM, fn); QFile::remove(tempFM); } } else { delete svg; svg=jkqtpPaintDeviceAdapters[adapterID]->createPaintdeviceMM(fn,printSizeX_Millimeter,printSizeY_Millimeter); printpreviewPaintRequestedNew(svg); delete svg; } } else { saveAsPixelImage(fn, displayPreview, writerformats.value(filtID-qtwritersidx, QByteArray())); } } } void JKQtBasePlotter::saveAsPixelImage(QString filename, bool displayPreview, const QByteArray& outputFormat) { loadUserSettings(); QString fn=filename; QStringList filt; QList writerformats=QImageWriter::supportedImageFormats(); for (int i=0; i=0 && filtID0) { form =outputFormat; } /*if (filtID==2 || ext=="tif" || ext=="tiff") { // currentFileFormat form="TIFF"; } else if (filtID==0 || ext=="png") { form="PNG"; } else if (filtID==1 || ext=="bmp") { form="BMP"; } else if (filtID==3 || ext=="jpg" || ext=="jpeg") { form="JPEG"; } else if (ext=="ppm") { form="PPM"; } else if (filtID==4 || ext=="xbm") { form="XBM"; } else if (filtID==5 || ext=="xpm") { form="XPM"; }*/ gridPrintingCalc(); //std::cout<mimeData()->formats(); clipboard->setImage(png); qDebug()<<"clipboard after adding content:\n"<mimeData()->formats(); */ gridPrintingCalc(); //std::cout<setResolution(96); //svg->setResolution(300); QSize size=QSize(printSizeX_Millimeter, printSizeX_Millimeter); double factor=double(size.width())/double(widgetWidth)*paintMagnification; // TODO: CORRECT THIS //qDebug()<setSize(size); svg->setOutputDevice(&buffer); JKQTPEnhancedPainter painter; painter.begin(svg); painter.scale(factor,factor); printAspect=printSizeY_Millimeter/printSizeX_Millimeter; exportpreviewPaintRequested(painter, QSize(widgetWidth/paintMagnification, widgetWidth/paintMagnification*printAspect)); painter.end(); delete svg; } QClipboard *clipboard = QApplication::clipboard(); //qDebug()<<"clipboard before adding content:\n"<mimeData()->formats(); //clipboard->setImage(png); clipboard->clear(); clipboard->setPixmap(QPixmap::fromImage(png)); QMimeData* mime=new QMimeData(); mime->setImageData(QPixmap::fromImage(png)); QBuffer pngbuf; png.save(&pngbuf, "png"); mime->setData("image/x-png", pngbuf.data()); png.save(&pngbuf, "bmp"); mime->setData("image/bmp", pngbuf.data()); mime->setData("image/svg+xml", svgdata); clipboard->setMimeData(mime); //qDebug()<<"clipboard after adding content:\n"<mimeData()->formats(); QApplication::restoreOverrideCursor(); //} } } void JKQtBasePlotter::saveAsSVG(QString filename, bool displayPreview) { loadUserSettings(); QString fn=filename; if (fn.isEmpty()) { fn = QFileDialog::getSaveFileName(nullptr, tr("Save Plot"), currentSaveDirectory, tr("SVG Image (*.svg)")); if (!fn.isEmpty()) currentSaveDirectory=QFileInfo(fn).absolutePath(); } if (!fn.isEmpty()) { QString tempFM=""; if (QFile::exists(fn)) { #ifdef QFWIDLIB_LIBRARY QFTemporaryFile* tf=new QFTemporaryFile(); #else QTemporaryFile* tf=new QTemporaryFile(); #endif tf->open(); tempFM=tf->fileName(); tf->close(); delete tf; QFile::copy(fn, tempFM); } gridPrintingCalc(); QSvgGenerator* svg=new QSvgGenerator; svg->setResolution(96); QSize size=QSize(gridPrintingSize.width()*25.4/svg->resolution(), gridPrintingSize.height()*25.4/svg->resolution()); svg->setSize(size); svg->setFileName(fn); if (!printpreviewNew(svg, true, -1.0, -1.0, displayPreview)) { if (QFile::exists(tempFM)) { QFile::copy(tempFM, fn); QFile::remove(tempFM); } } delete svg; } saveUserSettings(); } void JKQtBasePlotter::setBorder(int left, int right, int top, int bottom){ plotBorderTop=top; plotBorderLeft=left; plotBorderBottom=bottom; plotBorderRight=right; //updateGeometry(); if (emitPlotSignals) emit plotUpdated(); } void JKQtBasePlotter::synchronizeToMaster(JKQtBasePlotter* master, bool synchronizeWidth, bool synchronizeHeight, bool synchronizeZoomingMasterToSlave, bool synchronizeZoomingSlaveToMaster) { if (!master) { resetMasterSynchronization(); } masterPlotter=master; if (masterSynchronizeHeight!=synchronizeHeight && masterSynchronizeHeight) { disconnect(masterPlotter, SIGNAL(zoomChangedLocally(double,double,double,double,JKQtBasePlotter*)), this, SLOT(synchronizeYAxis(double,double,double,double,JKQtBasePlotter*))); disconnect(this, SIGNAL(zoomChangedLocally(double,double,double,double,JKQtBasePlotter*)), masterPlotter, SLOT(synchronizeYAxis(double,double,double,double,JKQtBasePlotter*))); } if (masterSynchronizeWidth!=synchronizeWidth && masterSynchronizeWidth) { disconnect(masterPlotter, SIGNAL(zoomChangedLocally(double,double,double,double,JKQtBasePlotter*)), this, SLOT(synchronizeXAxis(double,double,double,double,JKQtBasePlotter*))); disconnect(this, SIGNAL(zoomChangedLocally(double,double,double,double,JKQtBasePlotter*)), masterPlotter, SLOT(synchronizeXAxis(double,double,double,double,JKQtBasePlotter*))); } masterSynchronizeHeight=synchronizeHeight; masterSynchronizeWidth=synchronizeWidth; if (masterSynchronizeWidth) { if (synchronizeZoomingMasterToSlave) { connect(master, SIGNAL(zoomChangedLocally(double,double,double,double,JKQtBasePlotter*)), this, SLOT(synchronizeXAxis(double,double,double,double,JKQtBasePlotter*))); } if (synchronizeZoomingSlaveToMaster) { connect(this, SIGNAL(zoomChangedLocally(double,double,double,double,JKQtBasePlotter*)), master, SLOT(synchronizeXAxis(double,double,double,double,JKQtBasePlotter*))); } } if (masterSynchronizeWidth) { if (synchronizeHeight) { connect(master, SIGNAL(zoomChangedLocally(double,double,double,double,JKQtBasePlotter*)), this, SLOT(synchronizeYAxis(double,double,double,double,JKQtBasePlotter*))); } if (synchronizeZoomingSlaveToMaster) { connect(this, SIGNAL(zoomChangedLocally(double,double,double,double,JKQtBasePlotter*)), master, SLOT(synchronizeYAxis(double,double,double,double,JKQtBasePlotter*))); } } } void JKQtBasePlotter::resetMasterSynchronization() { masterPlotter=nullptr; masterSynchronizeHeight=false; masterSynchronizeWidth=false; disconnect(masterPlotter, SIGNAL(zoomChangedLocally(double,double,double,double,JKQtBasePlotter*)), this, SLOT(synchronizeXAxis(double,double,double,double,JKQtBasePlotter*))); disconnect(this, SIGNAL(zoomChangedLocally(double,double,double,double,JKQtBasePlotter*)), masterPlotter, SLOT(synchronizeXAxis(double,double,double,double,JKQtBasePlotter*))); disconnect(masterPlotter, SIGNAL(zoomChangedLocally(double,double,double,double,JKQtBasePlotter*)), this, SLOT(synchronizeYAxis(double,double,double,double,JKQtBasePlotter*))); disconnect(this, SIGNAL(zoomChangedLocally(double,double,double,double,JKQtBasePlotter*)), masterPlotter, SLOT(synchronizeYAxis(double,double,double,double,JKQtBasePlotter*))); } void JKQtBasePlotter::synchronizeXAxis(double newxmin, double newxmax, double /*newymin*/, double /*newymax*/, JKQtBasePlotter * /*sender*/) { setX(newxmin, newxmax); } void JKQtBasePlotter::synchronizeYAxis(double /*newxmin*/, double /*newxmax*/, double newymin, double newymax, JKQtBasePlotter * /*sender*/) { setY(newymin, newymax); } void JKQtBasePlotter::synchronizeXYAxis(double newxmin, double newxmax, double newymin, double newymax, JKQtBasePlotter * /*sender*/) { setXY(newxmin, newxmax, newymin, newymax); } size_t JKQtBasePlotter::addGraph(size_t xColumn, size_t yColumn, QString title, JKQTPgraphPlotstyle graphStyle) { if (graphStyle==JKQTPimpulsesHorizontal) { JKQTPimpulsesHorizontalGraph* gr=new JKQTPimpulsesHorizontalGraph(this); gr->set_title(title); gr->set_xColumn(xColumn); gr->set_yColumn(yColumn); return addGraph(gr); } else if (graphStyle==JKQTPimpulsesVertical) { JKQTPimpulsesVerticalGraph* gr=new JKQTPimpulsesVerticalGraph(this); gr->set_title(title); gr->set_xColumn(xColumn); gr->set_yColumn(yColumn); return addGraph(gr); } else if (graphStyle==JKQTPfilledCurveX) { JKQTPfilledCurveXGraph* gr=new JKQTPfilledCurveXGraph(this); gr->set_title(title); gr->set_xColumn(xColumn); gr->set_yColumn(yColumn); return addGraph(gr); } else if (graphStyle==JKQTPfilledCurveY) { JKQTPfilledCurveYGraph* gr=new JKQTPfilledCurveYGraph(this); gr->set_title(title); gr->set_xColumn(xColumn); gr->set_yColumn(yColumn); return addGraph(gr); } else if (graphStyle==JKQTPstepsX) { JKQTPstepHorizontalGraph* gr=new JKQTPstepHorizontalGraph(this); gr->set_title(title); gr->set_xColumn(xColumn); gr->set_yColumn(yColumn); return addGraph(gr); } else if (graphStyle==JKQTPstepsY) { JKQTPstepVerticalGraph* gr=new JKQTPstepVerticalGraph(this); gr->set_title(title); gr->set_xColumn(xColumn); gr->set_yColumn(yColumn); return addGraph(gr); } else { JKQTPxyLineGraph* gr=new JKQTPxyLineGraph(this); gr->set_title(title); gr->set_xColumn(xColumn); gr->set_yColumn(yColumn); if (graphStyle==JKQTPpoints) { gr->set_symbol(JKQTPplus); gr->set_drawLine(false); } else if (graphStyle==JKQTPlinesPoints) gr->set_symbol(JKQTPplus); return addGraph(gr); } return -1; } size_t JKQtBasePlotter::addGraph(size_t xColumn, size_t yColumn, QString title, JKQTPgraphPlotstyle graphStyle, QColor color, JKQTPgraphSymbols symbol, Qt::PenStyle penstyle, double width) { if (graphStyle==JKQTPimpulsesHorizontal) { JKQTPimpulsesHorizontalGraph* gr=new JKQTPimpulsesHorizontalGraph(this); gr->set_title(title); gr->set_xColumn(xColumn); gr->set_yColumn(yColumn); gr->set_color(color); gr->set_lineWidth(width); return addGraph(gr); } else if (graphStyle==JKQTPimpulsesVertical) { JKQTPimpulsesVerticalGraph* gr=new JKQTPimpulsesVerticalGraph(this); gr->set_title(title); gr->set_xColumn(xColumn); gr->set_yColumn(yColumn); gr->set_color(color); gr->set_lineWidth(width); return addGraph(gr); } else if (graphStyle==JKQTPfilledCurveX) { JKQTPfilledCurveXGraph* gr=new JKQTPfilledCurveXGraph(this); gr->set_title(title); gr->set_xColumn(xColumn); gr->set_yColumn(yColumn); gr->set_color(QColor("black")); gr->set_lineWidth(width); gr->set_style(penstyle); gr->set_fillColor(color); return addGraph(gr); } else if (graphStyle==JKQTPfilledCurveY) { JKQTPfilledCurveYGraph* gr=new JKQTPfilledCurveYGraph(this); gr->set_title(title); gr->set_xColumn(xColumn); gr->set_yColumn(yColumn); gr->set_color(QColor("black")); gr->set_lineWidth(width); gr->set_style(penstyle); gr->set_fillColor(color); return addGraph(gr); } else if (graphStyle==JKQTPstepsX) { JKQTPstepHorizontalGraph* gr=new JKQTPstepHorizontalGraph(this); gr->set_title(title); gr->set_xColumn(xColumn); gr->set_yColumn(yColumn); gr->set_color(QColor("black")); gr->set_lineWidth(width); gr->set_style(penstyle); gr->set_fillColor(color); return addGraph(gr); } else if (graphStyle==JKQTPstepsY) { JKQTPstepVerticalGraph* gr=new JKQTPstepVerticalGraph(this); gr->set_title(title); gr->set_xColumn(xColumn); gr->set_yColumn(yColumn); gr->set_color(QColor("black")); gr->set_lineWidth(width); gr->set_style(penstyle); gr->set_fillColor(color); return addGraph(gr); } else { JKQTPxyLineGraph* gr=new JKQTPxyLineGraph(this); gr->set_title(title); gr->set_xColumn(xColumn); gr->set_yColumn(yColumn); gr->set_lineWidth(width); gr->set_style(penstyle); gr->set_color(color); gr->set_symbol(symbol); if (graphStyle==JKQTPpoints) { gr->set_symbol(JKQTPplus); gr->set_drawLine(false); } else if (graphStyle==JKQTPlinesPoints) gr->set_symbol(JKQTPplus); return addGraph(gr); } return -1; } size_t JKQtBasePlotter::addHorizontalBoxplot(QString title, int posColumn, int medianColumn, int minColumn, int maxColumn, int percentile25Column, int percentile75Column, int meanColumn) { JKQTPboxplotHorizontalGraph* box=new JKQTPboxplotHorizontalGraph(this); box->set_posColumn(posColumn); box->set_medianColumn(medianColumn); box->set_meanColumn(meanColumn); box->set_minColumn(minColumn); box->set_maxColumn(maxColumn); box->set_percentile25Column(percentile25Column); box->set_percentile75Column(percentile75Column); box->set_title(title); return addGraph(box); } size_t JKQtBasePlotter::addVerticalBoxplot(QString title, int posColumn, int medianColumn, int minColumn, int maxColumn, int percentile25Column, int percentile75Column, int meanColumn) { JKQTPboxplotVerticalGraph* box=new JKQTPboxplotVerticalGraph(this); box->set_posColumn(posColumn); box->set_medianColumn(medianColumn); box->set_meanColumn(meanColumn); box->set_minColumn(minColumn); box->set_maxColumn(maxColumn); box->set_percentile25Column(percentile25Column); box->set_percentile75Column(percentile75Column); box->set_title(title); return addGraph(box); } void JKQtBasePlotter::addHorizontalBargraph(size_t xColumn, QVector yColumns, QStringList titles) { double w=0.9; double width=w/(double)yColumns.size(); double s=-1.0*w/2.0+width/2.0; for (int i=0; iset_title(titles[i]); g->set_xColumn(xColumn); g->set_yColumn(yColumns[i]); g->set_shift(s); g->set_width(width); //std::cout<<"shift="<get_title()<metaObject()->className(); if (g->get_visible()) g->draw(painter); } if (useClipping) { painter.setClipping(false); } for (int j=0; jget_visible()) { g->getOutsideSize(painter, leftSpace, rightSpace, topSpace, bottomSpace); ibTop+=topSpace; ibLeft+=leftSpace; g->drawOutside(painter, QRect(iplotBorderLeft+iplotKeyBorderLeft-ibLeft, iplotBorderTop, leftSpace, plotHeight), QRect(iplotBorderLeft+plotWidth+ibRight-iplotKeyBorderRight, iplotBorderTop, rightSpace, plotHeight), QRect(iplotBorderLeft, iplotBorderTop-ibTop+iplotKeyBorderTop, plotWidth, topSpace), QRect(iplotBorderLeft, iplotBorderTop+plotHeight+ibBottom, plotWidth, bottomSpace) ); ibRight+=rightSpace; ibBottom+=bottomSpace; } } //qDebug()<<" end JKQtPlotterBase::plotGraphs()"; } void JKQtBasePlotter::plotKeyContents(JKQTPEnhancedPainter& painter, double x, double y, double /*width*/, double /*height*/){ #ifdef JKQTBP_AUTOTIMER JKQTPAutoOutputTimer jkaaot(QString("JKQtBasePlotter::plotKeyContents(%1, %2, %3, %4)").arg(x).arg(y).arg(width).arg(height)); #endif painter.save(); double key_text_width=0; double key_text_height=0; double dw, dh; int columns=1; int lines=1; getKeyExtent(painter, &dw, &dh, &key_text_width, &key_text_height, &columns, &lines); #ifdef SHOW_JKQTPLOTTER_DEBUG qDebug()<<"key_item_height="<get_title())); #endif if (!g->get_title().isEmpty() && g->get_visible()) { QSizeF fs=getTextSizeSize(keyFont,keyFontSize*fontSizeMultiplier,g->get_title(),painter);// mt.getSize(painter); double itheight=qMax(key_item_height*kfm.width('X'), fs.height()); QRectF rect(x, y+1.5*lineWidthMultiplier, key_line_length*kfm.width('X'), itheight-3.0*lineWidthMultiplier); g->drawKeyMarker(painter, rect); mathText.set_fontColor(QColor("black")); mathText.set_fontSize(keyFontSize*fontSizeMultiplier); mathText.set_fontRoman(keyFont); mathText.parse(g->get_title()); mathText.draw(painter, Qt::AlignLeft|Qt::AlignVCenter, QRectF(x+(key_line_length+keyXSeparation)*kfm.width('X'),y, key_text_width, itheight)); //if (itheightget_title())); #endif if (!g->get_title().isEmpty() && g->get_visible()) { QSizeF fs=getTextSizeSize(keyFont,keyFontSize*fontSizeMultiplier,g->get_title(),painter);// mt.getSize(painter); double itheight=qMax(key_item_height*kfm.width('X'), fs.height()); QRectF rect(x, y+1.5*lineWidthMultiplier, key_line_length*kfm.width('X'), itheight-3.0*lineWidthMultiplier); g->drawKeyMarker(painter, rect); mathText.set_fontColor(QColor("black")); mathText.set_fontSize(keyFontSize*fontSizeMultiplier); mathText.set_fontRoman(keyFont); mathText.parse(g->get_title()); mathText.draw(painter, Qt::AlignLeft|Qt::AlignVCenter, QRectF(x+(key_line_length+keyXSeparation)*kfm.width('X'),y, fs.width(), itheight)); //if (itheight(plotWidth)/(double)(key_item_width*kfm.width('X'))); bool colfirst=true; if (keyPosition==JKQTPkeyInsideTopLeft || keyPosition==JKQTPkeyInsideTopRight || keyPosition==JKQTPkeyOutsideTopLeft || keyPosition==JKQTPkeyOutsideTopRight) { colfirst=false; } int l=1; int c=1; double xx=x; double yy=y; for (int i=0; iget_title())); #endif if (!g->get_title().isEmpty() && g->get_visible()) { //QSizeF fs=getTextSizeSize(keyFont,keyFontSize*fontSizeMultiplier,g->get_title(),painter);// mt.getSize(painter); double itheight=qMax(key_item_height*kfm.width('X'), key_text_height); QRectF rect(xx, yy+1.5*lineWidthMultiplier, key_line_length*kfm.width('X'), itheight-3.0*lineWidthMultiplier); g->drawKeyMarker(painter, rect); mathText.set_fontColor(QColor("black")); mathText.set_fontSize(keyFontSize*fontSizeMultiplier); mathText.set_fontRoman(keyFont); mathText.parse(g->get_title()); //QSizeF fs=mt.getSize(painter); mathText.draw(painter, Qt::AlignLeft|Qt::AlignVCenter, QRectF(xx+(key_line_length+keyXSeparation)*kfm.width('X'),yy, key_text_width, key_text_height)); if (colfirst) { yy=yy+key_text_height+(keyYSeparation)*kfm.width('X'); l++; if (l>lines) { l=1; c++; xx=xx+key_text_width+(key_line_length+2.0*keyXSeparation)*kfm.width('X'); /*if (keyAutosize) xx=xx+key_text_width+(key_line_length+3.0*keyXSeparation)*kfm.width('X'); else xx=xx+(key_item_width+2.0*keyXSeparation)*kfm.width('X');*/ yy=y; } } else { /*if (keyAutosize) xx=xx+key_text_width+(key_line_length+3.0*keyXSeparation)*kfm.width('X'); else xx=xx+(key_item_width+2.0*keyXSeparation)*kfm.width('X');*/ xx=xx+key_text_width+(key_line_length+2.0*keyXSeparation)*kfm.width('X'); c++; if (c>columns) { c=1; l++; //yy=yy+(key_item_height+keyYSeparation)*kfm.height(); yy=yy+itheight+(keyYSeparation)*kfm.width('X'); xx=x; } } } } } /*painter.setPen(pold); painter.setBrush(bold);*/ painter.restore(); } void JKQtBasePlotter::getKeyExtent(JKQTPEnhancedPainter& painter, double* width, double* height, double* text_width, double* text_height, int* columns_count, int *lines_count) { #ifdef JKQTBP_AUTOTIMER JKQTPAutoOutputTimer jkaaot("JKQtBasePlotter::getKeyExtent"); #endif QFont f=painter.font(); f.setFamily(keyFont); f.setPointSizeF(keyFontSize*fontSizeMultiplier); QFontMetricsF kfm(f); if (text_height!=nullptr) *text_height=key_item_height*kfm.width('X'); if (keyLayout==JKQTPkeyLayoutOneColumn) { int keyHeight=graphs.size(); double w=0; double h=0; painter.setFont(f); if (text_height!=nullptr) *text_height=0; for (int i=0; iget_title().isEmpty() || !graphs[i]->get_visible()) { keyHeight--; } else { //mt.parse(graphs[i]->get_title()); //QSizeF fs=mt.getSize(painter); QSizeF fs=getTextSizeSize(keyFont, keyFontSize*fontSizeMultiplier, graphs[i]->get_title(), painter); if (fs.width()>w) w=fs.width(); if (text_height && fs.height()>*text_height) *text_height=fs.height(); h=h+qMax(key_item_height*kfm.width('X'), fs.height())+keyYSeparation*kfm.width('X'); } } if (keyAutosize) { if (width) *width=w+(key_line_length+2.0*keyXSeparation)*kfm.width('X'); if (text_width!=nullptr) *text_width=w+2.0*kfm.width('X'); } else { if (width) *width=key_item_width*kfm.width('X'); if (text_width!=nullptr) *text_width=(key_item_width-(key_line_length+keyXSeparation))*kfm.width('X'); } if (h>keyYSeparation*kfm.width('X')) h=h-keyYSeparation*kfm.width('X'); if (height) *height=h;//keyHeight*key_item_height*kfm.width('X'); if (columns_count) *columns_count=1; if (lines_count) *lines_count=keyHeight; } else if (keyLayout==JKQTPkeyLayoutOneRow) { int keyWidth=graphs.size(); double w=0; double h=0; painter.setFont(f); if (text_width!=nullptr) *text_width=0; for (int i=0; iget_title().isEmpty() || !graphs[i]->get_visible()) { keyWidth--; } else { //mt.parse(graphs[i]->get_title()); //QSizeF fs=mt.getSize(painter); QSizeF fs=getTextSizeSize(keyFont, keyFontSize*fontSizeMultiplier, graphs[i]->get_title(), painter); if (fs.height()>h) h=fs.height(); if (text_width && fs.width()>*text_width) *text_width=fs.width(); w=w+fs.width()+(key_line_length+2.0*keyXSeparation)*kfm.width('X'); } } if (h(keyXSeparation)*kfm.width('X')) w=w-(keyXSeparation)*kfm.width('X'); if (width) *width=w;//keyHeight*key_item_height*kfm.width('X'); if (columns_count) *columns_count=keyWidth; if (lines_count) *lines_count=1; } else if (keyLayout==JKQTPkeyLayoutMultiColumn) { // copied code in plotKeyContents()!!! double keyHeight=graphs.size(); double w=0; double txtH=0; QFont f=painter.font(); f.setFamily(keyFont); f.setPointSizeF(keyFontSize*fontSizeMultiplier); painter.setFont(f); for (int i=0; iget_title().isEmpty() || !graphs[i]->get_visible()) { keyHeight--; } else { //mt.parse(graphs[i]->get_title()); //QSizeF fs=mt.getSize(painter); QSizeF fs=getTextSizeSize(keyFont, keyFontSize*fontSizeMultiplier, graphs[i]->get_title(), painter); if (fs.width()>w) w=fs.width(); if ( fs.height()>txtH) txtH=fs.height(); } } if (text_height) { if (keyAutosize) *text_height=txtH; else *text_height=key_item_height*kfm.width('X'); } double columns=floor(double(plotWidth)/(w+(2.0*keyXSeparation+key_line_length)*kfm.width('X'))); if (!keyAutosize) columns=floor(double(plotWidth)/((key_item_width+2.0*keyXSeparation+key_line_length)*kfm.width('X'))); columns=qMin(columns, keyHeight); int lines=(int)ceil((double)keyHeight/(double)columns); lines=qMin((double)lines, keyHeight); if (keyPosition==JKQTPkeyInsideTopLeft || keyPosition==JKQTPkeyInsideTopRight || keyPosition==JKQTPkeyOutsideTopLeft || keyPosition==JKQTPkeyOutsideTopRight) { if (keyAutosize) { lines=(int)floor(static_cast(plotHeight)/(double)(txtH+(keyYSeparation)*kfm.width('X'))); } else { lines=(int)floor(static_cast(plotHeight)/(double)((key_item_height+keyYSeparation)*kfm.width('X'))); } columns=(int)ceil((double)keyHeight/(double)lines); lines=qMin((double)lines, keyHeight); } if (columns_count) *columns_count=columns; if (lines_count) *lines_count=lines; if (keyAutosize) { if (width) *width=(w+(key_line_length+3.0*keyXSeparation)*kfm.width('X'))*columns; if (height) *height=lines*(txtH+keyYSeparation*kfm.width('X')); if (lines>0) *height=*height-keyYSeparation*kfm.width('X'); if (text_width!=nullptr) *text_width=w; } else { if (width) *width=(key_item_width+2.0*keyXSeparation)*kfm.width('X')*columns; if (height) *height=lines*(key_item_height+keyYSeparation)*kfm.width('X'); if (lines>0) *height=*height-keyYSeparation*kfm.width('X'); if (text_width!=nullptr) *text_width=(key_item_width-(key_line_length+keyXSeparation))*kfm.width('X'); } #ifdef SHOW_JKQTPLOTTER_DEBUG qDebug()<<"getKeyExtent(): mult-column: columns="< xxmin="< yymin="<getMin(), xAxis->getMax(), yAxis->getMin(), yAxis->getMax(), this); } JKQTPoverlayElement *JKQtBasePlotter::getOverlayElement(size_t i) { return overlays[i]; } size_t JKQtBasePlotter::getOverlayElementCount() { return overlays.size(); } void JKQtBasePlotter::deleteOverlayElement(size_t i, bool deletegraph) { if (long(i)<0 || long(i)>=overlays.size()) return; JKQTPoverlayElement* g=overlays[i]; overlays.removeAt(i); if (deletegraph && g) delete g; if (emitPlotSignals) emit overlaysUpdated(); } void JKQtBasePlotter::deleteOverlayElement(JKQTPoverlayElement *gr, bool deletegraph) { int i=overlays.indexOf(gr); while (i>=0) { overlays.removeAt(i); i=overlays.indexOf(gr); } if (deletegraph && gr) delete gr; if (emitPlotSignals) emit overlaysUpdated(); } void JKQtBasePlotter::clearOverlayElement(bool deleteGraphs) { for (int i=0; isetParent(this); for (int i=0; isetParent(this); for (int i=0; i &gr) { for (int i=0; i< gr.size(); i++) { addOverlayElement(gr[i]); } } QVector JKQtBasePlotter::getBoundingLinesX1Y1(QRectF* rect) const { QVector l; const QPointF pmimi=QPointF(x2p(xAxis->getMin()), y2p(yAxis->getMin())); const QPointF pmima=QPointF(x2p(xAxis->getMin()), y2p(yAxis->getMax())); const QPointF pmami=QPointF(x2p(xAxis->getMax()), y2p(yAxis->getMin())); const QPointF pmama=QPointF(x2p(xAxis->getMax()), y2p(yAxis->getMax())); l.append(QLineF(pmimi, pmami)); l.append(QLineF(pmami, pmama)); l.append(QLineF(pmama, pmima)); l.append(QLineF(pmima, pmimi)); if (rect) *rect=QRectF(pmimi,pmama); return l; } JKQTPplotElement* JKQtBasePlotter::getGraph(size_t i) { return graphs[i]; }; size_t JKQtBasePlotter::getGraphCount() { return graphs.size(); }; void JKQtBasePlotter::deleteGraph(size_t i, bool deletegraph) { if (long(i)<0 || long(i)>=graphs.size()) return; JKQTPplotElement* g=graphs[i]; graphs.removeAt(i); if (deletegraph && g) delete g; if (emitPlotSignals) emit plotUpdated(); }; void JKQtBasePlotter::deleteGraph(JKQTPplotElement* gr, bool deletegraph) { int i=graphs.indexOf(gr); while (i>=0) { graphs.removeAt(i); i=graphs.indexOf(gr); } if (deletegraph && gr) delete gr; if (emitPlotSignals) emit plotUpdated(); } void JKQtBasePlotter::clearGraphs(bool deleteGraphs) { for (int i=0; iset_visible(false); } if (emitPlotSignals) emit plotUpdated(); } void JKQtBasePlotter::setAllGraphsVisible() { for (int i=0; iset_visible(true); } if (emitPlotSignals) emit plotUpdated(); } void JKQtBasePlotter::setGraphVisible(int i, bool visible) { JKQTPplotElement* g=graphs.value(i, nullptr); if (g) g->set_visible(visible); if (emitPlotSignals) emit plotUpdated(); } void JKQtBasePlotter::setOnlyGraphVisible(int gr) { for (int i=0; iset_visible(false); } JKQTPplotElement* g=graphs.value(gr, nullptr); if (g) g->set_visible(true); if (emitPlotSignals) emit plotUpdated(); } void JKQtBasePlotter::setOnlyNthGraphsVisible(int start, int n) { for (int i=0; iset_visible(false); } for (int i=start; iset_visible(true); } if (emitPlotSignals) emit plotUpdated(); } size_t JKQtBasePlotter::addGraph(JKQTPplotElement* gr) { gr->setParent(this); for (int i=0; isetParent(this); for (int i=0; isetParent(this); for (int i=0; i(graphs[i]); if (g) { g->set_datarange_start(datarange_start); g->set_datarange_end(datarange_end); } } } void JKQtBasePlotter::set_userSettigsFilename(const QString &filename, const QString &prefix) { userSettigsFilename=filename; userSettigsPrefix=prefix; } void JKQtBasePlotter::set_userSettigsFilename(const QString &filename) { userSettigsFilename=filename; } void JKQtBasePlotter::set_userSettigsPrefix(const QString &prefix) { userSettigsPrefix=prefix; } QString JKQtBasePlotter::get_userSettigsFilename() const { return userSettigsFilename; } QString JKQtBasePlotter::get_userSettigsPrefix() const { return userSettigsPrefix; } QSet JKQtBasePlotter::getDataColumnsByUser() { loadUserSettings(); QSet set; QStringList cols=getDatastore()->getColumnNames(); QDialog* dlg=new QDialog(nullptr, Qt::WindowMinMaxButtonsHint); dlg->setSizeGripEnabled(true); //printZoomFactor=0.95; //printMagnification=1.5; QGridLayout* layout=new QGridLayout(); dlg->setLayout(layout); dlg->setWindowTitle(tr("Select columns to export ...")); dlg->setWindowIcon(QIcon()); QLabel* lab=new QLabel(tr("
Please check the columns that should be exported in the list!
" "You may also save a selection to reuse it in future, by clicking \"Save\". " "A stored selection can be used by selecting its name in the dropdown field " "above the list widget.
"), dlg); lab->setWordWrap(true); layout->addWidget(lab,0,0,1,2); dataColumnsCombobox=new QComboBox(dlg); dataColumnsCombobox->addItems(getDataColumnsByUserSaved.keys()); connect(dataColumnsCombobox, SIGNAL(currentIndexChanged(QString)), this, SLOT(getDataColumnsByUserComboBoxSelected(QString))); layout->addWidget(dataColumnsCombobox, 1,0); QPushButton* btn=new QPushButton(tr("&save"), dlg); connect(btn, SIGNAL(clicked()), this, SLOT(getDataColumnsByUserSave())); layout->addWidget(btn, 1,1); dataColumnsListWidget=new QListWidget(dlg); for (int i=0; isetCheckState(Qt::Checked); item->setFlags(Qt::ItemIsSelectable|Qt::ItemIsUserCheckable|Qt::ItemIsEnabled); dataColumnsListWidget->addItem(item); } connect(dataColumnsListWidget, SIGNAL(itemChanged(QListWidgetItem*)), this, SLOT(getDataColumnsByUserItemChanged(QListWidgetItem*))); layout->addWidget(dataColumnsListWidget, 2,0,5,1); btn=new QPushButton(tr("select &all"), dlg); connect(btn, SIGNAL(clicked()), this, SLOT(getDataColumnsByUserCheckAll())); layout->addWidget(btn, 2,1); btn=new QPushButton(tr("select &none"), dlg); connect(btn, SIGNAL(clicked()), this, SLOT(getDataColumnsByUserCheckNone())); layout->addWidget(btn, 3,1); QDialogButtonBox* buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); connect(buttonBox, SIGNAL(accepted()), dlg, SLOT(accept())); connect(buttonBox, SIGNAL(rejected()), dlg, SLOT(reject())); layout->addWidget(buttonBox, layout->rowCount(),0, 1, layout->columnCount()); layout->setRowStretch(layout->rowCount()-2,1); layout->setColumnStretch(0,1); dlg->resize(350,500); dataColumnsCombobox->setCurrentIndex(-1); if (dlg->exec()==QDialog::Accepted) { for (int i=0; icount(); i++) { if (dataColumnsListWidget->item(i)->checkState()==Qt::Checked) { set.insert(i); } } } delete dlg; dataColumnsListWidget=nullptr; saveUserSettings(); return set; } void JKQtBasePlotter::getDataColumnsByUserCheckAll() { if (!dataColumnsListWidget) return; for (int i=0; icount(); i++) { dataColumnsListWidget->item(i)->setCheckState(Qt::Checked); } } void JKQtBasePlotter::getDataColumnsByUserCheckNone() { if (!dataColumnsListWidget) return; for (int i=0; icount(); i++) { dataColumnsListWidget->item(i)->setCheckState(Qt::Unchecked); } } void JKQtBasePlotter::getDataColumnsByUserSave() { if (!dataColumnsListWidget) return; QString name=tr("my selection name"); QStringList items=getDataColumnsByUserSaved.keys(); items<count(); i++) { if (dataColumnsListWidget->item(i)->checkState()==Qt::Checked) data.append(dataColumnsListWidget->item(i)->text()); } data.sort(); getDataColumnsByUserSaved[name]=data; disconnect(dataColumnsCombobox, SIGNAL(currentIndexChanged(QString)), this, SLOT(getDataColumnsByUserComboBoxSelected(QString))); dataColumnsCombobox->clear(); dataColumnsCombobox->addItems(getDataColumnsByUserSaved.keys()); dataColumnsCombobox->setCurrentIndex(dataColumnsCombobox->findText(name)); connect(dataColumnsCombobox, SIGNAL(currentIndexChanged(QString)), this, SLOT(getDataColumnsByUserComboBoxSelected(QString))); } } void JKQtBasePlotter::getDataColumnsByUserComboBoxSelected(const QString &name) { if (!dataColumnsListWidget) return; QStringList newItems=getDataColumnsByUserSaved.value(name, QStringList()); if (getDataColumnsByUserSaved.contains(name)) { for (int i=0; icount(); i++) { if (newItems.contains(dataColumnsListWidget->item(i)->text()) && (!dataColumnsListWidget->item(i)->text().isEmpty())) { dataColumnsListWidget->item(i)->setCheckState(Qt::Checked); } else { dataColumnsListWidget->item(i)->setCheckState(Qt::Unchecked); } } } } void JKQtBasePlotter::getDataColumnsByUserItemChanged(QListWidgetItem * /*widgetitem*/) { if (!dataColumnsListWidget) return; QStringList data; for (int i=0; icount(); i++) { if (dataColumnsListWidget->item(i)->checkState()==Qt::Checked) data.append(dataColumnsListWidget->item(i)->text()); } data.sort(); QMapIterator it(getDataColumnsByUserSaved); QString item=""; while (it.hasNext()) { it.next(); QStringList ld=it.value(); ld.sort(); if (data==ld) { item=it.key(); } } disconnect(dataColumnsCombobox, SIGNAL(currentIndexChanged(QString)), this, SLOT(getDataColumnsByUserComboBoxSelected(QString))); dataColumnsCombobox->setCurrentIndex(dataColumnsCombobox->findText(item)); connect(dataColumnsCombobox, SIGNAL(currentIndexChanged(QString)), this, SLOT(getDataColumnsByUserComboBoxSelected(QString))); } void JKQtBasePlotter::showPlotData() { QDialog* dlg=new QDialog(nullptr,Qt::Dialog|Qt::WindowCloseButtonHint|Qt::WindowMinMaxButtonsHint); dlg->setWindowTitle(tr("Plot data table")); dlg->setSizeGripEnabled(true); QVBoxLayout* layout=new QVBoxLayout(); dlg->setLayout(layout); QToolBar* tb=new QToolBar("toolbar", dlg); QAction* actClose=new QAction(QIcon(":/JKQTPlotter/jkqtp_exit.png"), tr("&Close Window"), dlg); connect(actClose, SIGNAL(triggered()), dlg, SLOT(accept())); tb->addAction(actClose); tb->addSeparator(); tb->addAction(actSaveData); tb->addAction(actCopyData); tb->addAction(actCopyMatlab); layout->addWidget(tb); JKQTPEnhancedTableView* tv=new JKQTPEnhancedTableView(dlg); layout->addWidget(tv); tb->addAction(tv->getPrintAction()); JKQTPdatastoreModel* model=new JKQTPdatastoreModel(getDatastore(), this); tv->setModel(model); tv->resizeColumnsToContents(); tv->resizeRowsToContents(); dlg->exec(); delete dlg; } void JKQtBasePlotter::set_emitSignals(bool enabled) { emitSignals=enabled; xAxis->set_doUpdateScaling(enabled); yAxis->set_doUpdateScaling(enabled); } QHash JKQtBasePlotter::tbrh=QHash(); JKQtBasePlotter::textSizeKey::textSizeKey(const QFont &f, const QString &text, QPaintDevice *pd) { this->text=text; this->f=f; if (pd) { ldpiX=pd->logicalDpiX(); ldpiY=pd->logicalDpiY(); pdpiX=pd->physicalDpiX(); pdpiY=pd->physicalDpiY(); } else { ldpiX=0; ldpiY=0; pdpiX=0; pdpiY=0; } } JKQtBasePlotter::textSizeKey::textSizeKey(const QString &fontName, double fontSize, const QString &text, QPaintDevice *pd) { QFont f; f.setFamily(fontName); f.setPointSizeF(fontSize); this->text=text; this->f=f; if (pd) { ldpiX=pd->logicalDpiX(); ldpiY=pd->logicalDpiY(); pdpiX=pd->physicalDpiX(); pdpiY=pd->physicalDpiY(); } else { ldpiX=0; ldpiY=0; pdpiX=0; pdpiY=0; } } bool JKQtBasePlotter::textSizeKey::operator==(const JKQtBasePlotter::textSizeKey &other) const { return ldpiX==other.ldpiX && ldpiY==other.ldpiY && text==other.text && f==other.f; } JKQtBasePlotter::textSizeData::textSizeData() { ascent=0; descent=0; width=0; strikeoutPos=0; } bool JKQtBasePlotter::JKQTPPaintDeviceAdapter::useLatexParser() const { return true; } QPaintDevice *JKQtBasePlotter::JKQTPPaintDeviceAdapter::createPaintdeviceMM(const QString &filename, double widthMM, double heightMM) const { return createPaintdevice(filename, widthMM/25.4*QApplication::desktop()->logicalDpiX(), heightMM/25.4*QApplication::desktop()->logicalDpiY()); } JKQtBasePlotter::JKQTPSaveDataAdapter::~JKQTPSaveDataAdapter() { }