Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <svtools/stdctrl.hxx>
21 : #include <vcl/msgbox.hxx>
22 : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
23 : #include <com/sun/star/container/XNameAccess.hpp>
24 : #include <com/sun/star/sdb/DatabaseContext.hpp>
25 : #include <com/sun/star/sdb/CommandType.hpp>
26 : #include <com/sun/star/sdb/XDatabaseAccess.hpp>
27 : #include <comphelper/processfactory.hxx>
28 : #include <sfx2/viewfrm.hxx>
29 : #include <svtools/treelistentry.hxx>
30 :
31 : #include <view.hxx>
32 : #include <wrtsh.hxx>
33 : #include <dbmgr.hxx>
34 : #include <fldmgr.hxx>
35 : #include <expfld.hxx>
36 : #include <txtatr.hxx>
37 : #include <ndtxt.hxx>
38 : #include <fldbas.hxx>
39 : #include <dbfld.hxx>
40 : #include <changedb.hxx>
41 :
42 : #include <fldui.hrc>
43 : #include <globals.hrc>
44 : #include <utlui.hrc>
45 :
46 : #include <unomid.h>
47 :
48 : using namespace ::com::sun::star::container;
49 : using namespace ::com::sun::star::lang;
50 : using namespace ::com::sun::star::sdb;
51 : using namespace ::com::sun::star::uno;
52 :
53 : // edit insert-field
54 0 : SwChangeDBDlg::SwChangeDBDlg(SwView& rVw)
55 0 : : SvxStandardDialog(&rVw.GetViewFrame()->GetWindow(), "ExchangeDatabasesDialog",
56 : "modules/swriter/ui/exchangedatabases.ui")
57 : , aImageList(SW_RES(ILIST_DB_DLG))
58 0 : , pSh(rVw.GetWrtShellPtr())
59 0 : , pMgr( new SwFieldMgr() )
60 : {
61 0 : get(m_pUsedDBTLB, "inuselb");
62 0 : get(m_pAvailDBTLB, "availablelb");
63 0 : get(m_pAddDBPB, "browse");
64 0 : get(m_pDocDBNameFT, "dbnameft");
65 0 : get(m_pDefineBT, "define");
66 0 : m_pAvailDBTLB->SetWrtShell(*pSh);
67 0 : FillDBPopup();
68 :
69 0 : ShowDBName(pSh->GetDBData());
70 0 : m_pDefineBT->SetClickHdl(LINK(this, SwChangeDBDlg, ButtonHdl));
71 0 : m_pAddDBPB->SetClickHdl(LINK(this, SwChangeDBDlg, AddDBHdl));
72 :
73 0 : m_pUsedDBTLB->SetSelectionMode(MULTIPLE_SELECTION);
74 0 : m_pUsedDBTLB->SetStyle(m_pUsedDBTLB->GetStyle()|WB_HASLINES|WB_CLIPCHILDREN|WB_SORT|WB_HASBUTTONS|WB_HASBUTTONSATROOT|WB_HSCROLL);
75 0 : m_pUsedDBTLB->SetSpaceBetweenEntries(0);
76 0 : m_pUsedDBTLB->SetNodeBitmaps( aImageList.GetImage(IMG_COLLAPSE), aImageList.GetImage(IMG_EXPAND));
77 :
78 0 : Link<> aLink = LINK(this, SwChangeDBDlg, TreeSelectHdl);
79 :
80 0 : m_pUsedDBTLB->SetSelectHdl(aLink);
81 0 : m_pUsedDBTLB->SetDeselectHdl(aLink);
82 0 : m_pAvailDBTLB->SetSelectHdl(aLink);
83 0 : m_pAvailDBTLB->SetSelectHdl(aLink);
84 0 : TreeSelectHdl();
85 0 : }
86 :
87 : // initialise database listboxes
88 0 : void SwChangeDBDlg::FillDBPopup()
89 : {
90 0 : Reference< XComponentContext > xContext( ::comphelper::getProcessComponentContext() );
91 0 : Reference<XDatabaseContext> xDBContext = DatabaseContext::create(xContext);
92 0 : const SwDBData& rDBData = pSh->GetDBData();
93 0 : m_pAvailDBTLB->Select(rDBData.sDataSource, rDBData.sCommand, aEmptyOUStr);
94 :
95 0 : std::vector<OUString> aAllDBNames;
96 :
97 0 : Sequence< OUString > aDBNames = xDBContext->getElementNames();
98 0 : const OUString* pDBNames = aDBNames.getConstArray();
99 0 : sal_Int32 nDBCount = aDBNames.getLength();
100 0 : for(sal_Int32 i = 0; i < nDBCount; i++)
101 : {
102 0 : aAllDBNames.push_back(pDBNames[i]);
103 : }
104 :
105 0 : std::vector<OUString> aDBNameList;
106 0 : pSh->GetAllUsedDB( aDBNameList, &aAllDBNames );
107 :
108 0 : size_t nCount = aDBNameList.size();
109 0 : m_pUsedDBTLB->Clear();
110 0 : SvTreeListEntry *pFirst = 0;
111 0 : SvTreeListEntry *pLast = 0;
112 :
113 0 : for(size_t k = 0; k < nCount; k++)
114 : {
115 0 : pLast = Insert(aDBNameList[k].getToken(0, ';'));
116 0 : if (!pFirst)
117 0 : pFirst = pLast;
118 : }
119 :
120 0 : if (pFirst)
121 : {
122 0 : m_pUsedDBTLB->MakeVisible(pFirst);
123 0 : m_pUsedDBTLB->Select(pFirst);
124 0 : }
125 :
126 0 : }
127 :
128 0 : SvTreeListEntry* SwChangeDBDlg::Insert(const OUString& rDBName)
129 : {
130 0 : const OUString sDBName(rDBName.getToken(0, DB_DELIM));
131 0 : const OUString sTableName(rDBName.getToken(1, DB_DELIM));
132 0 : sal_IntPtr nCommandType = rDBName.getToken(2, DB_DELIM).toInt32();
133 : SvTreeListEntry* pParent;
134 : SvTreeListEntry* pChild;
135 :
136 0 : sal_uLong nParent = 0;
137 0 : sal_uLong nChild = 0;
138 :
139 0 : Image aTableImg = aImageList.GetImage(IMG_DBTABLE);
140 0 : Image aDBImg = aImageList.GetImage(IMG_DB);
141 0 : Image aQueryImg = aImageList.GetImage(IMG_DBQUERY);
142 0 : Image& rToInsert = nCommandType ? aQueryImg : aTableImg;
143 0 : while ((pParent = m_pUsedDBTLB->GetEntry(nParent++)) != NULL)
144 : {
145 0 : if (sDBName == m_pUsedDBTLB->GetEntryText(pParent))
146 : {
147 0 : while ((pChild = m_pUsedDBTLB->GetEntry(pParent, nChild++)) != NULL)
148 : {
149 0 : if (sTableName == m_pUsedDBTLB->GetEntryText(pChild))
150 0 : return pChild;
151 : }
152 0 : SvTreeListEntry* pRet = m_pUsedDBTLB->InsertEntry(sTableName, rToInsert, rToInsert, pParent);
153 0 : pRet->SetUserData(reinterpret_cast<void*>(nCommandType));
154 0 : return pRet;
155 : }
156 : }
157 0 : pParent = m_pUsedDBTLB->InsertEntry(sDBName, aDBImg, aDBImg);
158 :
159 0 : SvTreeListEntry* pRet = m_pUsedDBTLB->InsertEntry(sTableName, rToInsert, rToInsert, pParent);
160 0 : pRet->SetUserData(reinterpret_cast<void*>(nCommandType));
161 0 : return pRet;
162 : }
163 :
164 : // destroy dialog
165 0 : SwChangeDBDlg::~SwChangeDBDlg()
166 : {
167 0 : disposeOnce();
168 0 : }
169 :
170 0 : void SwChangeDBDlg::dispose()
171 : {
172 0 : delete pMgr;
173 0 : m_pUsedDBTLB.clear();
174 0 : m_pAvailDBTLB.clear();
175 0 : m_pAddDBPB.clear();
176 0 : m_pDocDBNameFT.clear();
177 0 : m_pDefineBT.clear();
178 0 : SvxStandardDialog::dispose();
179 0 : }
180 :
181 : // close
182 0 : void SwChangeDBDlg::Apply()
183 : {
184 0 : UpdateFields();
185 0 : }
186 0 : void SwChangeDBDlg::UpdateFields()
187 : {
188 0 : std::vector<OUString> aDBNames;
189 0 : aDBNames.reserve(m_pUsedDBTLB->GetSelectionCount());
190 0 : SvTreeListEntry* pEntry = m_pUsedDBTLB->FirstSelected();
191 :
192 0 : while( pEntry )
193 : {
194 0 : if( m_pUsedDBTLB->GetParent( pEntry ))
195 : {
196 0 : OUString sTmp(m_pUsedDBTLB->GetEntryText( m_pUsedDBTLB->GetParent( pEntry )) +
197 0 : OUString(DB_DELIM) + m_pUsedDBTLB->GetEntryText( pEntry ) + OUString(DB_DELIM) +
198 0 : OUString::number((int)reinterpret_cast<sal_uLong>(pEntry->GetUserData())));
199 0 : aDBNames.push_back(sTmp);
200 : }
201 0 : pEntry = m_pUsedDBTLB->NextSelected(pEntry);
202 : }
203 :
204 0 : pSh->StartAllAction();
205 0 : OUString sTableName;
206 0 : OUString sColumnName;
207 0 : sal_Bool bIsTable = sal_False;
208 0 : const OUString DBName(m_pAvailDBTLB->GetDBName(sTableName, sColumnName, &bIsTable));
209 : const OUString sTemp = DBName
210 0 : + OUString(DB_DELIM)
211 0 : + sTableName
212 0 : + OUString(DB_DELIM)
213 0 : + OUString::number(bIsTable
214 : ? CommandType::TABLE
215 0 : : CommandType::QUERY);
216 0 : pSh->ChangeDBFields( aDBNames, sTemp);
217 0 : pSh->EndAllAction();
218 0 : }
219 :
220 0 : IMPL_LINK_NOARG(SwChangeDBDlg, ButtonHdl)
221 : {
222 0 : OUString sTableName;
223 0 : OUString sColumnName;
224 0 : SwDBData aData;
225 0 : sal_Bool bIsTable = sal_False;
226 0 : aData.sDataSource = m_pAvailDBTLB->GetDBName(sTableName, sColumnName, &bIsTable);
227 0 : aData.sCommand = sTableName;
228 0 : aData.nCommandType = bIsTable ? 0 : 1;
229 0 : pSh->ChgDBData(aData);
230 0 : ShowDBName(pSh->GetDBData());
231 0 : EndDialog(RET_OK);
232 :
233 0 : return 0;
234 : }
235 :
236 0 : IMPL_LINK_NOARG(SwChangeDBDlg, TreeSelectHdl)
237 : {
238 0 : SvTreeListEntry* pEntry = m_pAvailDBTLB->GetCurEntry();
239 :
240 0 : if (pEntry)
241 : {
242 0 : bool bEnable = false;
243 0 : if (m_pAvailDBTLB->GetParent(pEntry))
244 0 : bEnable = true;
245 0 : m_pDefineBT->Enable( bEnable );
246 : }
247 0 : return 0;
248 : }
249 :
250 : // convert database name for display
251 0 : void SwChangeDBDlg::ShowDBName(const SwDBData& rDBData)
252 : {
253 0 : if (rDBData.sDataSource.isEmpty() && rDBData.sCommand.isEmpty())
254 : {
255 0 : m_pDocDBNameFT->SetText(SW_RESSTR(SW_STR_NONE));
256 : }
257 : else
258 : {
259 0 : const OUString sName(rDBData.sDataSource + "." + rDBData.sCommand);
260 0 : m_pDocDBNameFT->SetText(sName.replaceAll("~", "~~"));
261 : }
262 0 : }
263 :
264 0 : IMPL_LINK_NOARG(SwChangeDBDlg, AddDBHdl)
265 : {
266 0 : const OUString sNewDB = SwDBManager::LoadAndRegisterDataSource();
267 0 : if (!sNewDB.isEmpty())
268 0 : m_pAvailDBTLB->AddDataSource(sNewDB);
269 0 : return 0;
270 0 : }
271 :
272 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|