/* AbiWord * Copyright (C) 1998 AbiSource, Inc. * * 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 "ut_assert.h" #include "ut_string.h" #include "ut_debugmsg.h" #include "xap_App.h" #include "xap_Frame.h" #include "xap_Dialog_Id.h" #include "xap_DialogFactory.h" #include "xap_Dlg_MessageBox.h" #include "fv_View.h" #include "pd_Document.h" #include "pt_Types.h" #include "fp_Line.h" #include "fp_Run.h" #include "fp_ContainerObject.h" #include "fp_TableContainer.h" #include "fl_TableLayout.h" #include "fl_BlockLayout.h" #include "fl_DocLayout.h" #include "ut_timer.h" #include "ap_Dialog_SplitCells.h" AP_Dialog_SplitCells::AP_Dialog_SplitCells(XAP_DialogFactory * pDlgFactory, XAP_Dialog_Id id) : XAP_Dialog_Modeless(pDlgFactory,id, "interface/dialogsplitcells"), m_answer(a_OK), m_iCellSource(0), m_iCellDestination(0), m_SplitType(hori_left), m_iLeft(0), m_iRight(0), m_iTop(0), m_iBot(0), m_iNumRows(0), m_iNumCols(0), m_pTab(NULL), m_pAutoUpdaterMC(NULL), m_bDestroy_says_stopupdating(false), m_bAutoUpdate_happening_now(false) { } AP_Dialog_SplitCells::~AP_Dialog_SplitCells(void) { stopUpdater(); } AP_Dialog_SplitCells::tAnswer AP_Dialog_SplitCells::getAnswer(void) const { return m_answer; } void AP_Dialog_SplitCells::setActiveFrame(XAP_Frame *pFrame) { notifyActiveFrame(getActiveFrame()); } void AP_Dialog_SplitCells::ConstructWindowName(void) { const XAP_StringSet * pSS = m_pApp->getStringSet(); XML_Char * tmp = NULL; UT_uint32 title_width = 26; UT_XML_cloneNoAmpersands(tmp, pSS->getValue(AP_STRING_ID_DLG_SplitCellsTitle)); BuildWindowName(static_cast(m_WindowName),static_cast(tmp),title_width); FREEP(tmp); } void AP_Dialog_SplitCells::startUpdater(void) { m_bDestroy_says_stopupdating = false; m_bAutoUpdate_happening_now = false; GR_Graphics *pG = NULL; m_pAutoUpdaterMC = UT_Timer::static_constructor(autoUpdateMC,this,pG); m_pAutoUpdaterMC->set(500); m_pAutoUpdaterMC->start(); } void AP_Dialog_SplitCells::stopUpdater(void) { if(m_pAutoUpdaterMC == NULL) { return; } m_bDestroy_says_stopupdating = true; while (m_bAutoUpdate_happening_now == true) ; m_pAutoUpdaterMC->stop(); DELETEP(m_pAutoUpdaterMC); m_pAutoUpdaterMC = NULL; } /*! * Autoupdater of the dialog. */ void AP_Dialog_SplitCells::autoUpdateMC(UT_Worker * pTimer) { UT_return_if_fail (pTimer); // this is a static callback method and does not have a 'this' pointer AP_Dialog_SplitCells * pDialog = static_cast(pTimer->getInstanceData()); // Handshaking code FV_View * pView = static_cast(pDialog->getApp()->getLastFocussedFrame()->getCurrentView()); PD_Document * pDoc = pView->getDocument(); if( pDialog->m_bDestroy_says_stopupdating != true) { pDialog->m_bAutoUpdate_happening_now = true; if(!pDoc->isPieceTableChanging()) { pDialog->setAllSensitivities(); } pDialog->m_bAutoUpdate_happening_now = false; } } /*! * This method sets the sensitivity of the radio buttons to above/below/left/right merges * Because we can't merge to the left of column zero for example. * * Call this right after contructing the widget and before dropping into the main loop. */ void AP_Dialog_SplitCells::setAllSensitivities(void) { FV_View * pView = static_cast(m_pApp->getLastFocussedFrame()->getCurrentView()); m_iCellSource = pView->getPoint(); if(!pView->isInTable()) { setSensitivity(vert_above,false); setSensitivity(vert_mid,false); setSensitivity(vert_below,false); setSensitivity(hori_left,false); setSensitivity(hori_mid,false); setSensitivity(hori_right,false); return; } PT_DocPosition iCurPos = pView->getPoint(); m_iCellSource = iCurPos; pView->getCellParams(iCurPos,&m_iLeft,&m_iRight,&m_iTop,&m_iBot); // // Now find the number of rows and columns inthis table. This is easiest to // get from the table container // fl_BlockLayout * pBL = pView->getLayout()->findBlockAtPosition(iCurPos); fp_Run * pRun; UT_sint32 xPoint,yPoint,xPoint2,yPoint2,iPointHeight; bool bDirection; pRun = pBL->findPointCoords(iCurPos, false, xPoint, yPoint, xPoint2, yPoint2, iPointHeight, bDirection); UT_return_if_fail(pRun); fp_Line * pLine = pRun->getLine(); UT_return_if_fail(pLine); fp_Container * pCon = pLine->getContainer(); UT_return_if_fail(pCon); fp_TableContainer * pTab = static_cast(pCon->getContainer()); UT_return_if_fail(pTab); UT_return_if_fail(pTab->getContainerType() == FP_CONTAINER_TABLE); m_pTab = pTab; m_iNumRows = pTab->getNumRows(); m_iNumCols = pTab->getNumCols(); if(m_iBot > m_iTop+2) { setSensitivity(vert_above,true); setSensitivity(vert_below,true); } else { setSensitivity(vert_above,false); setSensitivity(vert_below,false); } UT_sint32 diff = m_iBot - m_iTop; if((m_iBot - m_iTop == 1) || (2*(diff/2) == diff)) { setSensitivity(vert_mid,true); } else { setSensitivity(vert_mid,false); } if(m_iRight > m_iLeft+2) { setSensitivity(hori_left,true); setSensitivity(hori_right,true); } else { setSensitivity(hori_left,false); setSensitivity(hori_right,false); } diff = m_iRight - m_iLeft; if((m_iRight - m_iLeft == 1) || (2*(diff/2) == diff)) { setSensitivity(hori_mid,true); } else { setSensitivity(hori_mid,false); } } void AP_Dialog_SplitCells::finalize(void) { stopUpdater(); modeless_cleanup(); } /*! * Set the merge Type */ void AP_Dialog_SplitCells::setSplitType(AP_CellSplitType iSplitType) { m_SplitType = iSplitType; } /*! * Method to actually do the cell merge. */ void AP_Dialog_SplitCells::onSplit(void) { FV_View * pView = static_cast(m_pApp->getLastFocussedFrame()->getCurrentView()); pView->cmdSplitCells(m_SplitType); } PT_DocPosition AP_Dialog_SplitCells::getCellSource(void) { return m_iCellSource; } PT_DocPosition AP_Dialog_SplitCells::getCellDestination(void) { return m_iCellDestination; }