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 The 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, see <https://www.gnu.org/licenses/>.
21 */
22
23#include <pcb_screen.h>
24#include <layer_ids.h>
25
26
27PCB_SCREEN::PCB_SCREEN( const VECTOR2I& aPageSizeIU ) :
28 BASE_SCREEN( aPageSizeIU )
29{
30 m_Active_Layer = F_Cu; // default active layer = front layer
31 m_Route_Layer_TOP = F_Cu; // default layers pair for vias (bottom to top)
33}
BASE_SCREEN(EDA_ITEM *aParent, KICAD_T aType=SCREEN_T)
PCB_LAYER_ID m_Route_Layer_TOP
Definition pcb_screen.h:39
PCB_SCREEN(const VECTOR2I &aPageSizeIU)
PCB_LAYER_ID m_Route_Layer_BOTTOM
Definition pcb_screen.h:40
PCB_LAYER_ID m_Active_Layer
Definition pcb_screen.h:38
@ B_Cu
Definition layer_ids.h:61
@ F_Cu
Definition layer_ids.h:60
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683