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.

222 lines
7.6 KiB

Modular-Kicad milestone B), major portions: *) Rework the set language support, simplify it by using KIWAY. Now any major frame with a "change language" menu can change the language for all KIWAY_PLAYERs in the whole KIWAY. Multiple KIWAYs are not supported yet. *) Simplify "modal wxFrame" support, and add that support exclusively to KIWAY_PLAYER where it is inherited by all derivatives. The function KIWAY_PLAYER::ShowModal() is in the vtable and so is cross module capable. *) Remove the requirements and assumptions that the wxFrame hierarchy always had PCB_EDIT_FRAME and SCH_EDIT_FRAME as immediate parents of their viewers and editors. This is no longer the case, nor required. *) Use KIWAY::Player() everywhere to make KIWAY_PLAYERs, this registers the KIWAY_PLAYER within the KIWAY and makes it very easy to find an open frame quickly. It also gives control to the KIWAY as to frame hierarchical relationships. *) Change single_top to use the KIWAY for loading a KIFACE and instantiating the single KIWAY_PLAYER, see bullet immediately above. *) Add KIWAY::OnKiwayEnd() and call it from PGM_BASE at program termination, this gives the KIFACEs a chance to save their final configuration dope to disk. *) Add dedicated FRAME_T's for the modal frames, so m_Ident can be tested and these modal frames are distinctly different than their non-modal equivalents. KIWAY_PLAYER::IsModal() is !not! a valid test during the wxFrame's constructor, so this is another important reason for having a dedicated FRAME_T for each modal wxFrame. On balance, more lines were deleted than were added to achieve all this.
12 years ago
Modular-Kicad milestone B), major portions: *) Rework the set language support, simplify it by using KIWAY. Now any major frame with a "change language" menu can change the language for all KIWAY_PLAYERs in the whole KIWAY. Multiple KIWAYs are not supported yet. *) Simplify "modal wxFrame" support, and add that support exclusively to KIWAY_PLAYER where it is inherited by all derivatives. The function KIWAY_PLAYER::ShowModal() is in the vtable and so is cross module capable. *) Remove the requirements and assumptions that the wxFrame hierarchy always had PCB_EDIT_FRAME and SCH_EDIT_FRAME as immediate parents of their viewers and editors. This is no longer the case, nor required. *) Use KIWAY::Player() everywhere to make KIWAY_PLAYERs, this registers the KIWAY_PLAYER within the KIWAY and makes it very easy to find an open frame quickly. It also gives control to the KIWAY as to frame hierarchical relationships. *) Change single_top to use the KIWAY for loading a KIFACE and instantiating the single KIWAY_PLAYER, see bullet immediately above. *) Add KIWAY::OnKiwayEnd() and call it from PGM_BASE at program termination, this gives the KIFACEs a chance to save their final configuration dope to disk. *) Add dedicated FRAME_T's for the modal frames, so m_Ident can be tested and these modal frames are distinctly different than their non-modal equivalents. KIWAY_PLAYER::IsModal() is !not! a valid test during the wxFrame's constructor, so this is another important reason for having a dedicated FRAME_T for each modal wxFrame. On balance, more lines were deleted than were added to achieve all this.
12 years ago
Modular-Kicad milestone B), major portions: *) Rework the set language support, simplify it by using KIWAY. Now any major frame with a "change language" menu can change the language for all KIWAY_PLAYERs in the whole KIWAY. Multiple KIWAYs are not supported yet. *) Simplify "modal wxFrame" support, and add that support exclusively to KIWAY_PLAYER where it is inherited by all derivatives. The function KIWAY_PLAYER::ShowModal() is in the vtable and so is cross module capable. *) Remove the requirements and assumptions that the wxFrame hierarchy always had PCB_EDIT_FRAME and SCH_EDIT_FRAME as immediate parents of their viewers and editors. This is no longer the case, nor required. *) Use KIWAY::Player() everywhere to make KIWAY_PLAYERs, this registers the KIWAY_PLAYER within the KIWAY and makes it very easy to find an open frame quickly. It also gives control to the KIWAY as to frame hierarchical relationships. *) Change single_top to use the KIWAY for loading a KIFACE and instantiating the single KIWAY_PLAYER, see bullet immediately above. *) Add KIWAY::OnKiwayEnd() and call it from PGM_BASE at program termination, this gives the KIFACEs a chance to save their final configuration dope to disk. *) Add dedicated FRAME_T's for the modal frames, so m_Ident can be tested and these modal frames are distinctly different than their non-modal equivalents. KIWAY_PLAYER::IsModal() is !not! a valid test during the wxFrame's constructor, so this is another important reason for having a dedicated FRAME_T for each modal wxFrame. On balance, more lines were deleted than were added to achieve all this.
12 years ago
Modular-Kicad milestone B), major portions: *) Rework the set language support, simplify it by using KIWAY. Now any major frame with a "change language" menu can change the language for all KIWAY_PLAYERs in the whole KIWAY. Multiple KIWAYs are not supported yet. *) Simplify "modal wxFrame" support, and add that support exclusively to KIWAY_PLAYER where it is inherited by all derivatives. The function KIWAY_PLAYER::ShowModal() is in the vtable and so is cross module capable. *) Remove the requirements and assumptions that the wxFrame hierarchy always had PCB_EDIT_FRAME and SCH_EDIT_FRAME as immediate parents of their viewers and editors. This is no longer the case, nor required. *) Use KIWAY::Player() everywhere to make KIWAY_PLAYERs, this registers the KIWAY_PLAYER within the KIWAY and makes it very easy to find an open frame quickly. It also gives control to the KIWAY as to frame hierarchical relationships. *) Change single_top to use the KIWAY for loading a KIFACE and instantiating the single KIWAY_PLAYER, see bullet immediately above. *) Add KIWAY::OnKiwayEnd() and call it from PGM_BASE at program termination, this gives the KIFACEs a chance to save their final configuration dope to disk. *) Add dedicated FRAME_T's for the modal frames, so m_Ident can be tested and these modal frames are distinctly different than their non-modal equivalents. KIWAY_PLAYER::IsModal() is !not! a valid test during the wxFrame's constructor, so this is another important reason for having a dedicated FRAME_T for each modal wxFrame. On balance, more lines were deleted than were added to achieve all this.
12 years ago
  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
  5. * Copyright (C) 2008 Wayne Stambaugh <stambaughw@gmail.com>
  6. * Copyright (C) 2004-2017 KiCad Developers, see AUTHORS.txt for contributors.
  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. * @file viewlib_frame.h
  27. */
  28. #ifndef LIBVIEWFRM_H_
  29. #define LIBVIEWFRM_H_
  30. #include <wx/gdicmn.h>
  31. #include <sch_base_frame.h>
  32. #include <sch_screen.h>
  33. class wxListBox;
  34. class SCHLIB_FILTER;
  35. class LIB_ALIAS;
  36. class LIB_PART;
  37. class SYMBOL_LIB_TABLE_ROW;
  38. /**
  39. * Symbol library viewer main window.
  40. */
  41. class LIB_VIEW_FRAME : public SCH_BASE_FRAME
  42. {
  43. public:
  44. /**
  45. * Constructor
  46. * @param aKiway
  47. * @param aParent = the parent frame
  48. * @param aFrameType must be given either FRAME_SCH_LIB_VIEWER or
  49. * FRAME_SCH_LIB_VIEWER_MODAL
  50. * @param aLibrary = the library to open when starting (default = NULL)
  51. */
  52. LIB_VIEW_FRAME( KIWAY* aKiway, wxWindow* aParent,
  53. FRAME_T aFrameType, const wxString& aLibraryName = wxEmptyString );
  54. ~LIB_VIEW_FRAME();
  55. void OnSize( wxSizeEvent& event ) override;
  56. /**
  57. * Creates or recreates a sorted list of currently loaded libraries.
  58. *
  59. * @return whether the selection of either library or component was changed (i.e. because the
  60. * selected library no longer exists)
  61. */
  62. bool ReCreateListLib();
  63. /**
  64. * Create or recreate the list of components in the currently selected library.
  65. *
  66. * @return whether the selection was changed (i.e. because the selected component no longer
  67. * exists)
  68. */
  69. bool ReCreateListCmp();
  70. void DisplayLibInfos();
  71. void RedrawActiveWindow( wxDC* DC, bool EraseBg ) override;
  72. void OnCloseWindow( wxCloseEvent& Event );
  73. void CloseLibraryViewer( wxCommandEvent& event );
  74. void ReCreateHToolbar() override;
  75. void ReCreateVToolbar() override;
  76. void ReCreateMenuBar() override;
  77. void OnLeftClick( wxDC* DC, const wxPoint& MousePos ) override;
  78. double BestZoom() override;
  79. void ClickOnLibList( wxCommandEvent& event );
  80. void ClickOnCmpList( wxCommandEvent& event );
  81. void OnSetRelativeOffset( wxCommandEvent& event );
  82. void OnSelectSymbol( wxCommandEvent& aEvent );
  83. void OnShowElectricalType( wxCommandEvent& event );
  84. bool GeneralControl( wxDC* aDC, const wxPoint& aPosition, EDA_KEY aHotKey = 0 ) override;
  85. ///> @copydoc EDA_DRAW_FRAME::GetHotKeyDescription()
  86. EDA_HOTKEY* GetHotKeyDescription( int aCommand ) const override;
  87. /**
  88. * Handle hot key events.
  89. *
  90. * <p>
  91. * Some commands are relative to the item under the mouse cursor. Commands are
  92. * case insensitive
  93. * </p>
  94. */
  95. bool OnHotKey( wxDC* aDC, int aHotKey, const wxPoint& aPosition,
  96. EDA_ITEM* aItem = NULL ) override;
  97. void LoadSettings( wxConfigBase* aCfg ) override;
  98. void SaveSettings( wxConfigBase* aCfg ) override;
  99. /**
  100. * Set a filter to display only libraries and/or components which match the filter.
  101. *
  102. * @param aFilter is a filter to pass the allowed library name list and/or some other filter
  103. * see SCH_BASE_FRAME::SelectComponentFromLibrary() for details.
  104. * if aFilter == NULL, remove all filtering
  105. */
  106. void SetFilter( const SCHLIB_FILTER* aFilter );
  107. /**
  108. * Set the selected library in the library window.
  109. *
  110. * @param aLibName name of the library to be selected.
  111. */
  112. void SetSelectedLibrary( const wxString& aLibName );
  113. /**
  114. * Set the selected component.
  115. *
  116. * @param aComponentName : the name of the component to be selected.
  117. */
  118. void SetSelectedComponent( const wxString& aComponentName );
  119. // Accessors:
  120. /**
  121. * Set unit and convert, and set flag preventing them from automatically resetting to 1
  122. *
  123. * @param aUnit - unit; if invalid will be set to 1
  124. * @param aConvert - convert; if invalid will be set to 1
  125. */
  126. void SetUnitAndConvert( int aUnit, int aConvert );
  127. int GetUnit( void ) { return m_unit; }
  128. int GetConvert( void ) { return m_convert; }
  129. bool GetShowElectricalType() { return m_showPinElectricalTypeName; }
  130. void SetShowElectricalType( bool aShow ) { m_showPinElectricalTypeName = aShow; }
  131. private:
  132. /**
  133. * Called when the frame is activated to reload the libraries and component lists
  134. * that can be changed by the schematic editor or the library editor.
  135. */
  136. virtual void OnActivate( wxActivateEvent& event ) override;
  137. /**
  138. * Function ExportToSchematicLibraryPart
  139. * exports the current component to schematic and close the library browser.
  140. */
  141. void ExportToSchematicLibraryPart( wxCommandEvent& event );
  142. bool OnRightClick( const wxPoint& MousePos, wxMenu* PopMenu ) override;
  143. void DClickOnCmpList( wxCommandEvent& event );
  144. void onUpdateAlternateBodyStyleButton( wxUpdateUIEvent& aEvent );
  145. void onUpdateNormalBodyStyleButton( wxUpdateUIEvent& aEvent );
  146. void onUpdateViewDoc( wxUpdateUIEvent& aEvent );
  147. void OnUpdateElectricalType( wxUpdateUIEvent& aEvent );
  148. void onSelectNextSymbol( wxCommandEvent& aEvent );
  149. void onSelectPreviousSymbol( wxCommandEvent& aEvent );
  150. void onViewSymbolDocument( wxCommandEvent& aEvent );
  151. void onSelectSymbolBodyStyle( wxCommandEvent& aEvent );
  152. void onSelectSymbolUnit( wxCommandEvent& aEvent );
  153. LIB_ALIAS* getSelectedAlias();
  154. LIB_PART* getSelectedSymbol();
  155. // Private members:
  156. wxComboBox* m_selpartBox;
  157. // List of libraries (for selection )
  158. wxListBox* m_libList; // The list of libs
  159. int m_libListWidth; // Last width of the window
  160. // List of components in the selected library
  161. wxListBox* m_cmpList; // The list of components
  162. int m_cmpListWidth; // Last width of the window
  163. // Filters to build list of libs/list of parts
  164. bool m_listPowerCmpOnly;
  165. wxArrayString m_allowedLibs;
  166. // TODO(hzeller): looks like these members were chosen to be static to survive different
  167. // instances of this browser and communicate it to the next instance. This looks like an
  168. // ugly hack, and should be solved differently.
  169. static wxString m_libraryName;
  170. static wxString m_entryName;
  171. static int m_unit;
  172. static int m_convert;
  173. /**
  174. * Updated to `true` if a list rewrite on GUI activation resulted in the component
  175. * selection changing, or if the user has changed the selection manually.
  176. */
  177. bool m_selection_changed;
  178. /**
  179. * the option to show the pin electrical name in the component editor
  180. */
  181. bool m_showPinElectricalTypeName;
  182. DECLARE_EVENT_TABLE()
  183. };
  184. #endif // LIBVIEWFRM_H_