KiCad PCB EDA Suite
Loading...
Searching...
No Matches
eda_item_flags.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-2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2008-2015 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
6 * Copyright (C) 2008 Wayne Stambaugh <[email protected]>
7 * Copyright (C) 2004-2021 KiCad Developers, see change_log.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#ifndef EDA_ITEM_FLAGS_H
28#define EDA_ITEM_FLAGS_H
29
30#include <cstdint>
31
32// These define are used for the .m_flags member of the class EDA_ITEM
33//
34// NB: DO NOT ADD FLAGS ANYWHERE BUT AT THE END: THE FLAG-SET IS STORED AS AN INTEGER IN FILES.
35//
36#define IS_CHANGED (1 << 0)
37#define IS_LINKED (1 << 1)
38#define IN_EDIT (1 << 2)
39#define IS_MOVING (1 << 3)
40#define IS_NEW (1 << 4)
41#define IS_BROKEN (1 << 5)
42
43#define IS_DELETED (1 << 7)
44
45#define STARTPOINT (1 << 9)
46#define ENDPOINT (1 << 10)
47#define SELECTED (1 << 11)
48#define SELECTED_BY_DRAG (1 << 12)
49#define STRUCT_DELETED (1 << 13)
50#define CANDIDATE (1 << 14)
51#define SKIP_STRUCT (1 << 15)
52
53#define IS_PASTED (1 << 17)
54#define IS_SHOWN_AS_BITMAP (1 << 18)
55#define COURTYARD_CONFLICT (1 << 19)
57#define MALFORMED_F_COURTYARD (1 << 20)
58#define MALFORMED_B_COURTYARD (1 << 21)
59#define MALFORMED_COURTYARDS ( MALFORMED_F_COURTYARD | MALFORMED_B_COURTYARD )
60
61#define ROUTER_TRANSIENT (1 << 22)
62
63// 23 is unused
64
65#define HOLE_PROXY (1 << 24)
66#define IS_ROLLOVER (1 << 25)
67#define SHOW_ELEC_TYPE (1 << 25)
68#define BRIGHTENED (1 << 26)
69
70// 27 is unused
71
72#define UR_TRANSIENT (1 << 28)
73
74#define IS_DANGLING (1 << 29)
75#define ENTERED (1 << 30)
76
77// WARNING: if you add flags, you'll probably need to adjust the masks in GetEditFlags() and
78// ClearTempFlags().
79
80#define EDA_ITEM_ALL_FLAGS UINT32_MAX
81
82typedef std::uint32_t EDA_ITEM_FLAGS;
83
84#endif
std::uint32_t EDA_ITEM_FLAGS