/// /// Copyright (C) 2007 Andrej Vodopivec /// /// This program is free software; you can redistribute it and/or modify /// it under the terms of the GNU General Public License as published by /// the Free Software Foundation; either version 2 of the License, or /// (at your option) any later version. /// /// This program is distributed in the hope that it will be useful, /// but WITHOUT ANY WARRANTY; without even the implied warranty of /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the /// GNU General Public License for more details. /// /// /// You should have received a copy of the GNU General Public License /// along with this program; if not, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "SubSupCell.h" SubSupCell::SubSupCell() : MathCell() { m_baseCell = NULL; m_indexCell = NULL; m_exptCell = NULL; } SubSupCell::~SubSupCell() { if (m_baseCell != NULL) delete m_baseCell; if (m_indexCell != NULL) delete m_indexCell; if (m_exptCell != NULL) delete m_exptCell; if (m_next != NULL) delete m_next; } MathCell* SubSupCell::Copy(bool all) { SubSupCell* tmp = new SubSupCell; CopyData(this, tmp); tmp->SetBase(m_baseCell->Copy(true)); tmp->SetIndex(m_indexCell->Copy(true)); tmp->SetExponent(m_exptCell->Copy(true)); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void SubSupCell::Destroy() { if (m_baseCell != NULL) delete m_baseCell; if (m_indexCell != NULL) delete m_indexCell; if (m_exptCell != NULL) delete m_exptCell; m_baseCell = NULL; m_indexCell = NULL; m_exptCell = NULL; m_next = NULL; } void SubSupCell::SetIndex(MathCell *index) { if (index == NULL) return ; if (m_indexCell != NULL) delete m_indexCell; m_indexCell = index; } void SubSupCell::SetBase(MathCell *base) { if (base == NULL) return ; if (m_baseCell != NULL) delete m_baseCell; m_baseCell = base; } void SubSupCell::SetExponent(MathCell *exp) { if (exp == NULL) return ; if (m_exptCell != NULL) delete m_exptCell; m_exptCell = exp; } void SubSupCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_baseCell->RecalculateWidths(parser, fontsize, true); m_indexCell->RecalculateWidths(parser, MAX(8, fontsize - 3), true); m_exptCell->RecalculateWidths(parser, MAX(8, fontsize - 3), true); m_width = m_baseCell->GetFullWidth(scale) + MAX(m_indexCell->GetFullWidth(scale), m_exptCell->GetFullWidth(scale)) - SCALE_PX(2, parser.GetScale()); MathCell::RecalculateWidths(parser, fontsize, all); } void SubSupCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_baseCell->RecalculateSize(parser, fontsize, true); m_indexCell->RecalculateSize(parser, MAX(8, fontsize - 3), true); m_exptCell->RecalculateSize(parser, MAX(8, fontsize - 3), true); m_height = m_baseCell->GetMaxHeight() + m_indexCell->GetMaxHeight() + m_exptCell->GetMaxHeight() - 2*SCALE_PX((8 * fontsize) / 10 + MC_EXP_INDENT, parser.GetScale()); m_center = m_exptCell->GetMaxHeight() + m_baseCell->GetMaxCenter() - SCALE_PX((8 * fontsize) / 10 + MC_EXP_INDENT, scale); MathCell::RecalculateSize(parser, fontsize, all); } void SubSupCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { if (DrawThisCell(parser, point)) { double scale = parser.GetScale(); wxPoint bs, in; bs.x = point.x; bs.y = point.y; m_baseCell->Draw(parser, bs, fontsize, true); in.x = point.x + m_baseCell->GetFullWidth(scale) - SCALE_PX(2, scale); in.y = point.y + m_baseCell->GetMaxDrop() + m_indexCell->GetMaxCenter() - SCALE_PX((8 * fontsize) / 10 + MC_EXP_INDENT, scale); m_indexCell->Draw(parser, in, MAX(8, fontsize - 3), true); in.y = point.y - m_baseCell->GetMaxCenter() - m_exptCell->GetMaxHeight() + m_exptCell->GetMaxCenter() + SCALE_PX((8 * fontsize) / 10 + MC_EXP_INDENT, scale); m_exptCell->Draw(parser, in, MAX(8, fontsize - 3), true); } MathCell::Draw(parser, point, fontsize, all); } wxString SubSupCell::ToString(bool all) { wxString s; if (m_baseCell->IsCompound()) s += wxT("(") + m_baseCell->ToString(true) + wxT(")"); else s += m_baseCell->ToString(true); s += wxT("[") + m_indexCell->ToString(true) + wxT("]"); s += wxT("^"); if (m_exptCell->IsCompound()) s += wxT("("); s += m_exptCell->ToString(true); if (m_exptCell->IsCompound()) s += wxT(")"); s += MathCell::ToString(all); return s; } wxString SubSupCell::ToTeX(bool all) { wxString s = wxT("{") + m_baseCell->ToTeX(true) + wxT("}_{") + m_indexCell->ToTeX(true) + wxT("}^{") + m_exptCell->ToTeX(true) + wxT("}"); s += MathCell::ToTeX(all); return s; } void SubSupCell::SelectInner(wxRect& rect, MathCell **first, MathCell **last) { *first = NULL; *last = NULL; if (m_indexCell->ContainsRect(rect)) m_indexCell->SelectRect(rect, first, last); else if (m_baseCell->ContainsRect(rect)) m_baseCell->SelectRect(rect, first, last); else if (m_exptCell->ContainsRect(rect)) m_exptCell->SelectRect(rect, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } }