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 : delete m_pTableControl;
143 0 : }
144 :
145 0 : IMPL_LINK( DlgQryJoin, LBChangeHdl, ListBox*, /*pListBox*/ )
146 : {
147 0 : if (m_pLB_JoinType->GetSelectEntryPos() == m_pLB_JoinType->GetSavedValue() )
148 0 : return 1;
149 :
150 0 : m_pLB_JoinType->SaveValue();
151 0 : m_pML_HelpText->SetText(OUString());
152 :
153 0 : m_pTableControl->enableRelation(true);
154 :
155 0 : OUString sFirstWinName = m_pConnData->getReferencingTable()->GetWinName();
156 0 : OUString sSecondWinName = m_pConnData->getReferencedTable()->GetWinName();
157 0 : const EJoinType eOldJoinType = eJoinType;
158 0 : sal_uInt16 nResId = 0;
159 0 : const sal_uInt16 nPos = m_pLB_JoinType->GetSelectEntryPos();
160 0 : const sal_IntPtr nJoinType = reinterpret_cast<sal_IntPtr>(m_pLB_JoinType->GetEntryData(nPos));
161 0 : bool bAddHint = true;
162 0 : switch ( nJoinType )
163 : {
164 : default:
165 : case ID_INNER_JOIN:
166 0 : nResId = STR_QUERY_INNER_JOIN;
167 0 : bAddHint = false;
168 0 : eJoinType = INNER_JOIN;
169 0 : break;
170 : case ID_LEFT_JOIN:
171 0 : nResId = STR_QUERY_LEFTRIGHT_JOIN;
172 0 : eJoinType = LEFT_JOIN;
173 0 : break;
174 : case ID_RIGHT_JOIN:
175 : {
176 0 : nResId = STR_QUERY_LEFTRIGHT_JOIN;
177 0 : eJoinType = RIGHT_JOIN;
178 0 : OUString sTemp = sFirstWinName;
179 0 : sFirstWinName = sSecondWinName;
180 0 : sSecondWinName = sTemp;
181 : }
182 0 : break;
183 : case ID_FULL_JOIN:
184 0 : nResId = STR_QUERY_FULL_JOIN;
185 0 : eJoinType = FULL_JOIN;
186 0 : break;
187 : case ID_CROSS_JOIN:
188 : {
189 0 : nResId = STR_QUERY_CROSS_JOIN;
190 0 : eJoinType = CROSS_JOIN;
191 :
192 0 : m_pConnData->ResetConnLines();
193 0 : m_pTableControl->lateInit();
194 0 : m_pCBNatural->Check(false);
195 0 : m_pTableControl->enableRelation(false);
196 0 : OUString sEmpty;
197 0 : m_pConnData->AppendConnLine(sEmpty,sEmpty);
198 0 : m_pPB_OK->Enable(true);
199 : }
200 0 : break;
201 : }
202 :
203 0 : m_pCBNatural->Enable(eJoinType != CROSS_JOIN);
204 :
205 0 : if ( eJoinType != eOldJoinType && eOldJoinType == CROSS_JOIN )
206 : {
207 0 : m_pConnData->ResetConnLines();
208 : }
209 0 : if ( eJoinType != CROSS_JOIN )
210 : {
211 0 : m_pTableControl->NotifyCellChange();
212 0 : NaturalToggleHdl(m_pCBNatural);
213 : }
214 :
215 0 : m_pTableControl->Invalidate();
216 :
217 0 : OUString sHelpText = ModuleRes( nResId );
218 0 : if( nPos )
219 : {
220 0 : sHelpText = sHelpText.replaceFirst( "%1", sFirstWinName );
221 0 : sHelpText = sHelpText.replaceFirst( "%2", sSecondWinName );
222 : }
223 0 : if ( bAddHint )
224 : {
225 0 : sHelpText += "\n";
226 0 : sHelpText += ModuleRes( STR_JOIN_TYPE_HINT );
227 : }
228 :
229 0 : m_pML_HelpText->SetText( sHelpText );
230 0 : return 1;
231 : }
232 :
233 0 : IMPL_LINK( DlgQryJoin, OKClickHdl, Button*, /*pButton*/ )
234 : {
235 :
236 0 : m_pConnData->Update();
237 0 : m_pOrigConnData->CopyFrom( *m_pConnData );
238 :
239 0 : EndDialog(RET_OK);
240 0 : return 1;
241 : }
242 :
243 0 : IMPL_LINK( DlgQryJoin, NaturalToggleHdl, CheckBox*, /*pButton*/ )
244 : {
245 0 : bool bChecked = m_pCBNatural->IsChecked();
246 0 : static_cast<OQueryTableConnectionData*>(m_pConnData.get())->setNatural(bChecked);
247 0 : m_pTableControl->enableRelation(!bChecked);
248 0 : if ( bChecked )
249 : {
250 0 : m_pConnData->ResetConnLines();
251 : try
252 : {
253 0 : Reference<XNameAccess> xReferencedTableColumns(m_pConnData->getReferencedTable()->getColumns());
254 0 : Sequence< OUString> aSeq = m_pConnData->getReferencingTable()->getColumns()->getElementNames();
255 0 : const OUString* pIter = aSeq.getConstArray();
256 0 : const OUString* pEnd = pIter + aSeq.getLength();
257 0 : for(;pIter != pEnd;++pIter)
258 : {
259 0 : if ( xReferencedTableColumns->hasByName(*pIter) )
260 0 : m_pConnData->AppendConnLine(*pIter,*pIter);
261 0 : }
262 : }
263 0 : catch( const Exception& )
264 : {
265 : DBG_UNHANDLED_EXCEPTION();
266 : }
267 0 : m_pTableControl->NotifyCellChange();
268 0 : m_pTableControl->Invalidate();
269 : }
270 :
271 0 : return 1;
272 : }
273 :
274 0 : TTableConnectionData::value_type DlgQryJoin::getConnectionData() const
275 : {
276 0 : return m_pConnData;
277 : }
278 :
279 0 : void DlgQryJoin::setValid(bool _bValid)
280 : {
281 0 : m_pPB_OK->Enable(_bValid || eJoinType == CROSS_JOIN );
282 0 : }
283 :
284 0 : void DlgQryJoin::notifyConnectionChange( )
285 : {
286 0 : setJoinType( static_cast<OQueryTableConnectionData*>(m_pConnData.get())->GetJoinType() );
287 0 : m_pCBNatural->Check(static_cast<OQueryTableConnectionData*>(m_pConnData.get())->isNatural());
288 0 : NaturalToggleHdl(m_pCBNatural);
289 0 : }
290 :
291 0 : void DlgQryJoin::setJoinType(EJoinType _eNewJoinType)
292 : {
293 0 : eJoinType = _eNewJoinType;
294 0 : m_pCBNatural->Enable(eJoinType != CROSS_JOIN);
295 :
296 0 : sal_IntPtr nJoinType = 0;
297 0 : switch ( eJoinType )
298 : {
299 : default:
300 : case INNER_JOIN:
301 0 : nJoinType = ID_INNER_JOIN;
302 0 : break;
303 : case LEFT_JOIN:
304 0 : nJoinType = ID_LEFT_JOIN;
305 0 : break;
306 : case RIGHT_JOIN:
307 0 : nJoinType = ID_RIGHT_JOIN;
308 0 : break;
309 : case FULL_JOIN:
310 0 : nJoinType = ID_FULL_JOIN;
311 0 : break;
312 : case CROSS_JOIN:
313 0 : nJoinType = ID_CROSS_JOIN;
314 0 : break;
315 : }
316 :
317 0 : const sal_uInt16 nCount = m_pLB_JoinType->GetEntryCount();
318 0 : for (sal_uInt16 i = 0; i < nCount; ++i)
319 : {
320 0 : if ( nJoinType == reinterpret_cast<sal_IntPtr>(m_pLB_JoinType->GetEntryData(i)) )
321 : {
322 0 : m_pLB_JoinType->SelectEntryPos(i);
323 0 : break;
324 : }
325 : }
326 :
327 0 : LBChangeHdl(m_pLB_JoinType);
328 72 : }
329 :
330 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|