/* 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 "ut_string.h" #include "ut_assert.h" #include "ut_debugmsg.h" #include "ut_types.h" #include "xap_App.h" #include "xap_QNXApp.h" #include "xap_QNXFrameImpl.h" #include "xap_Frame.h" #include "xap_Strings.h" #include "xap_Dialog_Id.h" #include "xap_QNXDlg_Language.h" #include "ut_qnxHelper.h" #include "ut_Xpm2Bitmap.h" #include "xap_QNXToolbar_Icons.h" /*****************************************************************/ XAP_Dialog * XAP_QNXDialog_Language::static_constructor(XAP_DialogFactory * pFactory, XAP_Dialog_Id id) { XAP_QNXDialog_Language * p = new XAP_QNXDialog_Language(pFactory,id); return p; } XAP_QNXDialog_Language::XAP_QNXDialog_Language(XAP_DialogFactory * pDlgFactory, XAP_Dialog_Id id) : XAP_Dialog_Language(pDlgFactory,id) { m_pLanguageList = NULL; } XAP_QNXDialog_Language::~XAP_QNXDialog_Language(void) { } static int s_delete_clicked(PtWidget_t *w, void *data, PtCallbackInfo_t *info) { XAP_QNXDialog_Language *dlg = (XAP_QNXDialog_Language *)data; dlg->setAnswer(XAP_Dialog_Language::a_CANCEL); return Pt_CONTINUE; } static int s_ok_clicked(PtWidget_t *w, void *data, PtCallbackInfo_t *info) { XAP_QNXDialog_Language *dlg = (XAP_QNXDialog_Language *)data; dlg->setAnswer(XAP_Dialog_Language::a_OK); return Pt_CONTINUE; } static int s_cancel_clicked(PtWidget_t *w, void *data, PtCallbackInfo_t *info) { XAP_QNXDialog_Language *dlg = (XAP_QNXDialog_Language *)data; dlg->setAnswer(XAP_Dialog_Language::a_CANCEL); return Pt_CONTINUE; } void XAP_QNXDialog_Language::runModal(XAP_Frame * pFrame) { UT_ASSERT(pFrame); XAP_QNXFrameImpl * pQNXFrameImpl = (XAP_QNXFrameImpl*)pFrame->getFrameImpl(); PtWidget_t *parent = pQNXFrameImpl->getTopLevelWindow(); UT_ASSERT(parent); PtSetParentWidget(parent); // build the dialog PtWidget_t * window = constructWindow(); UT_ASSERT(window); connectFocus(window, pFrame); UT_QNXCenterWindow(parent, window); UT_QNXBlockWidget(parent, 1); // Run the dialog PtRealizeWidget(window); int count; count = PtModalStart(); done = 0; while(!done) { PtProcessEvent(); } PtModalEnd(MODAL_END_ARG(count)); m_bChangedLanguage = false; if (m_answer == XAP_Dialog_Language::a_OK) { PtTreeItem_t *titem = PtTreeGetCurrent(m_pLanguageList); if (!m_pLanguage || g_ascii_strcasecmp(m_pLanguage, titem->string)) { _setLanguage(titem->string); m_bChangedLanguage = true; } } UT_QNXBlockWidget(parent, 0); PtDestroyWidget(window); } PtWidget_t * XAP_QNXDialog_Language::constructWindow(void) { const XAP_StringSet * pSS = m_pApp->getStringSet(); PtWidget_t *windowLangSelection; PtWidget_t *vboxMain; PtWidget_t *vboxOuter; PtWidget_t *hboxBut; PtWidget_t *buttonOK; PtWidget_t *buttonCancel; PtArg_t args[10]; int n; windowLangSelection = abiCreatePhabDialog("xap_QNXDlg_Language",pSS,XAP_STRING_ID_DLG_ULANG_LangTitle); SetupContextHelp(windowLangSelection,this); PtAddCallback(windowLangSelection, Pt_CB_WINDOW_CLOSING, s_delete_clicked, this); PtAddHotkeyHandler(windowLangSelection,Pk_F1,0,Pt_HOTKEY_SYM,this,OpenHelp); localizeLabel(abiPhabLocateWidget(windowLangSelection,"grpLang"),pSS, XAP_STRING_ID_DLG_ULANG_LangLabel); m_pLanguageList = abiPhabLocateWidget(windowLangSelection,"treeLang"); /* Add bitmap into PtTree */ PhImage_t *pImage = NULL; short img,img_id; AP_QNXToolbar_Icons icon; pImage = icon.getPixmapForIcon("SPELLCHECK"); img_id= PtTreeAddImages(m_pLanguageList,pImage,1); UT_Vector *pVec = getAvailableDictionaries(); UT_uint32 nItems = pVec->getItemCount(); UT_sint32 k; for (k = m_iLangCount-1; k >= 0; k--) { const char *item = (const char *) m_ppLanguages[k]; img=-1; for(UT_uint32 i = 0; i < nItems; i++) { const char *dic = (const char *) pVec->getNthItem(i); if(strcmp(dic,m_ppLanguagesCode[k]) == 0) { img=img_id; break; } } PtTreeItem_t *titem_old=0; PtTreeItem_t *titem = PtTreeAllocItem(m_pLanguageList,item,img,img); if(!titem_old) PtTreeAddFirst(m_pLanguageList, titem,NULL); else PtTreeAddAfter(m_pLanguageList,titem,titem_old); if(!g_ascii_strcasecmp(item,m_pLanguage)) PtTreeGoto(m_pLanguageList,titem); titem_old = titem; img = -1; } FREEP(pImage); buttonOK = abiPhabLocateWidget(windowLangSelection,"btnOK"); localizeLabel(buttonOK, pSS, XAP_STRING_ID_DLG_OK); PtAddCallback(buttonOK, Pt_CB_ACTIVATE, s_ok_clicked, this); buttonCancel = abiPhabLocateWidget(windowLangSelection,"btnCancel"); localizeLabel(buttonCancel, pSS, XAP_STRING_ID_DLG_Cancel); PtAddCallback(buttonCancel, Pt_CB_ACTIVATE, s_cancel_clicked, this); return windowLangSelection; } void XAP_QNXDialog_Language::setAnswer(XAP_Dialog_Language::tAnswer ans) { if(!done++) { m_answer = ans; } }