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 <eda_item.h>
29
30namespace KIGFX
31{
32class GAL;
33
34namespace PREVIEW
35{
36class TWO_POINT_GEOMETRY_MANAGER;
37
41class RULER_ITEM : public EDA_ITEM
42{
43public:
44 RULER_ITEM( const TWO_POINT_GEOMETRY_MANAGER& m_geomMgr, const EDA_IU_SCALE& aIuScale, EDA_UNITS userUnits, bool aFlipX,
45 bool aFlipY );
46
48 const BOX2I ViewBBox() const override;
49
51 void ViewGetLayers( int aLayers[], int& aCount ) const override;
52
54 void ViewDraw( int aLayer, KIGFX::VIEW* aView ) const override final;
55
56
57#if defined(DEBUG)
58 void Show( int x, std::ostream& st ) const override
59 {
60 }
61#endif
62
67 wxString GetClass() const override
68 {
69 return wxT( "RULER_ITEM" );
70 }
71
77 void SwitchUnits( EDA_UNITS aUnits ) { m_userUnits = aUnits; }
78
79 void UpdateDir( bool aFlipX, bool aFlipY )
80 {
81 m_flipX = aFlipX;
82 m_flipY = aFlipY;
83 }
84
85private:
89 bool m_flipX;
90 bool m_flipY;
91};
92
93} // PREVIEW
94} // KIGFX
95
96#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:88
A drawn ruler item for showing the distance between two points.
Definition: ruler_item.h:42
const TWO_POINT_GEOMETRY_MANAGER & m_geomMgr
Definition: ruler_item.h:86
void ViewGetLayers(int aLayers[], int &aCount) const override
Definition: ruler_item.cpp:324
wxString GetClass() const override
Get class name.
Definition: ruler_item.h:67
void ViewDraw(int aLayer, KIGFX::VIEW *aView) const override final
Draw the parts of the object belonging to layer aLayer.
Definition: ruler_item.cpp:332
const BOX2I ViewBBox() const override
Return the all the layers within the VIEW the object is painted on.
Definition: ruler_item.cpp:310
void SwitchUnits(EDA_UNITS aUnits)
Switch the ruler units.
Definition: ruler_item.h:77
const EDA_IU_SCALE & m_iuScale
Definition: ruler_item.h:88
void UpdateDir(bool aFlipX, bool aFlipY)
Definition: ruler_item.h:79
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