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.

54 lines
1.5 KiB

  1. /**
  2. * @file pl_editor_layout.cpp
  3. * @brief PL_EDITOR_LAYOUT class functions.
  4. */
  5. /*
  6. * This program source code file is part of KiCad, a free EDA CAD application.
  7. *
  8. * Copyright (C) 2013 CERN
  9. * @author Jean-Pierre Charras, jp.charras at wanadoo.fr
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License
  13. * as published by the Free Software Foundation; either version 2
  14. * of the License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, you may find one here:
  23. * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  24. * or you may search the http://www.gnu.org website for the version 2 license,
  25. * or you may write to the Free Software Foundation, Inc.,
  26. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  27. */
  28. #include <limits.h>
  29. #include <algorithm>
  30. #include <fctsys.h>
  31. #include <common.h>
  32. #include <eda_rect.h>
  33. #include <pl_editor_layout.h>
  34. PL_EDITOR_LAYOUT::PL_EDITOR_LAYOUT()
  35. {
  36. PAGE_INFO pageInfo( wxT( "A4" ) );
  37. SetPageSettings( pageInfo );
  38. }
  39. PL_EDITOR_LAYOUT::~PL_EDITOR_LAYOUT()
  40. {
  41. }
  42. EDA_RECT PL_EDITOR_LAYOUT::ComputeBoundingBox()
  43. {
  44. EDA_RECT bbox;
  45. SetBoundingBox( bbox );
  46. return bbox;
  47. }