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 "RelationControl.hxx"
21 :
22 : #include <svtools/editbrowsebox.hxx>
23 : #include <com/sun/star/beans/XPropertySet.hpp>
24 : #include <tools/diagnose_ex.h>
25 : #include <vcl/builderfactory.hxx>
26 : #include "TableConnectionData.hxx"
27 : #include "TableConnection.hxx"
28 : #include "TableWindow.hxx"
29 : #include <com/sun/star/sdbc/XDatabaseMetaData.hpp>
30 : #include "UITools.hxx"
31 : #include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
32 : #include <com/sun/star/container/XNameAccess.hpp>
33 : #include "RelControliFace.hxx"
34 : #include "dbu_control.hrc"
35 : #include "dbaccess_helpid.hrc"
36 : #include <osl/diagnose.h>
37 :
38 : #include <algorithm>
39 : #include <list>
40 : using std::list;
41 : #include <utility>
42 : using std::pair;
43 : using std::make_pair;
44 :
45 : #define SOURCE_COLUMN 1
46 : #define DEST_COLUMN 2
47 :
48 : namespace dbaui
49 : {
50 : using namespace ::com::sun::star::uno;
51 : using namespace ::com::sun::star::beans;
52 : using namespace ::com::sun::star::sdbc;
53 : using namespace ::com::sun::star::sdbcx;
54 : using namespace ::com::sun::star::container;
55 : using namespace svt;
56 :
57 : typedef ::svt::EditBrowseBox ORelationControl_Base;
58 : class ORelationControl : public ORelationControl_Base
59 : {
60 : friend class OTableListBoxControl;
61 :
62 : VclPtr< ::svt::ListBoxControl> m_pListCell;
63 : TTableConnectionData::value_type m_pConnData;
64 : OTableListBoxControl* m_pBoxControl;
65 : long m_nDataPos;
66 : Reference< XPropertySet> m_xSourceDef;
67 : Reference< XPropertySet> m_xDestDef;
68 : enum opcode { DELETE, INSERT, MODIFY };
69 : typedef list< pair < opcode, pair < OConnectionLineDataVec::size_type, OConnectionLineDataVec::size_type> > > ops_type;
70 : ops_type m_ops;
71 :
72 : void fillListBox(const Reference< XPropertySet>& _xDest,long nRow,sal_uInt16 nColumnId);
73 : /** returns the column id for the editbrowsebox
74 : @param _nColId
75 : the column id SOURCE_COLUMN or DEST_COLUMN
76 :
77 : @return the current column id eihter SOURCE_COLUMN or DEST_COLUMN depends on the connection data
78 : */
79 : sal_uInt16 getColumnIdent( sal_uInt16 _nColId ) const;
80 : public:
81 : ORelationControl(vcl::Window *pParent);
82 0 : void SetController(OTableListBoxControl* pController)
83 : {
84 0 : m_pBoxControl = pController;
85 0 : }
86 :
87 : /** searches for a connection between these two tables
88 : @param _pSource
89 : the left table
90 : @param _pDest
91 : the right window
92 : */
93 : void setWindowTables(const OTableWindow* _pSource,const OTableWindow* _pDest);
94 :
95 : /** allows to access the connection data from outside
96 :
97 : @return rthe connection data
98 : */
99 0 : inline TTableConnectionData::value_type getData() const { return m_pConnData; }
100 :
101 : void lateInit();
102 :
103 : protected:
104 0 : virtual ~ORelationControl() { disposeOnce(); }
105 0 : virtual void dispose() SAL_OVERRIDE { m_pListCell.disposeAndClear(); ORelationControl_Base::dispose(); }
106 : virtual void Resize() SAL_OVERRIDE;
107 : virtual Size GetOptimalSize() const SAL_OVERRIDE;
108 : virtual bool PreNotify(NotifyEvent& rNEvt ) SAL_OVERRIDE;
109 :
110 : virtual bool IsTabAllowed(bool bForward) const SAL_OVERRIDE;
111 :
112 : void Init(const TTableConnectionData::value_type& _pConnData);
113 0 : virtual void Init() SAL_OVERRIDE { ORelationControl_Base::Init(); }
114 : virtual void InitController( ::svt::CellControllerRef& rController, long nRow, sal_uInt16 nCol ) SAL_OVERRIDE;
115 : virtual ::svt::CellController* GetController( long nRow, sal_uInt16 nCol ) SAL_OVERRIDE;
116 : virtual void PaintCell( OutputDevice& rDev, const Rectangle& rRect, sal_uInt16 nColId ) const SAL_OVERRIDE;
117 : virtual bool SeekRow( long nRow ) SAL_OVERRIDE;
118 : virtual bool SaveModified() SAL_OVERRIDE;
119 : virtual OUString GetCellText( long nRow, sal_uInt16 nColId ) const SAL_OVERRIDE;
120 :
121 : virtual void CellModified() SAL_OVERRIDE;
122 :
123 : DECL_LINK( AsynchDeactivate, void* );
124 : private:
125 :
126 : DECL_LINK( AsynchActivate, void* );
127 :
128 : };
129 :
130 : // class ORelationControl
131 0 : ORelationControl::ORelationControl(vcl::Window *pParent)
132 : : EditBrowseBox(pParent,
133 0 : EditBrowseBoxFlags::SMART_TAB_TRAVEL | EditBrowseBoxFlags::NO_HANDLE_COLUMN_CONTENT,
134 : WB_TABSTOP | WB_BORDER,
135 : BrowserMode::AUTOSIZE_LASTCOL)
136 : , m_pBoxControl(NULL)
137 : , m_nDataPos(0)
138 : , m_xSourceDef(NULL)
139 0 : , m_xDestDef(NULL)
140 : {
141 0 : }
142 :
143 0 : VCL_BUILDER_FACTORY(ORelationControl)
144 :
145 0 : void ORelationControl::Init(const TTableConnectionData::value_type& _pConnData)
146 : {
147 :
148 0 : m_pConnData = _pConnData;
149 : OSL_ENSURE(m_pConnData, "No data supplied!");
150 :
151 0 : m_pConnData->normalizeLines();
152 0 : }
153 :
154 0 : void ORelationControl::lateInit()
155 : {
156 0 : if ( !m_pConnData.get() )
157 0 : return;
158 0 : m_xSourceDef = m_pConnData->getReferencingTable()->getTable();
159 0 : m_xDestDef = m_pConnData->getReferencedTable()->getTable();
160 :
161 0 : if ( ColCount() == 0 )
162 : {
163 0 : InsertDataColumn( SOURCE_COLUMN, m_pConnData->getReferencingTable()->GetWinName(), 100);
164 0 : InsertDataColumn( DEST_COLUMN, m_pConnData->getReferencedTable()->GetWinName(), 100);
165 : // If the Defs do not yet exits, we need to set them with SetSource-/-DestDef
166 :
167 0 : m_pListCell.reset( VclPtr<ListBoxControl>::Create( &GetDataWindow() ) );
168 :
169 : // set browse mode
170 : SetMode( BrowserMode::COLUMNSELECTION |
171 : BrowserMode::HLINES |
172 : BrowserMode::VLINES |
173 : BrowserMode::HIDECURSOR |
174 : BrowserMode::HIDESELECT |
175 0 : BrowserMode::AUTO_HSCROLL |
176 0 : BrowserMode::AUTO_VSCROLL);
177 : }
178 : else
179 : // not the first call
180 0 : RowRemoved(0, GetRowCount());
181 :
182 0 : RowInserted(0, m_pConnData->GetConnLineDataList().size() + 1, true); // add one extra row
183 : }
184 :
185 0 : void ORelationControl::Resize()
186 : {
187 0 : EditBrowseBox::Resize();
188 0 : long nOutputWidth = GetOutputSizePixel().Width() - 1;
189 0 : SetColumnWidth(1, (nOutputWidth / 2));
190 0 : SetColumnWidth(2, (nOutputWidth / 2));
191 0 : }
192 :
193 0 : bool ORelationControl::PreNotify(NotifyEvent& rNEvt)
194 : {
195 0 : if (rNEvt.GetType() == MouseNotifyEvent::LOSEFOCUS && !HasChildPathFocus() )
196 0 : PostUserEvent(LINK(this, ORelationControl, AsynchDeactivate), NULL, true);
197 0 : else if (rNEvt.GetType() == MouseNotifyEvent::GETFOCUS)
198 0 : PostUserEvent(LINK(this, ORelationControl, AsynchActivate), NULL, true);
199 :
200 0 : return EditBrowseBox::PreNotify(rNEvt);
201 : }
202 :
203 0 : IMPL_LINK_NOARG(ORelationControl, AsynchActivate)
204 : {
205 0 : ActivateCell();
206 0 : return 0L;
207 : }
208 :
209 0 : IMPL_LINK_NOARG(ORelationControl, AsynchDeactivate)
210 : {
211 0 : DeactivateCell();
212 0 : return 0L;
213 : }
214 :
215 0 : bool ORelationControl::IsTabAllowed(bool bForward) const
216 : {
217 0 : long nRow = GetCurRow();
218 0 : sal_uInt16 nCol = GetCurColumnId();
219 :
220 0 : bool bRet = !(( ( bForward && (nCol == DEST_COLUMN) && (nRow == GetRowCount() - 1)))
221 0 : || (!bForward && (nCol == SOURCE_COLUMN) && (nRow == 0)));
222 :
223 0 : return bRet && EditBrowseBox::IsTabAllowed(bForward);
224 : }
225 :
226 0 : bool ORelationControl::SaveModified()
227 : {
228 0 : long nRow = GetCurRow();
229 0 : if ( nRow != BROWSER_ENDOFSELECTION )
230 : {
231 0 : OUString sFieldName(m_pListCell->GetSelectEntry());
232 0 : OConnectionLineDataVec& rLines = m_pConnData->GetConnLineDataList();
233 0 : if ( rLines.size() <= static_cast<OConnectionLineDataVec::size_type>(nRow) )
234 : {
235 0 : rLines.push_back(new OConnectionLineData());
236 0 : nRow = rLines.size() - 1;
237 : // add new past-rLines row
238 0 : m_ops.push_back(make_pair(INSERT, make_pair(nRow+1, nRow+2)));
239 : }
240 :
241 0 : OConnectionLineDataRef pConnLineData = rLines[nRow];
242 :
243 0 : switch( getColumnIdent( GetCurColumnId() ) )
244 : {
245 : case SOURCE_COLUMN:
246 0 : pConnLineData->SetSourceFieldName( sFieldName );
247 0 : break;
248 : case DEST_COLUMN:
249 0 : pConnLineData->SetDestFieldName( sFieldName );
250 0 : break;
251 0 : }
252 : // the modification we just did does *not* need to be registered in m_ops;
253 : // it is already taken into account (by the codepath that called us)
254 : //m_ops.push_back(make_pair(MODIFY, make_pair(nRow, nRow+1)));
255 : }
256 :
257 0 : const OConnectionLineDataVec::size_type oldSize = m_pConnData->GetConnLineDataList().size();
258 0 : OConnectionLineDataVec::size_type line = m_pConnData->normalizeLines();
259 0 : const OConnectionLineDataVec::size_type newSize = m_pConnData->GetConnLineDataList().size();
260 : assert(newSize <= oldSize);
261 0 : m_ops.push_back(make_pair(MODIFY, make_pair(line, newSize)));
262 0 : m_ops.push_back(make_pair(DELETE, make_pair(newSize, oldSize)));
263 :
264 0 : return true;
265 : }
266 :
267 0 : sal_uInt16 ORelationControl::getColumnIdent( sal_uInt16 _nColId ) const
268 : {
269 0 : sal_uInt16 nId = _nColId;
270 0 : if ( m_pConnData->getReferencingTable() != m_pBoxControl->getReferencingTable() )
271 0 : nId = ( _nColId == SOURCE_COLUMN) ? DEST_COLUMN : SOURCE_COLUMN;
272 0 : return nId;
273 : }
274 :
275 0 : OUString ORelationControl::GetCellText( long nRow, sal_uInt16 nColId ) const
276 : {
277 0 : OUString sText;
278 0 : if ( m_pConnData->GetConnLineDataList().size() > static_cast<size_t>(nRow) )
279 : {
280 0 : OConnectionLineDataRef pConnLineData = m_pConnData->GetConnLineDataList()[nRow];
281 0 : switch( getColumnIdent( nColId ) )
282 : {
283 : case SOURCE_COLUMN:
284 0 : sText = pConnLineData->GetSourceFieldName();
285 0 : break;
286 : case DEST_COLUMN:
287 0 : sText = pConnLineData->GetDestFieldName();
288 0 : break;
289 0 : }
290 : }
291 0 : return sText;
292 : }
293 :
294 0 : void ORelationControl::InitController( CellControllerRef& /*rController*/, long nRow, sal_uInt16 nColumnId )
295 : {
296 :
297 0 : OString sHelpId( HID_RELATIONDIALOG_LEFTFIELDCELL );
298 :
299 0 : Reference< XPropertySet> xDef;
300 0 : switch ( getColumnIdent(nColumnId) )
301 : {
302 : case SOURCE_COLUMN:
303 0 : xDef = m_xSourceDef;
304 0 : sHelpId = HID_RELATIONDIALOG_LEFTFIELDCELL;
305 0 : break;
306 : case DEST_COLUMN:
307 0 : xDef = m_xDestDef;
308 0 : sHelpId = HID_RELATIONDIALOG_RIGHTFIELDCELL;
309 0 : break;
310 : default:
311 : // ?????????
312 0 : break;
313 : }
314 :
315 0 : if ( xDef.is() )
316 : {
317 0 : fillListBox(xDef,nRow,nColumnId);
318 0 : OUString sName = GetCellText( nRow, nColumnId );
319 0 : m_pListCell->SelectEntry( sName );
320 0 : if ( m_pListCell->GetSelectEntry() != sName )
321 : {
322 0 : m_pListCell->InsertEntry( sName );
323 0 : m_pListCell->SelectEntry( sName );
324 : }
325 :
326 0 : m_pListCell->SetHelpId(sHelpId);
327 0 : }
328 0 : }
329 :
330 0 : CellController* ORelationControl::GetController( long /*nRow*/, sal_uInt16 /*nColumnId*/ )
331 : {
332 0 : return new ListBoxCellController( m_pListCell.get() );
333 : }
334 :
335 0 : bool ORelationControl::SeekRow( long nRow )
336 : {
337 0 : m_nDataPos = nRow;
338 0 : return true;
339 : }
340 :
341 0 : void ORelationControl::PaintCell( OutputDevice& rDev, const Rectangle& rRect, sal_uInt16 nColumnId ) const
342 : {
343 0 : OUString aText = GetCellText( m_nDataPos, nColumnId );
344 :
345 0 : Point aPos( rRect.TopLeft() );
346 0 : Size aTextSize( GetDataWindow().GetTextWidth( aText ), GetDataWindow().GetTextHeight() );
347 :
348 0 : if( aPos.X() < rRect.Left() || aPos.X() + aTextSize.Width() > rRect.Right() ||
349 0 : aPos.Y() < rRect.Top() || aPos.Y() + aTextSize.Height() > rRect.Bottom() )
350 : {
351 0 : rDev.SetClipRegion(vcl::Region(rRect));
352 : }
353 :
354 0 : rDev.DrawText( aPos, aText );
355 :
356 0 : if( rDev.IsClipRegion() )
357 0 : rDev.SetClipRegion();
358 0 : }
359 0 : void ORelationControl::fillListBox(const Reference< XPropertySet>& _xDest,long /*_nRow*/,sal_uInt16 /*nColumnId*/)
360 : {
361 0 : m_pListCell->Clear();
362 : try
363 : {
364 0 : if ( _xDest.is() )
365 : {
366 : //sal_Int32 nRows = GetRowCount();
367 0 : Reference<XColumnsSupplier> xSup(_xDest,UNO_QUERY);
368 0 : Reference<XNameAccess> xColumns = xSup->getColumns();
369 0 : Sequence< OUString> aNames = xColumns->getElementNames();
370 0 : const OUString* pIter = aNames.getConstArray();
371 0 : const OUString* pEnd = pIter + aNames.getLength();
372 0 : for(;pIter != pEnd;++pIter)
373 : {
374 0 : m_pListCell->InsertEntry( *pIter );
375 : }
376 0 : m_pListCell->InsertEntry(OUString(), 0);
377 : }
378 : }
379 0 : catch( const Exception& )
380 : {
381 : DBG_UNHANDLED_EXCEPTION();
382 : }
383 0 : }
384 0 : void ORelationControl::setWindowTables(const OTableWindow* _pSource,const OTableWindow* _pDest)
385 : {
386 : // If I edit here, hide
387 0 : bool bWasEditing = IsEditing();
388 0 : if ( bWasEditing )
389 0 : DeactivateCell();
390 :
391 0 : if ( _pSource && _pDest )
392 : {
393 0 : m_xSourceDef = _pSource->GetTable();
394 0 : SetColumnTitle(1, _pSource->GetName());
395 :
396 0 : m_xDestDef = _pDest->GetTable();
397 0 : SetColumnTitle(2, _pDest->GetName());
398 :
399 0 : const OJoinTableView* pView = _pSource->getTableView();
400 0 : OTableConnection* pConn = pView->GetTabConn(_pSource,_pDest);
401 0 : if ( pConn && !m_pConnData->GetConnLineDataList().empty() )
402 : {
403 0 : m_pConnData->CopyFrom(*pConn->GetData());
404 0 : m_pBoxControl->getContainer()->notifyConnectionChange();
405 : }
406 : else
407 : {
408 : // no connection found so we clear our data
409 0 : OConnectionLineDataVec& rLines = m_pConnData->GetConnLineDataList();
410 : ::std::for_each(rLines.begin(),
411 : rLines.end(),
412 0 : OUnaryRefFunctor<OConnectionLineData>( ::std::mem_fun(&OConnectionLineData::Reset))
413 0 : );
414 :
415 0 : m_pConnData->setReferencingTable(_pSource->GetData());
416 0 : m_pConnData->setReferencedTable(_pDest->GetData());
417 : }
418 0 : m_pConnData->normalizeLines();
419 :
420 : }
421 : // Repaint
422 0 : Invalidate();
423 :
424 0 : if ( bWasEditing )
425 : {
426 0 : GoToRow(0);
427 0 : ActivateCell();
428 : }
429 0 : }
430 :
431 0 : void ORelationControl::CellModified()
432 : {
433 0 : EditBrowseBox::CellModified();
434 0 : SaveModified();
435 : assert(m_pBoxControl);
436 0 : m_pBoxControl->NotifyCellChange();
437 0 : }
438 :
439 0 : Size ORelationControl::GetOptimalSize() const
440 : {
441 0 : return LogicToPixel(Size(140, 80), MAP_APPFONT);
442 : }
443 :
444 : // class OTableListBoxControl
445 0 : OTableListBoxControl::OTableListBoxControl(VclBuilderContainer* _pParent,
446 : const OJoinTableView::OTableWindowMap* _pTableMap,
447 : IRelationControlInterface* _pParentDialog)
448 : : m_pTableMap(_pTableMap)
449 0 : , m_pParentDialog(_pParentDialog)
450 : {
451 0 : _pParent->get(m_pLeftTable, "table1");
452 0 : _pParent->get(m_pRightTable, "table2");
453 :
454 0 : _pParent->get(m_pRC_Tables, "relations");
455 0 : m_pRC_Tables->SetController(this);
456 0 : m_pRC_Tables->Init();
457 :
458 0 : lateUIInit();
459 :
460 0 : Link<> aLink(LINK(this, OTableListBoxControl, OnTableChanged));
461 0 : m_pLeftTable->SetSelectHdl(aLink);
462 0 : m_pRightTable->SetSelectHdl(aLink);
463 0 : }
464 :
465 0 : OTableListBoxControl::~OTableListBoxControl()
466 : {
467 0 : }
468 :
469 0 : void OTableListBoxControl::fillListBoxes()
470 : {
471 : OSL_ENSURE( !m_pTableMap->empty(), "OTableListBoxControl::fillListBoxes: no table window!");
472 0 : OTableWindow* pInitialLeft = NULL;
473 0 : OTableWindow* pInitialRight = NULL;
474 :
475 : // Collect the names of all TabWins
476 0 : OJoinTableView::OTableWindowMap::const_iterator aIter = m_pTableMap->begin();
477 0 : OJoinTableView::OTableWindowMap::const_iterator aEnd = m_pTableMap->end();
478 0 : for(;aIter != aEnd;++aIter)
479 : {
480 0 : m_pLeftTable->InsertEntry(aIter->first);
481 0 : m_pRightTable->InsertEntry(aIter->first);
482 :
483 0 : if (!pInitialLeft)
484 : {
485 0 : pInitialLeft = aIter->second;
486 0 : m_strCurrentLeft = aIter->first;
487 : }
488 0 : else if (!pInitialRight)
489 : {
490 0 : pInitialRight = aIter->second;
491 0 : m_strCurrentRight = aIter->first;
492 : }
493 : }
494 :
495 0 : if ( !pInitialRight )
496 : {
497 0 : pInitialRight = pInitialLeft;
498 0 : m_strCurrentRight = m_strCurrentLeft;
499 : }
500 :
501 : // The corresponding Defs for my Controls
502 0 : m_pRC_Tables->setWindowTables(pInitialLeft,pInitialRight);
503 :
504 : // The table selected in a ComboBox must not be available in the other
505 :
506 0 : if ( m_pTableMap->size() > 2 )
507 : {
508 0 : m_pLeftTable->RemoveEntry(m_strCurrentRight);
509 0 : m_pRightTable->RemoveEntry(m_strCurrentLeft);
510 : }
511 :
512 : // Select the first one on the left side and on the right side,
513 : // select the second one
514 0 : m_pLeftTable->SelectEntry(m_strCurrentLeft);
515 0 : m_pRightTable->SelectEntry(m_strCurrentRight);
516 :
517 0 : m_pLeftTable->GrabFocus();
518 0 : }
519 :
520 0 : IMPL_LINK( OTableListBoxControl, OnTableChanged, ListBox*, pListBox )
521 : {
522 0 : OUString strSelected(pListBox->GetSelectEntry());
523 0 : OTableWindow* pLeft = NULL;
524 0 : OTableWindow* pRight = NULL;
525 :
526 : // Special treatment: If there are only two tables, we need to switch the other one too when changing in a LB
527 0 : if ( m_pTableMap->size() == 2 )
528 : {
529 : ListBox* pOther;
530 0 : if (pListBox == m_pLeftTable)
531 0 : pOther = m_pRightTable;
532 : else
533 0 : pOther = m_pLeftTable;
534 0 : pOther->SelectEntryPos(1 - pOther->GetSelectEntryPos());
535 :
536 0 : OJoinTableView::OTableWindowMap::const_iterator aIter = m_pTableMap->begin();
537 0 : OTableWindow* pFirst = aIter->second;
538 0 : ++aIter;
539 0 : OTableWindow* pSecond = aIter->second;
540 :
541 0 : if ( m_pLeftTable->GetSelectEntry() == pFirst->GetName() )
542 : {
543 0 : pLeft = pFirst;
544 0 : pRight = pSecond;
545 : }
546 : else
547 : {
548 0 : pLeft = pSecond;
549 0 : pRight = pFirst;
550 : }
551 : }
552 : else
553 : {
554 : // First we need the TableDef to the Table and with it the TabWin
555 0 : OJoinTableView::OTableWindowMap::const_iterator aFind = m_pTableMap->find(strSelected);
556 0 : OTableWindow* pLoop = NULL;
557 0 : if( aFind != m_pTableMap->end() )
558 0 : pLoop = aFind->second;
559 : OSL_ENSURE(pLoop != NULL, "ORelationDialog::OnTableChanged: invalid ListBox entry!");
560 : // We need to find strSelect, because we filled the ListBoxes with the table names with which we compare now
561 0 : if (pListBox == m_pLeftTable)
562 : {
563 : // Insert the previously selected Entry on the left side on the right side
564 0 : m_pRightTable->InsertEntry(m_strCurrentLeft);
565 : // Remove the currently selected Entry
566 0 : m_pRightTable->RemoveEntry(strSelected);
567 0 : m_strCurrentLeft = strSelected;
568 :
569 0 : pLeft = pLoop;
570 :
571 0 : OJoinTableView::OTableWindowMap::const_iterator aIter = m_pTableMap->find(m_pRightTable->GetSelectEntry());
572 : OSL_ENSURE( aIter != m_pTableMap->end(), "Invalid name");
573 0 : if ( aIter != m_pTableMap->end() )
574 0 : pRight = aIter->second;
575 :
576 0 : m_pLeftTable->GrabFocus();
577 : }
578 : else
579 : {
580 : // Insert the previously selected Entry on the right side on the left side
581 0 : m_pLeftTable->InsertEntry(m_strCurrentRight);
582 : // Remove the currently selected Entry
583 0 : m_pLeftTable->RemoveEntry(strSelected);
584 0 : m_strCurrentRight = strSelected;
585 :
586 0 : pRight = pLoop;
587 0 : OJoinTableView::OTableWindowMap::const_iterator aIter = m_pTableMap->find(m_pLeftTable->GetSelectEntry());
588 : OSL_ENSURE( aIter != m_pTableMap->end(), "Invalid name");
589 0 : if ( aIter != m_pTableMap->end() )
590 0 : pLeft = aIter->second;
591 : }
592 : }
593 :
594 0 : pListBox->GrabFocus();
595 :
596 0 : m_pRC_Tables->setWindowTables(pLeft,pRight);
597 :
598 0 : NotifyCellChange();
599 0 : return 0;
600 : }
601 :
602 0 : void OTableListBoxControl::NotifyCellChange()
603 : {
604 : // Enable/disable the OK button, depending on having a valid situation
605 0 : TTableConnectionData::value_type pConnData = m_pRC_Tables->getData();
606 0 : const OConnectionLineDataVec& rLines = pConnData->GetConnLineDataList();
607 0 : bool bValid = !rLines.empty();
608 0 : if (bValid)
609 : {
610 0 : OConnectionLineDataVec::const_iterator l(rLines.begin());
611 0 : const OConnectionLineDataVec::const_iterator le(rLines.end());
612 0 : for (; bValid && l!=le; ++l)
613 : {
614 0 : bValid = ! ((*l)->GetSourceFieldName().isEmpty() || (*l)->GetDestFieldName().isEmpty());
615 : }
616 : }
617 0 : m_pParentDialog->setValid(bValid);
618 :
619 0 : ORelationControl::ops_type::iterator i (m_pRC_Tables->m_ops.begin());
620 0 : const ORelationControl::ops_type::const_iterator e (m_pRC_Tables->m_ops.end());
621 0 : m_pRC_Tables->DeactivateCell();
622 0 : for(; i != e; ++i)
623 : {
624 0 : switch(i->first)
625 : {
626 : case ORelationControl::DELETE:
627 0 : m_pRC_Tables->RowRemoved(i->second.first, i->second.second - i->second.first);
628 0 : break;
629 : case ORelationControl::INSERT:
630 0 : m_pRC_Tables->RowInserted(i->second.first, i->second.second - i->second.first);
631 0 : break;
632 : case ORelationControl::MODIFY:
633 0 : for(OConnectionLineDataVec::size_type j = i->second.first; j < i->second.second; ++j)
634 0 : m_pRC_Tables->RowModified(j);
635 0 : break;
636 : }
637 : }
638 0 : m_pRC_Tables->ActivateCell();
639 0 : m_pRC_Tables->m_ops.clear();
640 0 : }
641 :
642 0 : void fillEntryAndDisable(ListBox& _rListBox,const OUString& _sEntry)
643 : {
644 0 : _rListBox.InsertEntry(_sEntry);
645 0 : _rListBox.SelectEntryPos(0);
646 0 : _rListBox.Disable();
647 0 : }
648 :
649 0 : void OTableListBoxControl::fillAndDisable(const TTableConnectionData::value_type& _pConnectionData)
650 : {
651 0 : fillEntryAndDisable(*m_pLeftTable, _pConnectionData->getReferencingTable()->GetWinName());
652 0 : fillEntryAndDisable(*m_pRightTable, _pConnectionData->getReferencedTable()->GetWinName());
653 0 : }
654 :
655 0 : void OTableListBoxControl::Init(const TTableConnectionData::value_type& _pConnData)
656 : {
657 0 : m_pRC_Tables->Init(_pConnData);
658 0 : }
659 :
660 0 : void OTableListBoxControl::lateUIInit()
661 : {
662 0 : m_pRC_Tables->Show();
663 0 : lateInit();
664 0 : }
665 :
666 0 : void OTableListBoxControl::lateInit()
667 : {
668 0 : m_pRC_Tables->lateInit();
669 0 : }
670 :
671 0 : void OTableListBoxControl::Disable()
672 : {
673 0 : m_pLeftTable->Disable();
674 0 : m_pRightTable->Disable();
675 0 : m_pRC_Tables->Disable();
676 0 : }
677 :
678 0 : void OTableListBoxControl::Invalidate()
679 : {
680 0 : m_pLeftTable->Invalidate();
681 0 : m_pRightTable->Invalidate();
682 0 : m_pRC_Tables->Invalidate();
683 0 : }
684 :
685 0 : bool OTableListBoxControl::SaveModified()
686 : {
687 0 : return m_pRC_Tables->SaveModified();
688 : }
689 :
690 0 : TTableWindowData::value_type OTableListBoxControl::getReferencingTable() const
691 : {
692 0 : return m_pRC_Tables->getData()->getReferencingTable();
693 : }
694 :
695 0 : void OTableListBoxControl::enableRelation(bool _bEnable)
696 : {
697 0 : if ( !_bEnable )
698 0 : m_pRC_Tables->PostUserEvent(LINK(m_pRC_Tables, ORelationControl, AsynchDeactivate));
699 0 : m_pRC_Tables->Enable(_bEnable);
700 :
701 0 : }
702 36 : }
703 :
704 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|