Browse Source
Pcbnew: break out preview draw helpers
Pcbnew: break out preview draw helpers
The graphical drawing routines in the arc assistant can be made more generic for re-use in similar code.pull/15/head
4 changed files with 245 additions and 75 deletions
-
1common/CMakeLists.txt
-
89common/preview_items/arc_assistant.cpp
-
118common/preview_items/draw_context.cpp
-
112include/preview_items/draw_context.h
@ -0,0 +1,118 @@ |
|||
/*
|
|||
* This program source code file is part of KiCad, a free EDA CAD application. |
|||
* |
|||
* Copyright (C) 2019 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 |
|||
*/ |
|||
|
|||
#include <preview_items/draw_context.h>
|
|||
|
|||
#include <preview_items/preview_utils.h>
|
|||
|
|||
#include <view/view.h>
|
|||
|
|||
using namespace KIGFX::PREVIEW; |
|||
|
|||
|
|||
static constexpr double ANGLE_EPSILON = 1e-9; |
|||
|
|||
static bool angleIsSpecial( double aRadians ) |
|||
{ |
|||
return std::fabs( std::remainder( aRadians, M_PI_4 ) ) < ANGLE_EPSILON; |
|||
} |
|||
|
|||
|
|||
static COLOR4D deemphasise( const COLOR4D& aColor, bool aDeEmphasised ) |
|||
{ |
|||
return aColor.WithAlpha( PreviewOverlayDeemphAlpha( aDeEmphasised ) ); |
|||
} |
|||
|
|||
|
|||
DRAW_CONTEXT::DRAW_CONTEXT( KIGFX::VIEW& aView ) |
|||
: m_gal( *aView.GetGAL() ), |
|||
m_render_settings( *aView.GetPainter()->GetSettings() ), |
|||
m_currLayer( LAYER_AUX_ITEMS ), |
|||
m_lineWidth( 1.0f ) |
|||
{ |
|||
} |
|||
|
|||
|
|||
void DRAW_CONTEXT::DrawCircle( const VECTOR2I& aOrigin, double aRad, bool aDeEmphasised ) |
|||
{ |
|||
const COLOR4D& color = m_render_settings.GetLayerColor( m_currLayer ); |
|||
|
|||
m_gal.SetLineWidth( m_lineWidth ); |
|||
m_gal.SetStrokeColor( deemphasise( color, aDeEmphasised ) ); |
|||
m_gal.SetIsStroke( true ); |
|||
m_gal.SetIsFill( false ); |
|||
m_gal.DrawCircle( aOrigin, aRad ); |
|||
} |
|||
|
|||
|
|||
void DRAW_CONTEXT::DrawArcWithAngleHighlight( |
|||
const VECTOR2I& aOrigin, double aRad, double aStartAngle, double aEndAngle ) |
|||
{ |
|||
COLOR4D color = m_render_settings.GetLayerColor( m_currLayer ); |
|||
|
|||
if( angleIsSpecial( aStartAngle - aEndAngle ) ) |
|||
color = getSpecialAngleColour(); |
|||
|
|||
m_gal.SetLineWidth( m_lineWidth ); |
|||
m_gal.SetIsStroke( true ); |
|||
m_gal.SetIsFill( true ); |
|||
m_gal.SetStrokeColor( color ); |
|||
m_gal.SetFillColor( color.WithAlpha( 0.2 ) ); |
|||
|
|||
// draw the angle reference arc
|
|||
m_gal.DrawArc( aOrigin, aRad, -aStartAngle, -aEndAngle ); |
|||
} |
|||
|
|||
|
|||
void DRAW_CONTEXT::DrawLine( const VECTOR2I& aStart, const VECTOR2I& aEnd, bool aDeEmphasised ) |
|||
{ |
|||
COLOR4D strokeColor = m_render_settings.GetLayerColor( m_currLayer ); |
|||
|
|||
m_gal.SetLineWidth( m_lineWidth ); |
|||
m_gal.SetIsStroke( true ); |
|||
m_gal.SetStrokeColor( deemphasise( strokeColor, aDeEmphasised ) ); |
|||
m_gal.DrawLine( aStart, aEnd ); |
|||
} |
|||
|
|||
|
|||
void DRAW_CONTEXT::DrawLineWithAngleHighlight( |
|||
const VECTOR2I& aStart, const VECTOR2I& aEnd, bool aDeEmphasised ) |
|||
{ |
|||
const VECTOR2I vec = aEnd - aStart; |
|||
COLOR4D strokeColor = m_render_settings.GetLayerColor( m_currLayer ); |
|||
|
|||
if( angleIsSpecial( vec.Angle() ) ) |
|||
strokeColor = getSpecialAngleColour(); |
|||
|
|||
m_gal.SetLineWidth( m_lineWidth ); |
|||
m_gal.SetIsStroke( true ); |
|||
m_gal.SetStrokeColor( deemphasise( strokeColor, aDeEmphasised ) ); |
|||
m_gal.DrawLine( aStart, aEnd ); |
|||
} |
|||
|
|||
|
|||
COLOR4D DRAW_CONTEXT::getSpecialAngleColour() const |
|||
{ |
|||
return m_render_settings.IsBackgroundDark() ? COLOR4D( 0.5, 1.0, 0.5, 1.0 ) : |
|||
COLOR4D( 0.0, 0.7, 0.0, 1.0 ); |
|||
} |
|||
@ -0,0 +1,112 @@ |
|||
/* |
|||
* This program source code file is part of KICAD, a free EDA CAD application. |
|||
* |
|||
* Copyright (C) 2017 Kicad Developers, see change_log.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_PREVIEW_DRAW_CONTEXT__H_ |
|||
#define PREVIEW_PREVIEW_DRAW_CONTEXT__H_ |
|||
|
|||
#include <painter.h> |
|||
|
|||
namespace KIGFX |
|||
{ |
|||
class GAL; |
|||
class VIEW; |
|||
|
|||
namespace PREVIEW |
|||
{ |
|||
/** |
|||
* A KIGFX::PREVIEW::DRAW_CONTEXT is a wrapper around a GAL and some other |
|||
* settings that makes it easy to draw preview items consistently. |
|||
* |
|||
* This class provides some graphical items that are often used by preview |
|||
* items. Complex items can be composed from these. |
|||
*/ |
|||
class DRAW_CONTEXT |
|||
{ |
|||
public: |
|||
DRAW_CONTEXT( KIGFX::VIEW& aView ); |
|||
|
|||
/** |
|||
* Draw a preview circle on the current layer |
|||
* |
|||
* @param aOrigin circle origin |
|||
* @param aRad circle radius |
|||
* @param aDeEmphasised draw the circle de-emphasised |
|||
*/ |
|||
void DrawCircle( const VECTOR2I& aOrigin, double aRad, bool aDeEmphasised ); |
|||
|
|||
|
|||
/** |
|||
* Draw a simple line on the current layer. |
|||
* |
|||
* @param aStart line start point |
|||
* @param aEnd line end point |
|||
* @param aDeEmphasised draw the line de-emphasised |
|||
*/ |
|||
void DrawLine( const VECTOR2I& aStart, const VECTOR2I& aEnd, bool aDeEmphasised ); |
|||
|
|||
|
|||
/** |
|||
* Draw a straight line on the current layer, with a special highlight when |
|||
* the line angle is a multiple of 45 degrees. |
|||
* |
|||
* @param aStart line start point |
|||
* @param aEnd line end point |
|||
* @param aDeEmphasised draw the line de-emphasised |
|||
*/ |
|||
void DrawLineWithAngleHighlight( |
|||
const VECTOR2I& aStart, const VECTOR2I& aEnd, bool aDeEmphasised ); |
|||
|
|||
/** |
|||
* Draw an arc on the current layer, with a special highlight when |
|||
* the line angle is a multiple of 45 degrees. |
|||
* |
|||
* @param aOrigin the arc centre |
|||
* @param aRad the arc radius |
|||
* @param aStartAngle the arc start angle |
|||
* @param aEndAngle the arc end angle |
|||
*/ |
|||
void DrawArcWithAngleHighlight( |
|||
const VECTOR2I& aOrigin, double aRad, double aStartAngle, double aEndAngle ); |
|||
|
|||
private: |
|||
/** |
|||
* @return the colour to use for "special" angles |
|||
*/ |
|||
COLOR4D getSpecialAngleColour() const; |
|||
|
|||
///< The GAL to draw into |
|||
KIGFX::GAL& m_gal; |
|||
|
|||
const KIGFX::RENDER_SETTINGS& m_render_settings; |
|||
|
|||
///< The current layer to draw onto |
|||
GAL_LAYER_ID m_currLayer; |
|||
|
|||
/// The line width to use for items |
|||
float m_lineWidth; |
|||
}; |
|||
|
|||
} // namespace PREVIEW |
|||
} // namespace KIGFX |
|||
|
|||
#endif // PREVIEW_PREVIEW_DRAW_CONTEXT__H_ |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue