/* AbiWord * Copyright (C) 2005 Martin Sevior * * 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 #include #include #include "ap_Features.h" #include "ut_assert.h" #include "ut_string.h" #include "ut_debugmsg.h" #include "ut_mbtowc.h" #include "ap_Strings.h" #include "xap_App.h" #include "xap_Dialog_Id.h" #include "xap_DialogFactory.h" #include "xap_Dlg_MessageBox.h" #include "fl_DocLayout.h" #include "fv_View.h" #include "gr_EmbedManager.h" #include "ap_Dialog_Latex.h" AP_Dialog_Latex::AP_Dialog_Latex(XAP_DialogFactory * pDlgFactory, XAP_Dialog_Id id) : XAP_Dialog_Modeless(pDlgFactory,id) { m_answer = a_OK; } AP_Dialog_Latex::~AP_Dialog_Latex(void) { } AP_Dialog_Latex::tAnswer AP_Dialog_Latex::getAnswer(void) const { return m_answer; } /*! * Use the convert method of the embedmanager to convert from Latex to MathML */ bool AP_Dialog_Latex::convertLatexToMathML(void) { UT_ByteBuf From,To; From.ins(0,reinterpret_cast(m_sLatex.utf8_str()),static_cast(m_sLatex.size())); XAP_Frame * pFrame = getActiveFrame(); FV_View * pView = static_cast(pFrame->getCurrentView()); FL_DocLayout * pLayout = pView->getLayout(); GR_EmbedManager * pEmbed = pLayout->getEmbedManager("mathml"); if (pEmbed->isDefault()) { return false; } if (pEmbed->convert(0,From,To)) { m_sMathML.clear(); UT_UCS4_mbtowc myWC; m_sMathML.appendBuf(To, myWC); return true; } return false; } void AP_Dialog_Latex::ConstructWindowName(void) { const XAP_StringSet * pSS = m_pApp->getStringSet(); gchar * tmp = NULL; UT_uint32 title_width = 60; char wName[200]; UT_XML_cloneNoAmpersands(tmp, pSS->getValue(AP_STRING_ID_DLG_Latex_LatexTitle)); BuildWindowName(wName,static_cast(tmp),title_width); m_sWindowName = wName; FREEP(tmp); } void AP_Dialog_Latex::setActiveFrame(XAP_Frame * /*pFrame*/) { notifyActiveFrame(getActiveFrame()); } void AP_Dialog_Latex::fillLatex(UT_UTF8String & sLatex) { setLatex(sLatex); setLatexInGUI(); } void AP_Dialog_Latex::insertIntoDoc(void) { XAP_Frame * pFrame = getActiveFrame(); FV_View * pView = static_cast(pFrame->getCurrentView()); pView->cmdInsertLatexMath(m_sLatex,m_sMathML); }