/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org 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 Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #include #include #include #include #include #include #include #include #include "svtools/treelistentry.hxx" #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace ::com::sun::star::container; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::sdb; using namespace ::com::sun::star::uno; /*-------------------------------------------------------------------- Description: edit insert-field --------------------------------------------------------------------*/ SwChangeDBDlg::SwChangeDBDlg(SwView& rVw) : SvxStandardDialog(&rVw.GetViewFrame()->GetWindow(), SW_RES(DLG_CHANGE_DB)), aDBListFL (this, SW_RES(FL_DBLIST )), aUsedDBFT (this, SW_RES(FT_USEDDB )), aAvailDBFT (this, SW_RES(FT_AVAILDB )), aUsedDBTLB (this, SW_RES(TLB_USEDDB )), aAvailDBTLB (this, SW_RES(TLB_AVAILDB ), 0), aAddDBPB (this, SW_RES(PB_ADDDB)), aDescFT (this, SW_RES(FT_DESC )), aDocDBTextFT(this, SW_RES(FT_DOCDBTEXT )), aDocDBNameFT(this, SW_RES(FT_DOCDBNAME )), aOKBT (this, SW_RES(BT_OK )), aCancelBT (this, SW_RES(BT_CANCEL )), aHelpBT (this, SW_RES(BT_HELP )), aImageList (SW_RES(ILIST_DB_DLG )), pSh(rVw.GetWrtShellPtr()), pMgr( new SwFldMgr() ) { aAvailDBTLB.SetWrtShell(*pSh); FillDBPopup(); FreeResource(); ShowDBName(pSh->GetDBData()); aOKBT.SetClickHdl(LINK(this, SwChangeDBDlg, ButtonHdl)); aAddDBPB.SetClickHdl(LINK(this, SwChangeDBDlg, AddDBHdl)); aUsedDBTLB.SetSelectionMode(MULTIPLE_SELECTION); aUsedDBTLB.SetStyle(aUsedDBTLB.GetStyle()|WB_HASLINES|WB_CLIPCHILDREN|WB_SORT|WB_HASBUTTONS|WB_HASBUTTONSATROOT|WB_HSCROLL); aUsedDBTLB.SetSpaceBetweenEntries(0); aUsedDBTLB.SetNodeBitmaps( aImageList.GetImage(IMG_COLLAPSE), aImageList.GetImage(IMG_EXPAND)); Link aLink = LINK(this, SwChangeDBDlg, TreeSelectHdl); aUsedDBTLB.SetSelectHdl(aLink); aUsedDBTLB.SetDeselectHdl(aLink); aAvailDBTLB.SetSelectHdl(aLink); aAvailDBTLB.SetDeselectHdl(aLink); TreeSelectHdl(); } /*-------------------------------------------------------------------- Description: initialise database listboxes --------------------------------------------------------------------*/ void SwChangeDBDlg::FillDBPopup() { Reference< XComponentContext > xContext( ::comphelper::getProcessComponentContext() ); Reference xDBContext = DatabaseContext::create(xContext); const SwDBData& rDBData = pSh->GetDBData(); String sDBName(rDBData.sDataSource); String sTableName(rDBData.sCommand); aAvailDBTLB.Select(sDBName, sTableName, aEmptyStr); std::vector aAllDBNames; Sequence< ::rtl::OUString > aDBNames = xDBContext->getElementNames(); const ::rtl::OUString* pDBNames = aDBNames.getConstArray(); sal_Int32 nDBCount = aDBNames.getLength(); for(sal_Int32 i = 0; i < nDBCount; i++) { aAllDBNames.push_back(pDBNames[i]); } std::vector aDBNameList; pSh->GetAllUsedDB( aDBNameList, &aAllDBNames ); size_t nCount = aDBNameList.size(); aUsedDBTLB.Clear(); SvTreeListEntry *pFirst = 0; SvTreeListEntry *pLast = 0; for(size_t k = 0; k < nCount; k++) { sDBName = aDBNameList[k]; sDBName = sDBName.GetToken(0); pLast = Insert(sDBName); if (!pFirst) pFirst = pLast; } if (pFirst) { aUsedDBTLB.MakeVisible(pFirst); aUsedDBTLB.Select(pFirst); } } SvTreeListEntry* SwChangeDBDlg::Insert(const String& rDBName) { String sDBName(rDBName.GetToken(0, DB_DELIM)); String sTableName(rDBName.GetToken(1, DB_DELIM)); sal_IntPtr nCommandType = rDBName.GetToken(2, DB_DELIM).ToInt32(); SvTreeListEntry* pParent; SvTreeListEntry* pChild; sal_uInt16 nParent = 0; sal_uInt16 nChild = 0; Image aTableImg = aImageList.GetImage(IMG_DBTABLE); Image aDBImg = aImageList.GetImage(IMG_DB); Image aQueryImg = aImageList.GetImage(IMG_DBQUERY); Image& rToInsert = nCommandType ? aQueryImg : aTableImg; while ((pParent = aUsedDBTLB.GetEntry(nParent++)) != NULL) { if (sDBName == aUsedDBTLB.GetEntryText(pParent)) { while ((pChild = aUsedDBTLB.GetEntry(pParent, nChild++)) != NULL) { if (sTableName == aUsedDBTLB.GetEntryText(pChild)) return pChild; } SvTreeListEntry* pRet = aUsedDBTLB.InsertEntry(sTableName, rToInsert, rToInsert, pParent); pRet->SetUserData((void*)nCommandType); return pRet; } } pParent = aUsedDBTLB.InsertEntry(sDBName, aDBImg, aDBImg); SvTreeListEntry* pRet = aUsedDBTLB.InsertEntry(sTableName, rToInsert, rToInsert, pParent); pRet->SetUserData((void*)nCommandType); return pRet; } /*-------------------------------------------------------------------- Description: destroy dialog --------------------------------------------------------------------*/ SwChangeDBDlg::~SwChangeDBDlg() { delete pMgr; } /*-------------------------------------------------------------------- Description: close --------------------------------------------------------------------*/ void SwChangeDBDlg::Apply() { UpdateFlds(); } void SwChangeDBDlg::UpdateFlds() { std::vector aDBNames; aDBNames.reserve(aUsedDBTLB.GetSelectionCount()); SvTreeListEntry* pEntry = aUsedDBTLB.FirstSelected(); while( pEntry ) { if( aUsedDBTLB.GetParent( pEntry )) { String* pTmp = new String( aUsedDBTLB.GetEntryText( aUsedDBTLB.GetParent( pEntry ))); *pTmp += DB_DELIM; *pTmp += aUsedDBTLB.GetEntryText( pEntry ); *pTmp += DB_DELIM; int nCommandType = (int)(sal_uLong)pEntry->GetUserData(); *pTmp += String::CreateFromInt32(nCommandType); aDBNames.push_back(*pTmp); } pEntry = aUsedDBTLB.NextSelected(pEntry); } pSh->StartAllAction(); String sTableName, sColumnName; sal_Bool bIsTable = sal_False; String sTemp(aAvailDBTLB.GetDBName(sTableName, sColumnName, &bIsTable)); sTemp += DB_DELIM; sTemp += sTableName; sTemp += DB_DELIM; sTemp += bIsTable ? '0' : '1'; pSh->ChangeDBFields( aDBNames, sTemp); pSh->EndAllAction(); } IMPL_LINK_NOARG(SwChangeDBDlg, ButtonHdl) { String sTableName, sColumnName; SwDBData aData; sal_Bool bIsTable = sal_False; aData.sDataSource = aAvailDBTLB.GetDBName(sTableName, sColumnName, &bIsTable); aData.sCommand = sTableName; aData.nCommandType = bIsTable ? 0 : 1; pSh->ChgDBData(aData); ShowDBName(pSh->GetDBData()); EndDialog(RET_OK); return 0; } IMPL_LINK_NOARG(SwChangeDBDlg, TreeSelectHdl) { sal_Bool bEnable = sal_False; SvTreeListEntry* pEntry = aAvailDBTLB.GetCurEntry(); if (pEntry) { if (aAvailDBTLB.GetParent(pEntry)) bEnable = sal_True; aOKBT.Enable( bEnable ); } return 0; } /*-------------------------------------------------------------------- Description: convert database name for display --------------------------------------------------------------------*/ void SwChangeDBDlg::ShowDBName(const SwDBData& rDBData) { String sTmp(rDBData.sDataSource); String sName; sTmp += '.'; sTmp += (String)rDBData.sCommand; for (sal_uInt16 i = 0; i < sTmp.Len(); i++) { sName += sTmp.GetChar(i); if (sTmp.GetChar(i) == '~') sName += '~'; } aDocDBNameFT.SetText(sName); } IMPL_LINK_NOARG(SwChangeDBDlg, AddDBHdl) { String sNewDB = SwNewDBMgr::LoadAndRegisterDataSource(); if(sNewDB.Len()) aAvailDBTLB.AddDataSource(sNewDB); return 0; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */