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.

94 lines
2.8 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright The 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 SCH_TABLECELL_H
  24. #define SCH_TABLECELL_H
  25. #include <sch_textbox.h>
  26. class SCH_TABLECELL : public SCH_TEXTBOX
  27. {
  28. public:
  29. SCH_TABLECELL( int aLineWidth = 0, FILL_T aFillType = FILL_T::NO_FILL );
  30. static inline bool ClassOf( const EDA_ITEM* aItem )
  31. {
  32. return aItem && SCH_TABLECELL_T == aItem->Type();
  33. }
  34. virtual wxString GetClass() const override
  35. {
  36. return wxT( "SCH_TABLECELL" );
  37. }
  38. wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const override;
  39. EDA_ITEM* Clone() const override
  40. {
  41. return new SCH_TABLECELL( *this );
  42. }
  43. EDA_GROUP* GetParentGroup() const override
  44. {
  45. return GetParent()->GetParentGroup();
  46. }
  47. int GetRow() const;
  48. int GetColumn() const;
  49. /// @return the spreadsheet nomenclature for the cell (ie: B3 for 2nd column, 3rd row)
  50. wxString GetAddr() const;
  51. int GetColSpan() const { return m_colSpan; }
  52. void SetColSpan( int aSpan ) { m_colSpan = aSpan; }
  53. int GetRowSpan() const { return m_rowSpan; }
  54. void SetRowSpan( int aSpan ) { m_rowSpan = aSpan; }
  55. int GetRowHeight() const;
  56. void SetRowHeight( int aHeight );
  57. int GetColumnWidth() const;
  58. void SetColumnWidth( int aWidth );
  59. void Plot( PLOTTER* aPlotter, bool aBackground, const SCH_PLOT_OPTS& aPlotOpts,
  60. int aUnit, int aBodyStyle, const VECTOR2I& aOffset, bool aDimmed ) override;
  61. void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
  62. double Similarity( const SCH_ITEM& aOther ) const override;
  63. bool operator==( const SCH_TABLECELL& aOther ) const;
  64. bool operator==( const SCH_ITEM& aOther ) const override;
  65. protected:
  66. void swapData( SCH_ITEM* aItem ) override;
  67. int m_colSpan;
  68. int m_rowSpan;
  69. };
  70. #endif /* SCH_TABLECELL_H */