File indexing completed on 2024-05-05 03:48:28

0001 /*
0002     File                 : AxisTest2.h
0003     Project              : LabPlot
0004     Description          : More tests for Axis methods
0005     --------------------------------------------------------------------
0006     SPDX-FileCopyrightText: 2022 Martin Marmsoler <martin.marmsoler@gmail.com>
0007 
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 
0011 #ifndef AXISTEST2_H
0012 #define AXISTEST2_H
0013 
0014 #include "../../CommonTest.h"
0015 
0016 class AxisTest2 : public CommonTest {
0017     Q_OBJECT
0018 
0019 private Q_SLOTS:
0020     void setAxisColor(); // Set color of all elements
0021     void setTitleColor();
0022     void setMajorTickColor();
0023     void setMinorTickColor();
0024     void setLineColor();
0025     void setTickLabelColor();
0026 
0027     void automaticTicNumberUpdateDockMajorTicks();
0028     void automaticTicNumberUpdateDockMinorTicks();
0029 
0030     void columnLabelValues();
0031     void columnLabelValuesMaxValues();
0032 
0033     void customTextLabels();
0034 };
0035 
0036 #endif // AXISTEST2_H