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.

92 lines
2.9 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. void SwapData( SCH_ITEM* aItem ) override;
  44. int GetRow() const;
  45. int GetColumn() const;
  46. /// @return the spreadsheet nomenclature for the cell (ie: B3 for 2nd column, 3rd row)
  47. wxString GetAddr() const;
  48. int GetColSpan() const { return m_colSpan; }
  49. void SetColSpan( int aSpan ) { m_colSpan = aSpan; }
  50. int GetRowSpan() const { return m_rowSpan; }
  51. void SetRowSpan( int aSpan ) { m_rowSpan = aSpan; }
  52. int GetRowHeight() const;
  53. void SetRowHeight( int aHeight );
  54. int GetColumnWidth() const;
  55. void SetColumnWidth( int aWidth );
  56. void Print( const SCH_RENDER_SETTINGS* aSettings, int aUnit, int aBodyStyle,
  57. const VECTOR2I& offset, bool aForceNoFill, bool aDimmed ) override;
  58. void Plot( PLOTTER* aPlotter, bool aBackground, const SCH_PLOT_OPTS& aPlotOpts,
  59. int aUnit, int aBodyStyle, const VECTOR2I& aOffset, bool aDimmed ) override;
  60. void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
  61. double Similarity( const SCH_ITEM& aOther ) const override;
  62. bool operator==( const SCH_TABLECELL& aOther ) const;
  63. bool operator==( const SCH_ITEM& aOther ) const override;
  64. protected:
  65. int m_colSpan;
  66. int m_rowSpan;
  67. };
  68. #endif /* SCH_TABLECELL_H */