1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
/*
File : CartesianPlotTest.h
Project : LabPlot
Description : Tests for cartesian plots
--------------------------------------------------------------------
SPDX-FileCopyrightText: 2022 Stefan Gerlach <stefan.gerlach@uni.kn>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CARTESIANPLOTTEST_H
#define CARTESIANPLOTTEST_H
#include "../CommonTest.h"
class CartesianPlotTest : public CommonTest {
Q_OBJECT
private Q_SLOTS:
// change data in spreadsheet source
void changeData1();
void changeData2();
void changeData3();
void changeData4();
void changeData5();
void changeData6();
// check deleting curve
void deleteCurveAutoscale();
void deleteCurveNoAutoscale();
void invisibleCurveAutoscale();
void invisibleCurveNoAutoscale();
void equationCurveEquationChangedAutoScale();
void equationCurveEquationChangedNoAutoScale();
void undoInfoElement();
void axisFormat();
void shiftLeftAutoScale();
void shiftRightAutoScale();
void shiftUpAutoScale();
void shiftDownAutoScale();
void rangeFormatYDataChanged();
void rangeFormatXDataChanged();
void rangeFormatNonDefaultRange();
void invalidcSystem();
void invalidStartValueLogScaling();
void autoScaleFitCurveCalculation();
void wheelEventCenterAxes();
void wheelEventNotCenter();
void wheelEventOutsideTopLeft();
void wheelEventOutsideBottomRight();
// checks after modifications in/on spreadsheet
void spreadsheetRemoveRows();
void spreadsheetInsertRows();
void columnRemove();
void columnRemoveSaveLoadRestore();
void spreadsheetRemove();
// handling of z-values on changes in the child hierarchy
void zValueAfterAddMoveRemove();
};
#endif
|