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.

127 lines
4.0 KiB

* KIWAY Milestone A): Make major modules into DLL/DSOs. ! The initial testing of this commit should be done using a Debug build so that all the wxASSERT()s are enabled. Also, be sure and keep enabled the USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it off is senseless anyways. If you want stable code, go back to a prior version, the one tagged with "stable". * Relocate all functionality out of the wxApp derivative into more finely targeted purposes: a) DLL/DSO specific b) PROJECT specific c) EXE or process specific d) configuration file specific data e) configuration file manipulations functions. All of this functionality was blended into an extremely large wxApp derivative and that was incompatible with the desire to support multiple concurrently loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects. An amazing amount of organization come from simply sorting each bit of functionality into the proper box. * Switch to wxConfigBase from wxConfig everywhere except instantiation. * Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD, PGM_SINGLE_TOP, * Remove "Return" prefix on many function names. * Remove obvious comments from CMakeLists.txt files, and from else() and endif()s. * Fix building boost for use in a DSO on linux. * Remove some of the assumptions in the CMakeLists.txt files that windows had to be the host platform when building windows binaries. * Reduce the number of wxStrings being constructed at program load time via static construction. * Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that these functions are useful even when the wxConfigBase comes from another source, as is the case in the KICAD_MANAGER_FRAME. * Move the setting of the KIPRJMOD environment variable into class PROJECT, so that it can be moved into a project variable soon, and out of FP_LIB_TABLE. * Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all its child wxFrames and wxDialogs now have a Kiway() member function which returns a KIWAY& that that window tree branch is in support of. This is like wxWindows DNA in that child windows get this member with proper value at time of construction. * Anticipate some of the needs for milestones B) and C) and make code adjustments now in an effort to reduce work in those milestones. * No testing has been done for python scripting, since milestone C) has that being largely reworked and re-thought-out.
12 years ago
* KIWAY Milestone A): Make major modules into DLL/DSOs. ! The initial testing of this commit should be done using a Debug build so that all the wxASSERT()s are enabled. Also, be sure and keep enabled the USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it off is senseless anyways. If you want stable code, go back to a prior version, the one tagged with "stable". * Relocate all functionality out of the wxApp derivative into more finely targeted purposes: a) DLL/DSO specific b) PROJECT specific c) EXE or process specific d) configuration file specific data e) configuration file manipulations functions. All of this functionality was blended into an extremely large wxApp derivative and that was incompatible with the desire to support multiple concurrently loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects. An amazing amount of organization come from simply sorting each bit of functionality into the proper box. * Switch to wxConfigBase from wxConfig everywhere except instantiation. * Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD, PGM_SINGLE_TOP, * Remove "Return" prefix on many function names. * Remove obvious comments from CMakeLists.txt files, and from else() and endif()s. * Fix building boost for use in a DSO on linux. * Remove some of the assumptions in the CMakeLists.txt files that windows had to be the host platform when building windows binaries. * Reduce the number of wxStrings being constructed at program load time via static construction. * Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that these functions are useful even when the wxConfigBase comes from another source, as is the case in the KICAD_MANAGER_FRAME. * Move the setting of the KIPRJMOD environment variable into class PROJECT, so that it can be moved into a project variable soon, and out of FP_LIB_TABLE. * Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all its child wxFrames and wxDialogs now have a Kiway() member function which returns a KIWAY& that that window tree branch is in support of. This is like wxWindows DNA in that child windows get this member with proper value at time of construction. * Anticipate some of the needs for milestones B) and C) and make code adjustments now in an effort to reduce work in those milestones. * No testing has been done for python scripting, since milestone C) has that being largely reworked and re-thought-out.
12 years ago
  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2009 Jean-Pierre Charras, jean-pierre.charras at wanadoo.fr
  5. * Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
  6. * Copyright (C) 2018 CERN
  7. * Author: Maciej Suminski <maciej.suminski@cern.ch>
  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. * @file board_printout.h
  28. * @brief Board print handler definition file.
  29. */
  30. #ifndef BOARD_PRINTOUT_H
  31. #define BOARD_PRINTOUT_H
  32. #include <wx/print.h>
  33. #include <layer_ids.h>
  34. #include <eda_rect.h>
  35. #include <printout.h>
  36. #include <memory>
  37. namespace KIGFX {
  38. class GAL;
  39. class VIEW;
  40. class PAINTER;
  41. };
  42. struct BOARD_PRINTOUT_SETTINGS : public PRINTOUT_SETTINGS
  43. {
  44. BOARD_PRINTOUT_SETTINGS( const PAGE_INFO& aPageInfo );
  45. virtual ~BOARD_PRINTOUT_SETTINGS()
  46. {
  47. }
  48. LSET m_LayerSet; ///< Layers to print
  49. bool m_Mirror; ///< Print mirrored
  50. void Load( APP_SETTINGS_BASE* aConfig ) override;
  51. void Save( APP_SETTINGS_BASE* aConfig ) override;
  52. };
  53. /**
  54. * An object derived from wxPrintout to handle the necessary information to control a printer
  55. * when printing a board.
  56. */
  57. class BOARD_PRINTOUT : public wxPrintout
  58. {
  59. public:
  60. BOARD_PRINTOUT( const BOARD_PRINTOUT_SETTINGS& aParams, const KIGFX::VIEW* aView,
  61. const wxString& aTitle );
  62. virtual ~BOARD_PRINTOUT() {}
  63. void GetPageInfo( int* minPage, int* maxPage, int* selPageFrom, int* selPageTo ) override;
  64. bool HasPage( int aPage ) override
  65. {
  66. return aPage <= m_settings.m_pageCount;
  67. }
  68. /**
  69. * Print a page (or a set of pages).
  70. *
  71. * @note This function prepares the print parameters for the function which actually prints
  72. * the draw layers.
  73. *
  74. * @param aLayerName a text which can be printed as layer name.
  75. * @param aPageNum the number of the current page (only used to print this value).
  76. * @param aPageCount the number of pages to print (only used to print this value).
  77. */
  78. virtual void DrawPage( const wxString& aLayerName = wxEmptyString,
  79. int aPageNum = 1, int aPageCount = 1 );
  80. protected:
  81. ///< Convert mils to internal units
  82. virtual int milsToIU( double aMils ) const = 0;
  83. ///< Enables layers visibility for a printout
  84. virtual void setupViewLayers( KIGFX::VIEW& aView, const LSET& aLayerSet );
  85. ///< Configures PAINTER object for a printout
  86. virtual void setupPainter( KIGFX::PAINTER& aPainter );
  87. ///< Configures GAL object for a printout
  88. virtual void setupGal( KIGFX::GAL* aGal );
  89. ///< Returns bounding box of the printed objects (excluding drawing-sheet frame)
  90. virtual EDA_RECT getBoundingBox() = 0;
  91. ///< Returns a PAINTER instance used to draw the items.
  92. virtual std::unique_ptr<KIGFX::PAINTER> getPainter( KIGFX::GAL* aGal ) = 0;
  93. ///< Source VIEW object (note that actual printing only refers to this object)
  94. const KIGFX::VIEW* m_view;
  95. ///< Printout parameters
  96. BOARD_PRINTOUT_SETTINGS m_settings;
  97. /// True if the caller is Gerbview, false for Pcbnew
  98. bool m_gerbviewPrint;
  99. };
  100. #endif // BOARD_PRINTOUT_H