tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / chart2 / source / view / axes / VAxisOrGridBase.hxx
blob1defc154a8093055d5b792e93188cbb4e45fb7f0
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #pragma once
21 #include <PlotterBase.hxx>
22 #include <ThreeDHelper.hxx>
23 #include <chartview/ExplicitScaleValues.hxx>
25 #include <basegfx/matrix/b3dhommatrix.hxx>
27 namespace com::sun::star::drawing { struct HomogenMatrix; }
29 namespace chart
32 class TickFactory;
34 class VAxisOrGridBase : public PlotterBase
36 public:
37 VAxisOrGridBase( sal_Int32 nDimensionIndex, sal_Int32 nDimensionCount );
38 virtual ~VAxisOrGridBase() override;
40 virtual void setTransformationSceneToScreen( const css::drawing::HomogenMatrix& rMatrix ) override;
41 /// @throws css::uno::RuntimeException
42 virtual void setExplicitScaleAndIncrement(
43 const ExplicitScaleData& rScale
44 , const ExplicitIncrementData& rIncrement );
45 void set3DWallPositions( CuboidPlanePosition eLeftWallPos, CuboidPlanePosition eBackWallPos, CuboidPlanePosition eBottomPos );
47 virtual TickFactory* createTickFactory();
49 protected: //member
50 ExplicitScaleData m_aScale;
51 ExplicitIncrementData m_aIncrement;
52 sal_Int32 m_nDimensionIndex;
54 ::basegfx::B3DHomMatrix m_aMatrixScreenToScene;
56 CuboidPlanePosition m_eLeftWallPos;
57 CuboidPlanePosition m_eBackWallPos;
58 CuboidPlanePosition m_eBottomPos;
61 } //namespace chart
63 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */