2020-07-03 15:05:17 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2020 Kicad Developers, see AUTHORS.txt for contributors.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PREVIEW_ITEMS_TWO_POINT_ASSISTANT_H
|
|
|
|
#define PREVIEW_ITEMS_TWO_POINT_ASSISTANT_H
|
|
|
|
|
2020-10-14 01:06:53 +00:00
|
|
|
#include <eda_item.h>
|
2020-07-03 15:05:17 +00:00
|
|
|
#include <preview_items/two_point_geom_manager.h>
|
2021-07-29 09:47:43 +00:00
|
|
|
#include <layer_ids.h>
|
2020-07-03 15:05:17 +00:00
|
|
|
|
|
|
|
namespace KIGFX
|
|
|
|
{
|
|
|
|
namespace PREVIEW
|
|
|
|
{
|
|
|
|
|
2021-07-14 20:03:32 +00:00
|
|
|
// TODO: required until EDA_SHAPE_TYPE_T is moved into commons or a better approach is found
|
2020-11-04 13:46:51 +00:00
|
|
|
enum class GEOM_SHAPE
|
|
|
|
{
|
|
|
|
SEGMENT = 0,
|
|
|
|
RECT,
|
|
|
|
ARC,
|
|
|
|
CIRCLE,
|
|
|
|
POLYGON,
|
|
|
|
CURVE
|
|
|
|
};
|
2020-07-03 15:05:17 +00:00
|
|
|
|
2020-11-04 13:46:51 +00:00
|
|
|
/**
|
|
|
|
* Represents an assistant draw when interactively drawing a line or circle on a canvas.
|
|
|
|
*/
|
|
|
|
class TWO_POINT_ASSISTANT : public EDA_ITEM
|
|
|
|
{
|
|
|
|
public:
|
2022-09-16 04:38:10 +00:00
|
|
|
TWO_POINT_ASSISTANT( const TWO_POINT_GEOMETRY_MANAGER& aManager, const EDA_IU_SCALE& aIuScale,
|
|
|
|
EDA_UNITS aUnits, GEOM_SHAPE aShape );
|
2020-07-03 15:05:17 +00:00
|
|
|
|
2020-11-04 13:46:51 +00:00
|
|
|
const BOX2I ViewBBox() const override;
|
2020-07-03 15:05:17 +00:00
|
|
|
|
2020-11-04 13:46:51 +00:00
|
|
|
void ViewGetLayers( int aLayers[], int& aCount ) const override
|
|
|
|
{
|
2021-06-09 19:32:58 +00:00
|
|
|
aLayers[0] = LAYER_SELECT_OVERLAY; // Assistant graphics
|
2020-11-04 13:46:51 +00:00
|
|
|
aLayers[1] = LAYER_GP_OVERLAY; // Drop shadows
|
|
|
|
aCount = 2;
|
|
|
|
}
|
2020-09-30 19:02:30 +00:00
|
|
|
|
2020-11-04 13:46:51 +00:00
|
|
|
/**
|
2021-06-09 19:32:58 +00:00
|
|
|
* Draw the assistance (with reference to the construction manager
|
2020-11-04 13:46:51 +00:00
|
|
|
*/
|
|
|
|
void ViewDraw( int aLayer, KIGFX::VIEW* aView ) const override final;
|
2020-07-03 15:05:17 +00:00
|
|
|
|
|
|
|
#if defined( DEBUG )
|
2020-11-04 13:46:51 +00:00
|
|
|
void Show( int x, std::ostream& st ) const override
|
|
|
|
{
|
|
|
|
}
|
2020-07-03 15:05:17 +00:00
|
|
|
#endif
|
|
|
|
|
2020-11-04 13:46:51 +00:00
|
|
|
/**
|
|
|
|
* Get class name
|
|
|
|
* @return string "TWO_POINT_ASSISTANT"
|
|
|
|
*/
|
|
|
|
wxString GetClass() const override
|
|
|
|
{
|
|
|
|
return "TWO_POINT_ASSISTANT";
|
|
|
|
}
|
|
|
|
|
2020-11-04 14:08:06 +00:00
|
|
|
void SetUnits( EDA_UNITS aUnits ) { m_units = aUnits; }
|
|
|
|
|
2020-11-04 13:46:51 +00:00
|
|
|
private:
|
|
|
|
const TWO_POINT_GEOMETRY_MANAGER& m_constructMan;
|
|
|
|
EDA_UNITS m_units;
|
|
|
|
GEOM_SHAPE m_shape;
|
2022-09-16 04:38:10 +00:00
|
|
|
const EDA_IU_SCALE& m_iuScale;
|
2020-11-04 13:46:51 +00:00
|
|
|
};
|
2020-07-03 15:05:17 +00:00
|
|
|
|
|
|
|
} // namespace PREVIEW
|
|
|
|
} // namespace KIGFX
|
|
|
|
|
|
|
|
#endif // PREVIEW_ITEMS_TWO_POINT_ASSISTANT_H
|