QStringList ExportFileAbstractBase::curvesToInclude (const DocumentModelExportFormat &modelExportOverride, const Document &document, const QStringList &curvesGraphsNames, CurveConnectAs curveConnectAs1, CurveConnectAs curveConnectAs2) const { LOG4CPP_INFO_S ((*mainCat)) << "ExportFileAbstractBase::curvesToInclude"; QStringList curvesToInclude; // Build a list of curves to include by subtracting the excluded curves from the the complete list. // Special case is to use only first included curve if appropriate flag is set QStringList::const_iterator itr; for (itr = curvesGraphsNames.begin(); itr != curvesGraphsNames.end(); itr++) { QString curvesGraphName = *itr; if (!modelExportOverride.curveNamesNotExported().contains (curvesGraphName)) { const Curve *curve = document.curveForCurveName(curvesGraphName); ENGAUGE_CHECK_PTR (curve); // Not excluded which means it gets included, but only if it is a function if (curve->curveStyle().lineStyle().curveConnectAs() == curveConnectAs1 || curve->curveStyle().lineStyle().curveConnectAs() == curveConnectAs2) { curvesToInclude.push_back (curvesGraphName); } } } return curvesToInclude; }
DocumentModelExportFormat::DocumentModelExportFormat(const DocumentModelExportFormat &other) : m_curveNamesNotExported (other.curveNamesNotExported()), m_pointsSelectionFunctions (other.pointsSelectionFunctions()), m_pointsIntervalFunctions (other.pointsIntervalFunctions()), m_pointsIntervalUnitsFunctions (other.pointsIntervalUnitsFunctions()), m_pointsSelectionRelations (other.pointsSelectionRelations()), m_pointsIntervalRelations (other.pointsIntervalRelations()), m_pointsIntervalUnitsRelations (other.pointsIntervalUnitsRelations()), m_layoutFunctions (other.layoutFunctions()), m_delimiter (other.delimiter()), m_header (other.header()), m_xLabel (other.xLabel ()) { }