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.

67 lines
2.5 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2015 CERN
  5. * @author Maciej Suminski <maciej.suminski@cern.ch>
  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. #include <dialogs/dialog_track_via_properties_base.h>
  25. #include <widgets/unit_binder.h>
  26. #include <core/optional.h>
  27. #include <layers_id_colors_and_visibility.h>
  28. class SELECTION;
  29. class COMMIT;
  30. class NET_SELECTOR_COMBO_POPUP;
  31. class PCB_BASE_FRAME;
  32. class D_PAD;
  33. class DIALOG_TRACK_VIA_PROPERTIES : public DIALOG_TRACK_VIA_PROPERTIES_BASE
  34. {
  35. public:
  36. DIALOG_TRACK_VIA_PROPERTIES( PCB_BASE_FRAME* aParent, const SELECTION& aItems,
  37. COMMIT& aCommit );
  38. bool TransferDataFromWindow() override;
  39. private:
  40. void onTrackNetclassCheck( wxCommandEvent& aEvent ) override;
  41. void onWidthSelect( wxCommandEvent& aEvent );
  42. void onWidthEdit( wxCommandEvent& aEvent );
  43. void onViaNetclassCheck( wxCommandEvent& aEvent ) override;
  44. void onViaSelect( wxCommandEvent& aEvent );
  45. void onViaEdit( wxCommandEvent& aEvent );
  46. bool confirmPadChange( const std::vector<D_PAD*>& connectedPads );
  47. PCB_BASE_FRAME* m_frame;
  48. const SELECTION& m_items; // List of items to be modified.
  49. COMMIT& m_commit; // An undo record to add any changes to.
  50. UNIT_BINDER m_trackStartX, m_trackStartY;
  51. UNIT_BINDER m_trackEndX, m_trackEndY;
  52. UNIT_BINDER m_trackWidth;
  53. UNIT_BINDER m_viaX, m_viaY;
  54. UNIT_BINDER m_viaDiameter, m_viaDrill;
  55. bool m_tracks; // True if dialog displays any track properties.
  56. bool m_vias; // True if dialog displays any via properties.
  57. };