KiCad PCB EDA Suite
Loading...
Searching...
No Matches
mail_type.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) 2014 CERN
5 * Copyright (C) 1992-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
27#ifndef MAIL_TYPE_H_
28#define MAIL_TYPE_H_
29
38{
39 MAIL_CROSS_PROBE, // PCB<->SCH, CVPCB->SCH cross-probing.
40 MAIL_SELECTION, // SCH<->PCB selection synchronization.
41 MAIL_SELECTION_FORCE, // Explicit selection of SCH->PCB selection synchronization.
42 MAIL_ASSIGN_FOOTPRINTS, // CVPCB->SCH footprint stuffing
43 MAIL_SCH_SAVE, // CVPCB->SCH save the schematic
44 MAIL_EESCHEMA_NETLIST, // SCH->CVPCB netlist immediately after launching CVPCB
45 MAIL_SYMBOL_NETLIST, // SCH->FP_CHOOSER symbol pin & fp_filter information
46 MAIL_PCB_UPDATE, // SCH->PCB forward update
47 MAIL_SCH_UPDATE, // PCB->SCH forward update
48 MAIL_IMPORT_FILE, // Import a different format file
49 MAIL_SCH_GET_NETLIST, // Fetch a netlist from schematics
50 MAIL_SCH_GET_ITEM, // Fetch item from KIID
51 MAIL_PCB_GET_NETLIST, // Fetch a netlist from PCB layout
52 MAIL_PCB_UPDATE_LINKS, // Update the schematic symbol paths in the PCB's footprints
53 MAIL_SCH_REFRESH, // Tell the schematic editor to refresh the display.
56 MAIL_RELOAD_LIB, // Reload Library List if one was added
57 MAIL_RELOAD_PLUGINS, // Reload python plugins
58 MAIL_REFRESH_SYMBOL // Refresh symbol in symbol viewer
59};
60
61#endif // MAIL_TYPE_H_
MAIL_T
The set of mail types sendable via KIWAY::ExpressMail() and supplied as the aCommand parameter to tha...
Definition: mail_type.h:38
@ MAIL_PCB_UPDATE_LINKS
Definition: mail_type.h:52
@ MAIL_IMPORT_FILE
Definition: mail_type.h:48
@ MAIL_SCH_REFRESH
Definition: mail_type.h:53
@ MAIL_CROSS_PROBE
Definition: mail_type.h:39
@ MAIL_PCB_UPDATE
Definition: mail_type.h:46
@ MAIL_LIB_EDIT
Definition: mail_type.h:54
@ MAIL_SELECTION_FORCE
Definition: mail_type.h:41
@ MAIL_SCH_SAVE
Definition: mail_type.h:43
@ MAIL_RELOAD_PLUGINS
Definition: mail_type.h:57
@ MAIL_ASSIGN_FOOTPRINTS
Definition: mail_type.h:42
@ MAIL_REFRESH_SYMBOL
Definition: mail_type.h:58
@ MAIL_FP_EDIT
Definition: mail_type.h:55
@ MAIL_SCH_GET_ITEM
Definition: mail_type.h:50
@ MAIL_SCH_UPDATE
Definition: mail_type.h:47
@ MAIL_SCH_GET_NETLIST
Definition: mail_type.h:49
@ MAIL_SYMBOL_NETLIST
Definition: mail_type.h:45
@ MAIL_SELECTION
Definition: mail_type.h:40
@ MAIL_RELOAD_LIB
Definition: mail_type.h:56
@ MAIL_EESCHEMA_NETLIST
Definition: mail_type.h:44
@ MAIL_PCB_GET_NETLIST
Definition: mail_type.h:51