KiCad PCB EDA Suite
Loading...
Searching...
No Matches
invoke_sch_dialog.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 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21// This header is an insolation layer between top most frames and any number of
22// DIALOG classes which can be called from a frame window.
23// It is a place to put invocation functions for [modal] dialogs, with benefits:
24//
25// 1) The information about each dialog class is not exposed to the frame.
26// So therefore the DIALOG class can often be kept out of a header file entirely.
27//
28// 2) The information about the calling frame is not necessarily exposed to
29// to the called dialog class, at least not in here.
30
31// The actual InvokeDialog<class>() function is usually coded at the bottom of the
32// DIALOG_<class>.cpp file.
33
34
35#ifndef INVOKE_SCH_DIALOG_H_
36#define INVOKE_SCH_DIALOG_H_
37
38#include <set>
39#include <vector>
40#include <list>
42
43class SCH_SHEET_PATH;
44class RESCUER;
45class SCH_EDIT_FRAME;
46
57int InvokeDialogRescueEach( wxWindow* aParent, RESCUER& aRescuer, SCH_SHEET_PATH* aCurrentSheet,
58 EDA_DRAW_PANEL_GAL::GAL_TYPE aGalBackEndType, bool aAskShowAgain );
59
63
64
72#define NET_PLUGIN_CHANGE 1
74
81
82
83
84#endif // INVOKE_SCH_DIALOG_H_
Schematic editor (Eeschema) main window.
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
int InvokeDialogCreateBOM(SCH_EDIT_FRAME *aCaller)
Create and show DIALOG_BOM and return whatever DIALOG_BOM::ShowModal() returns.
int InvokeDialogRescueEach(wxWindow *aParent, RESCUER &aRescuer, SCH_SHEET_PATH *aCurrentSheet, EDA_DRAW_PANEL_GAL::GAL_TYPE aGalBackEndType, bool aAskShowAgain)
This dialog asks the user which rescuable, cached parts he wants to rescue.
int InvokeDialogNetList(SCH_EDIT_FRAME *aCaller)
bool InvokeDialogEditSymbolsLibId(SCH_EDIT_FRAME *aCaller)
Run a dialog to modify the LIB_ID of symbols for instance when a symbol has moved from a symbol libra...