KiCad PCB EDA Suite
Loading...
Searching...
No Matches
ruler_item.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2017-2021 KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#ifndef PREVIEW_ITEMS_RULER_ITEM_H
25#define PREVIEW_ITEMS_RULER_ITEM_H
26
27#include <optional>
28
29#include <eda_item.h>
30#include <gal/color4d.h>
32
33namespace KIGFX
34{
35class GAL;
36
37namespace PREVIEW
38{
39class TWO_POINT_GEOMETRY_MANAGER;
40
44class RULER_ITEM : public EDA_ITEM
45{
46public:
47 RULER_ITEM( const TWO_POINT_GEOMETRY_MANAGER& m_geomMgr, const EDA_IU_SCALE& aIuScale, EDA_UNITS userUnits, bool aFlipX,
48 bool aFlipY );
49
51 const BOX2I ViewBBox() const override;
52
54 void ViewGetLayers( int aLayers[], int& aCount ) const override;
55
57 void ViewDraw( int aLayer, KIGFX::VIEW* aView ) const override final;
58
59 void SetColor( const COLOR4D& aColor ) { m_color = aColor; }
60
61 void SetShowTicks( bool aShow ) { m_showTicks = aShow; }
62
63 void SetShowEndArrowHead( bool aShow ) { m_showEndArrowHead = aShow; }
64
68 wxArrayString GetDimensionStrings() const;
69
70#if defined(DEBUG)
71 void Show( int x, std::ostream& st ) const override
72 {
73 }
74#endif
75
80 wxString GetClass() const override
81 {
82 return wxT( "RULER_ITEM" );
83 }
84
90 void SwitchUnits( EDA_UNITS aUnits ) { m_userUnits = aUnits; }
91
92 void UpdateDir( bool aFlipX, bool aFlipY )
93 {
94 m_flipX = aFlipX;
95 m_flipY = aFlipY;
96 }
97
98private:
104 std::optional<COLOR4D> m_color;
105 bool m_showTicks = true;
106 bool m_showEndArrowHead = false;
107};
108
109} // PREVIEW
110} // KIGFX
111
112#endif // PREVIEW_ITEMS_RULER_ITEM_H
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:89
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:104
A drawn ruler item for showing the distance between two points.
Definition: ruler_item.h:45
void SetShowEndArrowHead(bool aShow)
Definition: ruler_item.h:63
const TWO_POINT_GEOMETRY_MANAGER & m_geomMgr
Definition: ruler_item.h:99
void ViewGetLayers(int aLayers[], int &aCount) const override
Definition: ruler_item.cpp:295
wxArrayString GetDimensionStrings() const
Get the strings for the dimensions of the ruler.
Definition: ruler_item.cpp:374
std::optional< COLOR4D > m_color
Definition: ruler_item.h:104
wxString GetClass() const override
Get class name.
Definition: ruler_item.h:80
void ViewDraw(int aLayer, KIGFX::VIEW *aView) const override final
Draw the parts of the object belonging to layer aLayer.
Definition: ruler_item.cpp:303
const BOX2I ViewBBox() const override
Return the all the layers within the VIEW the object is painted on.
Definition: ruler_item.cpp:281
void SwitchUnits(EDA_UNITS aUnits)
Switch the ruler units.
Definition: ruler_item.h:90
const EDA_IU_SCALE & m_iuScale
Definition: ruler_item.h:101
void UpdateDir(bool aFlipX, bool aFlipY)
Definition: ruler_item.h:92
void SetColor(const COLOR4D &aColor)
Definition: ruler_item.h:59
void SetShowTicks(bool aShow)
Definition: ruler_item.h:61
Represent a very simple geometry manager for items that have a start and end point.
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:68
EDA_UNITS
Definition: eda_units.h:46
The Cairo implementation of the graphics abstraction layer.
Definition: color4d.cpp:247