KiCad PCB EDA Suite
Loading...
Searching...
No Matches
ds_proxy_view_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) 2013 CERN
5 * Copyright (C) 2020-2023 KiCad Developers, see AUTHORS.txt for contributors.
6 * @author Maciej Suminski <[email protected]>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, you may find one here:
20 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
21 * or you may search the http://www.gnu.org website for the version 2 license,
22 * or you may write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 */
25
26#ifndef DS_PROXY_VIEW_ITEM_H
27#define DS_PROXY_VIEW_ITEM_H
28
29#include <eda_item.h>
30
31class BOARD;
32class PAGE_INFO;
33class PROJECT;
34class TITLE_BLOCK;
40
41namespace KIGFX
42{
43class VIEW;
44class GAL;
45}
46
48{
49public:
50 DS_PROXY_VIEW_ITEM( const EDA_IU_SCALE& aIuScale, const PAGE_INFO* aPageInfo,
51 const PROJECT* aProject, const TITLE_BLOCK* aTitleBlock,
52 const std::map<wxString, wxString>* aProperties );
53
57 void SetFileName( const std::string& aFileName ) { m_fileName = aFileName; }
58
62 void SetSheetName( const std::string& aSheetName ) { m_sheetName = aSheetName; }
63
67 void SetSheetPath( const std::string& aSheetPath ) { m_sheetPath = aSheetPath; }
68
72 void SetPageNumber( const std::string& aPageNumber ) { m_pageNumber = aPageNumber; }
73
77 void SetSheetCount( int aSheetCount ) { m_sheetCount = aSheetCount; }
78
85 void SetIsFirstPage( bool aIsFirstPage ) { m_isFirstPage = aIsFirstPage; }
86
91 void SetColorLayer( int aLayerId ) { m_colorLayer = aLayerId; }
92
97 void SetPageBorderColorLayer( int aLayerId ) { m_pageBorderColorLayer = aLayerId; }
98
99 const PAGE_INFO& GetPageInfo() { return *m_pageInfo; }
101
103 const BOX2I ViewBBox() const override;
104
106 void ViewDraw( int aLayer, KIGFX::VIEW* aView ) const override;
107
109 void ViewGetLayers( int aLayers[], int& aCount ) const override;
110
111#if defined(DEBUG)
113 void Show( int x, std::ostream& st ) const override { }
114#endif
115
119 virtual wxString GetClass() const override
120 {
121 return wxT( "DS_PROXY_VIEW_ITEM" );
122 }
123
124 bool HitTestDrawingSheetItems( KIGFX::VIEW* aView, const VECTOR2I& aPosition );
125
126protected:
127 void buildDrawList( KIGFX::VIEW* aView, const std::map<wxString, wxString>* aProperties,
128 DS_DRAW_ITEM_LIST* aDrawList ) const;
129
130protected:
132
133 std::string m_fileName;
134 std::string m_sheetName;
135 std::string m_sheetPath;
138 std::string m_pageNumber;
142
143 const std::map<wxString, wxString>* m_properties;
144
147
150};
151
152#endif /* DS_PROXY_VIEW_ITEM_H */
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:281
Store the list of graphic items: rect, lines, polygons and texts to draw/plot the title block and fra...
Definition: ds_draw_item.h:401
Non filled rectangle with thick segment.
Definition: ds_draw_item.h:218
A graphic text.
Definition: ds_draw_item.h:313
void SetSheetPath(const std::string &aSheetPath)
Set the sheet path displayed in the title block.
void SetSheetCount(int aSheetCount)
Changes the sheet-count number displayed in the title block.
const PROJECT * m_project
void SetPageNumber(const std::string &aPageNumber)
Changes the page number displayed in the title block.
int m_colorLayer
Layer that is used for drawing sheet color (LAYER_DRAWINGSHEET is always used for visibility)
const BOX2I ViewBBox() const override
const TITLE_BLOCK * m_titleBlock
void SetSheetName(const std::string &aSheetName)
Set the sheet name displayed in the title block.
void SetPageBorderColorLayer(int aLayerId)
Overrides the layer used to pick the color of the page border (normally LAYER_GRID)
const PAGE_INFO & GetPageInfo()
const EDA_IU_SCALE & m_iuScale
void SetIsFirstPage(bool aIsFirstPage)
Change if this is first page.
const std::map< wxString, wxString > * m_properties
const TITLE_BLOCK & GetTitleBlock()
bool HitTestDrawingSheetItems(KIGFX::VIEW *aView, const VECTOR2I &aPosition)
void SetFileName(const std::string &aFileName)
Set the file name displayed in the title block.
void ViewDraw(int aLayer, KIGFX::VIEW *aView) const override
void SetColorLayer(int aLayerId)
Can be used to override which layer ID is used for drawing sheet item colors.
void buildDrawList(KIGFX::VIEW *aView, const std::map< wxString, wxString > *aProperties, DS_DRAW_ITEM_LIST *aDrawList) const
virtual wxString GetClass() const override
Get class name.
const PAGE_INFO * m_pageInfo
void ViewGetLayers(int aLayers[], int &aCount) const override
int m_pageBorderColorLayer
Layer that is used for page border color.
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:88
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:68
Describe the page size and margins of a paper page on which to eventually print or plot.
Definition: page_info.h:59
Container for project specific data.
Definition: project.h:62
Hold the information shown in the lower right corner of a plot, printout, or editing view.
Definition: title_block.h:41
The Cairo implementation of the graphics abstraction layer.
Definition: color4d.cpp:247