| 887 | } |
| 888 | |
| 889 | void MatrixView::headerFormatChanged(QAction* action) { |
| 890 | if (action == action_header_format_1) |
| 891 | m_matrix->setHeaderFormat(Matrix::HeaderFormat::HeaderRowsColumns); |
| 892 | else if (action == action_header_format_2) |
| 893 | m_matrix->setHeaderFormat(Matrix::HeaderFormat::HeaderValues); |
| 894 | else |
| 895 | m_matrix->setHeaderFormat(Matrix::HeaderFormat::HeaderRowsColumnsValues); |
| 896 | } |
| 897 | |
| 898 | // ############################# column related slots ########################### |
| 899 | /*! |
nothing calls this directly
no test coverage detected