KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_screen.cpp
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) 2012 Jean-Pierre Charras, [email protected]
5 * Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
6 * Copyright (C) 2012 Wayne Stambaugh <[email protected]>
7 * Copyright (C) 1992-2020 KiCad Developers, see AUTHORS.txt for contributors.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, you may find one here:
21 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
22 * or you may search the http://www.gnu.org website for the version 2 license,
23 * or you may write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
25 */
26
27#include <pcb_screen.h>
28#include <layer_ids.h>
29
30
31PCB_SCREEN::PCB_SCREEN( const VECTOR2I& aPageSizeIU ) :
32 BASE_SCREEN( aPageSizeIU )
33{
34 m_Active_Layer = F_Cu; // default active layer = front layer
35 m_Route_Layer_TOP = F_Cu; // default layers pair for vias (bottom to top)
37}
Handles how to draw a screen (a board, a schematic ...)
Definition: base_screen.h:41
PCB_LAYER_ID m_Route_Layer_TOP
Definition: pcb_screen.h:43
PCB_SCREEN(const VECTOR2I &aPageSizeIU)
Definition: pcb_screen.cpp:31
PCB_LAYER_ID m_Route_Layer_BOTTOM
Definition: pcb_screen.h:44
PCB_LAYER_ID m_Active_Layer
Definition: pcb_screen.h:42
@ B_Cu
Definition: layer_ids.h:96
@ F_Cu
Definition: layer_ids.h:65