You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

108 lines
4.1 KiB

  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 <dick@softplc.com>
  5. * Copyright (C) 2013-2019 KiCad Developers, see change_log.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, you may find one here:
  19. * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  20. * or you may search the http://www.gnu.org website for the version 2 license,
  21. * or you may write to the Free Software Foundation, Inc.,
  22. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  23. */
  24. // This header is an insolation layer between top most frames and any number of
  25. // DIALOG classes which can be called from a frame window.
  26. // It is a place to put invocation functions for [modal] dialogs, with benefits:
  27. //
  28. // 1) The information about each dialog class is not exposed to the frame.
  29. // So therefore the DIALOG class can often be kept out of a header file entirely.
  30. //
  31. // 2) The information about the calling frame is not necessarily exposed to
  32. // to the called dialog class, at least not in here.
  33. // The actual InvokeDialog<class>() function is usually coded at the bottom of the
  34. // DIALOG_<class>.cpp file.
  35. #ifndef INVOKE_SCH_DIALOG_H_
  36. #define INVOKE_SCH_DIALOG_H_
  37. #include <set>
  38. #include <vector>
  39. #include <list>
  40. #include <class_draw_panel_gal.h>
  41. class wxFrame;
  42. class wxDialog;
  43. class LIB_PART;
  44. class PART_LIBS;
  45. class SCH_COMPONENT;
  46. class SCH_SHEET_PATH;
  47. class RESCUER;
  48. // Often this is not used in the prototypes, since wxFrame is good enough and would
  49. // represent maximum information hiding.
  50. class SCH_EDIT_FRAME;
  51. /**
  52. * This dialog asks the user which rescuable, cached parts he wants to rescue.
  53. * Any rejects will be pruned from \a aCandidates.
  54. *
  55. * @param aParent - the wxWindow object calling this dialog
  56. * @param aRescuer - the active RESCUER instance
  57. * @param aCurrentSheet the current sheet in the schematic editor frame
  58. * @param aGalBackEndType the current GAL type used to render symbols
  59. * @param aAskShowAgain - if true, a "Never Show Again" button will be included
  60. */
  61. int InvokeDialogRescueEach( wxWindow* aParent, RESCUER& aRescuer, SCH_SHEET_PATH* aCurrentSheet,
  62. EDA_DRAW_PANEL_GAL::GAL_TYPE aGalBackEndType, bool aAskShowAgain );
  63. /// Create the modeless DIALOG_ERC and show it, return something to
  64. /// destroy or close it. The dialog will have ID_DIALOG_ERC from id.h
  65. wxDialog* InvokeDialogERC( SCH_EDIT_FRAME* aCaller );
  66. /// Create and show DIALOG_PRINT_USING_PRINTER and return whatever
  67. /// DIALOG_PRINT_USING_PRINTER::ShowModal() returns.
  68. int InvokeDialogPrintUsingPrinter( SCH_EDIT_FRAME* aCaller );
  69. /// Create and show DIALOG_BOM and return whatever
  70. /// DIALOG_BOM::ShowModal() returns.
  71. int InvokeDialogCreateBOM( SCH_EDIT_FRAME* aCaller );
  72. /// Create and show DIALOG_BUS_MANAGER
  73. void InvokeDialogBusManager( SCH_EDIT_FRAME* aCaller );
  74. /// Update symbol fields
  75. int InvokeDialogUpdateFields( SCH_EDIT_FRAME* aCaller,
  76. const std::list<SCH_COMPONENT*> aComponents, bool aCreateUndoEntry );
  77. /**
  78. * Create and shows NETLIST_DIALOG and returns whatever
  79. * NETLIST_DIALOG::ShowModal() returns.
  80. *
  81. * @param int - NET_PLUGIN_CHANGE means user added or deleted a plugin,
  82. * wxID_OK, or wxID_CANCEL.
  83. */
  84. #define NET_PLUGIN_CHANGE 1
  85. int InvokeDialogNetList( SCH_EDIT_FRAME* aCaller );
  86. /**
  87. * Run a dialog to modify the LIB_ID of components for instance when a symbol has
  88. * moved from a symbol library to another symbol library
  89. * @return true if changes are made, false if no change
  90. */
  91. bool InvokeDialogEditComponentsLibId( SCH_EDIT_FRAME* aCaller );
  92. #endif // INVOKE_SCH_DIALOG_H_