2017-10-30 19:17:23 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013-2016 CERN
|
|
|
|
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
|
|
|
*
|
|
|
|
* 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 __PCB_VIEW_H
|
|
|
|
#define __PCB_VIEW_H
|
|
|
|
|
2021-07-29 09:47:43 +00:00
|
|
|
#include <layer_ids.h>
|
2017-10-30 19:17:23 +00:00
|
|
|
#include <view/view.h>
|
2020-11-14 18:11:28 +00:00
|
|
|
#include <board_item.h>
|
2017-10-30 19:17:23 +00:00
|
|
|
|
|
|
|
class PCB_DISPLAY_OPTIONS;
|
|
|
|
|
|
|
|
namespace KIGFX {
|
|
|
|
|
|
|
|
class PCB_VIEW : public VIEW
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PCB_VIEW( bool aIsDynamic = true );
|
|
|
|
virtual ~PCB_VIEW();
|
|
|
|
|
|
|
|
/// @copydoc VIEW::Add()
|
|
|
|
virtual void Add( VIEW_ITEM* aItem, int aDrawPriority = -1 ) override;
|
|
|
|
|
2021-03-19 15:04:15 +00:00
|
|
|
/// @copydoc VIEW::Remove()
|
2017-10-30 19:17:23 +00:00
|
|
|
virtual void Remove( VIEW_ITEM* aItem ) override;
|
|
|
|
|
|
|
|
/// @copydoc VIEW::Update()
|
2020-10-27 11:03:35 +00:00
|
|
|
virtual void Update( const VIEW_ITEM* aItem, int aUpdateFlags ) const override;
|
2017-10-30 19:17:23 +00:00
|
|
|
|
|
|
|
/// @copydoc VIEW::Update()
|
2020-10-27 11:03:35 +00:00
|
|
|
virtual void Update( const VIEW_ITEM* aItem ) const override;
|
2017-10-30 19:17:23 +00:00
|
|
|
|
2019-11-07 14:23:09 +00:00
|
|
|
void UpdateDisplayOptions( const PCB_DISPLAY_OPTIONS& aOptions );
|
2017-10-30 19:17:23 +00:00
|
|
|
};
|
|
|
|
|
2017-11-02 20:41:29 +00:00
|
|
|
}
|
2017-10-30 19:17:23 +00:00
|
|
|
|
|
|
|
#endif
|