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.

86 lines
2.5 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2024 KiCad Developers, see AUTHORS.txt for contributors.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 2
  9. * of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, you may find one here:
  18. * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  19. * or you may search the http://www.gnu.org website for the version 2 license,
  20. * or you may write to the Free Software Foundation, Inc.,
  21. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  22. */
  23. #ifndef PCB_TABLECELL_H
  24. #define PCB_TABLECELL_H
  25. #include <pcb_textbox.h>
  26. class PCB_TABLECELL : public PCB_TEXTBOX
  27. {
  28. public:
  29. PCB_TABLECELL( BOARD_ITEM* parent );
  30. static inline bool ClassOf( const EDA_ITEM* aItem )
  31. {
  32. return aItem && PCB_TABLECELL_T == aItem->Type();
  33. }
  34. wxString GetClass() const override
  35. {
  36. return wxT( "PCB_TABLECELL" );
  37. }
  38. virtual wxString GetFriendlyName() const override
  39. {
  40. return _( "Table Cell" );
  41. }
  42. EDA_ITEM* Clone() const override
  43. {
  44. return new PCB_TABLECELL( *this );
  45. }
  46. int GetRow() const;
  47. int GetColumn() const;
  48. // @return the spreadsheet nomenclature for the cell (ie: B3 for 2nd column, 3rd row)
  49. wxString GetAddr() const;
  50. int GetColSpan() const { return m_colSpan; }
  51. void SetColSpan( int aSpan ) { m_colSpan = aSpan; }
  52. int GetRowSpan() const { return m_rowSpan; }
  53. void SetRowSpan( int aSpan ) { m_rowSpan = aSpan; }
  54. wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider ) const override;
  55. void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
  56. double Similarity( const BOARD_ITEM& aBoardItem ) const override;
  57. bool operator==( const PCB_TABLECELL& aBoardItem ) const;
  58. bool operator==( const BOARD_ITEM& aBoardItem ) const override;
  59. protected:
  60. virtual void swapData( BOARD_ITEM* aImage ) override;
  61. protected:
  62. int m_colSpan;
  63. int m_rowSpan;
  64. };
  65. #endif /* PCB_TABLECELL_H */