/* AbiWord * Copyright (C) 2000 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 "ap_Strings.h" #include "xap_Dialog_Id.h" #include "xap_DialogFactory.h" #include "xap_Dlg_MessageBox.h" #include "ap_Dialog_WordCount.h" AP_Dialog_WordCount::AP_Dialog_WordCount(XAP_DialogFactory * pDlgFactory, XAP_Dialog_Id id) : XAP_Dialog_Modeless(pDlgFactory,id, "interface/dialogwordcount") { m_answer = a_OK; memset(&m_count,0,sizeof(m_count)); } AP_Dialog_WordCount::~AP_Dialog_WordCount(void) { } AP_Dialog_WordCount::tAnswer AP_Dialog_WordCount::getAnswer(void) const { return m_answer; } FV_DocCount AP_Dialog_WordCount::getCount(void) const { return m_count; } void AP_Dialog_WordCount::setCount(FV_DocCount nCount) { m_count = nCount; } void AP_Dialog_WordCount::setCountFromActiveFrame(void) { FV_View * pview = static_cast(getActiveFrame()->getCurrentView()); if(!pview->isLayoutFilling()) { setCount(pview->countWords()); } } void AP_Dialog_WordCount::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_WordCount_WordCountTitle)); BuildWindowName(static_cast(m_WindowName),static_cast(tmp),title_width); FREEP(tmp); } void AP_Dialog_WordCount::setActiveFrame(XAP_Frame *pFrame) { notifyActiveFrame(getActiveFrame()); }