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 "querydlg.hxx"
21 : #include "dbu_qry.hrc"
22 : #include <tools/debug.hxx>
23 : #include <tools/diagnose_ex.h>
24 : #include "QTableConnectionData.hxx"
25 : #include "querycontroller.hxx"
26 : #include "QueryTableView.hxx"
27 : #include "QueryDesignView.hxx"
28 : #include <com/sun/star/sdbc/XDatabaseMetaData.hpp>
29 : #include "RelationControl.hxx"
30 : #include <vcl/msgbox.hxx>
31 : #include <vcl/settings.hxx>
32 :
33 : #define ID_INNER_JOIN 1
34 : #define ID_LEFT_JOIN 2
35 : #define ID_RIGHT_JOIN 3
36 : #define ID_FULL_JOIN 4
37 : #define ID_CROSS_JOIN 5
38 :
39 : using namespace dbaui;
40 : using namespace ::com::sun::star::uno;
41 : using namespace ::com::sun::star::container;
42 : using namespace ::com::sun::star::sdbc;
43 :
44 0 : DlgQryJoin::DlgQryJoin( OQueryTableView * pParent,
45 : const TTableConnectionData::value_type& _pData,
46 : OJoinTableView::OTableWindowMap* _pTableMap,
47 : const Reference< XConnection >& _xConnection,
48 : bool _bAllowTableSelect)
49 : : ModalDialog( pParent, "JoinDialog", "dbaccess/ui/joindialog.ui" )
50 : , m_pTableControl( NULL )
51 : , m_pTableMap(_pTableMap)
52 : , m_pTableView(pParent)
53 0 : , eJoinType(static_cast<OQueryTableConnectionData*>(_pData.get())->GetJoinType())
54 : , m_pOrigConnData(_pData)
55 0 : , m_xConnection(_xConnection)
56 : {
57 0 : get(m_pML_HelpText, "helptext");
58 0 : Size aSize(LogicToPixel(Size(179, 49), MAP_APPFONT));
59 : //alternatively loop through the STR_QUERY_* strings with their STR_JOIN_TYPE_HINT
60 : //suffix to find the longest entry at runtime
61 0 : m_pML_HelpText->set_height_request(aSize.Height());
62 0 : m_pML_HelpText->set_width_request(aSize.Width());
63 0 : get(m_pLB_JoinType, "type");
64 0 : get(m_pCBNatural, "natural");
65 0 : get(m_pPB_OK, "ok");
66 :
67 0 : m_pML_HelpText->SetControlBackground( GetSettings().GetStyleSettings().GetFaceColor() );
68 : // Connection kopieren
69 0 : m_pConnData.reset(_pData->NewInstance());
70 0 : m_pConnData->CopyFrom(*_pData);
71 :
72 0 : m_pTableControl = new OTableListBoxControl(this, m_pTableMap, this);
73 :
74 0 : m_pCBNatural->Check(static_cast<OQueryTableConnectionData*>(m_pConnData.get())->isNatural());
75 :
76 0 : if( _bAllowTableSelect )
77 : {
78 0 : m_pTableControl->Init( m_pConnData );
79 0 : m_pTableControl->fillListBoxes();
80 : }
81 : else
82 : {
83 0 : m_pTableControl->fillAndDisable(m_pConnData);
84 0 : m_pTableControl->Init( m_pConnData );
85 : }
86 :
87 0 : m_pTableControl->lateUIInit();
88 :
89 0 : bool bSupportFullJoin = false;
90 0 : Reference<XDatabaseMetaData> xMeta;
91 : try
92 : {
93 0 : xMeta = m_xConnection->getMetaData();
94 0 : if ( xMeta.is() )
95 0 : bSupportFullJoin = xMeta->supportsFullOuterJoins();
96 : }
97 0 : catch(SQLException&)
98 : {
99 : }
100 0 : bool bSupportOuterJoin = false;
101 : try
102 : {
103 0 : if ( xMeta.is() )
104 0 : bSupportOuterJoin= xMeta->supportsOuterJoins();
105 : }
106 0 : catch(SQLException&)
107 : {
108 : }
109 :
110 0 : setJoinType(eJoinType);
111 :
112 0 : m_pPB_OK->SetClickHdl( LINK(this, DlgQryJoin, OKClickHdl) );
113 :
114 0 : m_pLB_JoinType->SetSelectHdl(LINK(this,DlgQryJoin,LBChangeHdl));
115 0 : m_pCBNatural->SetToggleHdl(LINK(this,DlgQryJoin,NaturalToggleHdl));
116 :
117 0 : if ( static_cast<OQueryTableView*>(pParent)->getDesignView()->getController().isReadOnly() )
118 : {
119 0 : m_pLB_JoinType->Disable();
120 0 : m_pCBNatural->Disable();
121 0 : m_pTableControl->Disable();
122 : }
123 : else
124 : {
125 0 : const sal_uInt16 nCount = m_pLB_JoinType->GetEntryCount();
126 0 : for (sal_uInt16 i = 0; i < nCount; ++i)
127 : {
128 0 : const sal_IntPtr nJoinTyp = reinterpret_cast<sal_IntPtr>(m_pLB_JoinType->GetEntryData(i));
129 0 : if ( !bSupportFullJoin && nJoinTyp == ID_FULL_JOIN )
130 0 : m_pLB_JoinType->RemoveEntry(i);
131 0 : else if ( !bSupportOuterJoin && (nJoinTyp == ID_LEFT_JOIN || nJoinTyp == ID_RIGHT_JOIN) )
132 0 : m_pLB_JoinType->RemoveEntry(i);
133 : }
134 :
135 0 : m_pTableControl->NotifyCellChange();
136 0 : m_pTableControl->enableRelation(!static_cast<OQueryTableConnectionData*>(m_pConnData.get())->isNatural() && eJoinType != CROSS_JOIN );
137 0 : }
138 0 : }
139 :
140 0 : DlgQryJoin::~DlgQryJoin()
141 : {
142 0 : disposeOnce();
143 0 : }
144 :
145 0 : void DlgQryJoin::dispose()
146 : {
147 0 : delete m_pTableControl;
148 0 : m_pML_HelpText.clear();
149 0 : m_pPB_OK.clear();
150 0 : m_pLB_JoinType.clear();
151 0 : m_pCBNatural.clear();
152 0 : m_pTableView.clear();
153 0 : ModalDialog::dispose();
154 0 : }
155 :
156 0 : IMPL_LINK( DlgQryJoin, LBChangeHdl, ListBox*, /*pListBox*/ )
157 : {
158 0 : if (m_pLB_JoinType->GetSelectEntryPos() == m_pLB_JoinType->GetSavedValue() )
159 0 : return 1;
160 :
161 0 : m_pLB_JoinType->SaveValue();
162 0 : m_pML_HelpText->SetText(OUString());
163 :
164 0 : m_pTableControl->enableRelation(true);
165 :
166 0 : OUString sFirstWinName = m_pConnData->getReferencingTable()->GetWinName();
167 0 : OUString sSecondWinName = m_pConnData->getReferencedTable()->GetWinName();
168 0 : const EJoinType eOldJoinType = eJoinType;
169 0 : sal_uInt16 nResId = 0;
170 0 : const sal_uInt16 nPos = m_pLB_JoinType->GetSelectEntryPos();
171 0 : const sal_IntPtr nJoinType = reinterpret_cast<sal_IntPtr>(m_pLB_JoinType->GetEntryData(nPos));
172 0 : bool bAddHint = true;
173 0 : switch ( nJoinType )
174 : {
175 : default:
176 : case ID_INNER_JOIN:
177 0 : nResId = STR_QUERY_INNER_JOIN;
178 0 : bAddHint = false;
179 0 : eJoinType = INNER_JOIN;
180 0 : break;
181 : case ID_LEFT_JOIN:
182 0 : nResId = STR_QUERY_LEFTRIGHT_JOIN;
183 0 : eJoinType = LEFT_JOIN;
184 0 : break;
185 : case ID_RIGHT_JOIN:
186 : {
187 0 : nResId = STR_QUERY_LEFTRIGHT_JOIN;
188 0 : eJoinType = RIGHT_JOIN;
189 0 : OUString sTemp = sFirstWinName;
190 0 : sFirstWinName = sSecondWinName;
191 0 : sSecondWinName = sTemp;
192 : }
193 0 : break;
194 : case ID_FULL_JOIN:
195 0 : nResId = STR_QUERY_FULL_JOIN;
196 0 : eJoinType = FULL_JOIN;
197 0 : break;
198 : case ID_CROSS_JOIN:
199 : {
200 0 : nResId = STR_QUERY_CROSS_JOIN;
201 0 : eJoinType = CROSS_JOIN;
202 :
203 0 : m_pConnData->ResetConnLines();
204 0 : m_pTableControl->lateInit();
205 0 : m_pCBNatural->Check(false);
206 0 : m_pTableControl->enableRelation(false);
207 0 : OUString sEmpty;
208 0 : m_pConnData->AppendConnLine(sEmpty,sEmpty);
209 0 : m_pPB_OK->Enable(true);
210 : }
211 0 : break;
212 : }
213 :
214 0 : m_pCBNatural->Enable(eJoinType != CROSS_JOIN);
215 :
216 0 : if ( eJoinType != eOldJoinType && eOldJoinType == CROSS_JOIN )
217 : {
218 0 : m_pConnData->ResetConnLines();
219 : }
220 0 : if ( eJoinType != CROSS_JOIN )
221 : {
222 0 : m_pTableControl->NotifyCellChange();
223 0 : NaturalToggleHdl(m_pCBNatural);
224 : }
225 :
226 0 : m_pTableControl->Invalidate();
227 :
228 0 : OUString sHelpText = ModuleRes( nResId );
229 0 : if( nPos )
230 : {
231 0 : sHelpText = sHelpText.replaceFirst( "%1", sFirstWinName );
232 0 : sHelpText = sHelpText.replaceFirst( "%2", sSecondWinName );
233 : }
234 0 : if ( bAddHint )
235 : {
236 0 : sHelpText += "\n";
237 0 : sHelpText += ModuleRes( STR_JOIN_TYPE_HINT );
238 : }
239 :
240 0 : m_pML_HelpText->SetText( sHelpText );
241 0 : return 1;
242 : }
243 :
244 0 : IMPL_LINK( DlgQryJoin, OKClickHdl, Button*, /*pButton*/ )
245 : {
246 :
247 0 : m_pConnData->Update();
248 0 : m_pOrigConnData->CopyFrom( *m_pConnData );
249 :
250 0 : EndDialog(RET_OK);
251 0 : return 1;
252 : }
253 :
254 0 : IMPL_LINK( DlgQryJoin, NaturalToggleHdl, CheckBox*, /*pButton*/ )
255 : {
256 0 : bool bChecked = m_pCBNatural->IsChecked();
257 0 : static_cast<OQueryTableConnectionData*>(m_pConnData.get())->setNatural(bChecked);
258 0 : m_pTableControl->enableRelation(!bChecked);
259 0 : if ( bChecked )
260 : {
261 0 : m_pConnData->ResetConnLines();
262 : try
263 : {
264 0 : Reference<XNameAccess> xReferencedTableColumns(m_pConnData->getReferencedTable()->getColumns());
265 0 : Sequence< OUString> aSeq = m_pConnData->getReferencingTable()->getColumns()->getElementNames();
266 0 : const OUString* pIter = aSeq.getConstArray();
267 0 : const OUString* pEnd = pIter + aSeq.getLength();
268 0 : for(;pIter != pEnd;++pIter)
269 : {
270 0 : if ( xReferencedTableColumns->hasByName(*pIter) )
271 0 : m_pConnData->AppendConnLine(*pIter,*pIter);
272 0 : }
273 : }
274 0 : catch( const Exception& )
275 : {
276 : DBG_UNHANDLED_EXCEPTION();
277 : }
278 0 : m_pTableControl->NotifyCellChange();
279 0 : m_pTableControl->Invalidate();
280 : }
281 :
282 0 : return 1;
283 : }
284 :
285 0 : TTableConnectionData::value_type DlgQryJoin::getConnectionData() const
286 : {
287 0 : return m_pConnData;
288 : }
289 :
290 0 : void DlgQryJoin::setValid(bool _bValid)
291 : {
292 0 : m_pPB_OK->Enable(_bValid || eJoinType == CROSS_JOIN );
293 0 : }
294 :
295 0 : void DlgQryJoin::notifyConnectionChange( )
296 : {
297 0 : setJoinType( static_cast<OQueryTableConnectionData*>(m_pConnData.get())->GetJoinType() );
298 0 : m_pCBNatural->Check(static_cast<OQueryTableConnectionData*>(m_pConnData.get())->isNatural());
299 0 : NaturalToggleHdl(m_pCBNatural);
300 0 : }
301 :
302 0 : void DlgQryJoin::setJoinType(EJoinType _eNewJoinType)
303 : {
304 0 : eJoinType = _eNewJoinType;
305 0 : m_pCBNatural->Enable(eJoinType != CROSS_JOIN);
306 :
307 0 : sal_IntPtr nJoinType = 0;
308 0 : switch ( eJoinType )
309 : {
310 : default:
311 : case INNER_JOIN:
312 0 : nJoinType = ID_INNER_JOIN;
313 0 : break;
314 : case LEFT_JOIN:
315 0 : nJoinType = ID_LEFT_JOIN;
316 0 : break;
317 : case RIGHT_JOIN:
318 0 : nJoinType = ID_RIGHT_JOIN;
319 0 : break;
320 : case FULL_JOIN:
321 0 : nJoinType = ID_FULL_JOIN;
322 0 : break;
323 : case CROSS_JOIN:
324 0 : nJoinType = ID_CROSS_JOIN;
325 0 : break;
326 : }
327 :
328 0 : const sal_uInt16 nCount = m_pLB_JoinType->GetEntryCount();
329 0 : for (sal_uInt16 i = 0; i < nCount; ++i)
330 : {
331 0 : if ( nJoinType == reinterpret_cast<sal_IntPtr>(m_pLB_JoinType->GetEntryData(i)) )
332 : {
333 0 : m_pLB_JoinType->SelectEntryPos(i);
334 0 : break;
335 : }
336 : }
337 :
338 0 : LBChangeHdl(m_pLB_JoinType);
339 36 : }
340 :
341 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|