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 "RelationDlg.hxx"
21 :
22 : #include <vcl/wrkwin.hxx>
23 :
24 : #include <vcl/svapp.hxx>
25 : #include "dbu_dlg.hrc"
26 : #include "dbaccess_helpid.hrc"
27 : #include <com/sun/star/sdbc/KeyRule.hpp>
28 :
29 : #include <tools/debug.hxx>
30 : #include <tools/diagnose_ex.h>
31 : #include "UITools.hxx"
32 : #include "JoinDesignView.hxx"
33 : #include "JoinController.hxx"
34 : #include <connectivity/dbexception.hxx>
35 : #include "RTableConnectionData.hxx"
36 : #include "RelationControl.hxx"
37 : #include <cppuhelper/exc_hlp.hxx>
38 : #include <comphelper/processfactory.hxx>
39 :
40 : #include <algorithm>
41 :
42 : using namespace ::com::sun::star::uno;
43 : using namespace ::com::sun::star::sdbc;
44 : using namespace ::com::sun::star::container;
45 : using namespace ::com::sun::star::beans;
46 : using namespace ::dbaui;
47 : using namespace ::dbtools;
48 :
49 : // class ORelationDialog
50 0 : ORelationDialog::ORelationDialog( OJoinTableView* pParent,
51 : const TTableConnectionData::value_type& pConnectionData,
52 : bool bAllowTableSelect )
53 : : ModalDialog(pParent, "RelationDialog",
54 : "dbaccess/ui/relationdialog.ui")
55 0 : , m_pTableMap(&pParent->GetTabWinMap())
56 : , m_pOrigConnData(pConnectionData)
57 0 : , m_bTriedOneUpdate(false)
58 : {
59 0 : get(m_pRB_NoCascUpd, "addaction");
60 0 : get(m_pRB_CascUpd, "addcascade");
61 0 : get(m_pRB_CascUpdNull, "addnull");
62 0 : get(m_pRB_CascUpdDefault, "adddefault");
63 0 : get(m_pRB_NoCascDel, "delaction");
64 0 : get(m_pRB_CascDel, "delcascade");
65 0 : get(m_pRB_CascDelNull, "delnull");
66 0 : get(m_pRB_CascDelDefault, "deldefault");
67 0 : get(m_pPB_OK, "ok");
68 :
69 0 : m_xConnection = pParent->getDesignView()->getController().getConnection();
70 :
71 : // Connection kopieren
72 0 : m_pConnData.reset( static_cast<ORelationTableConnectionData*>(pConnectionData->NewInstance()) );
73 0 : m_pConnData->CopyFrom( *pConnectionData );
74 :
75 0 : Init(m_pConnData);
76 0 : m_xTableControl.reset( new OTableListBoxControl(this, m_pTableMap, this) );
77 :
78 0 : m_pPB_OK->SetClickHdl( LINK(this, ORelationDialog, OKClickHdl) );
79 :
80 0 : m_xTableControl->Init( m_pConnData );
81 0 : if ( bAllowTableSelect )
82 0 : m_xTableControl->fillListBoxes();
83 : else
84 0 : m_xTableControl->fillAndDisable(pConnectionData);
85 :
86 0 : m_xTableControl->lateInit();
87 :
88 0 : m_xTableControl->NotifyCellChange();
89 0 : }
90 :
91 0 : void ORelationDialog::Init(const TTableConnectionData::value_type& _pConnectionData)
92 : {
93 0 : ORelationTableConnectionData* pConnData = static_cast<ORelationTableConnectionData*>(_pConnectionData.get());
94 : // Update Rules
95 0 : switch (pConnData->GetUpdateRules())
96 : {
97 : case KeyRule::NO_ACTION:
98 : case KeyRule::RESTRICT:
99 0 : m_pRB_NoCascUpd->Check( true );
100 0 : break;
101 :
102 : case KeyRule::CASCADE:
103 0 : m_pRB_CascUpd->Check( true );
104 0 : break;
105 :
106 : case KeyRule::SET_NULL:
107 0 : m_pRB_CascUpdNull->Check( true );
108 0 : break;
109 : case KeyRule::SET_DEFAULT:
110 0 : m_pRB_CascUpdDefault->Check( true );
111 0 : break;
112 : }
113 :
114 : // Delete Rules
115 0 : switch (pConnData->GetDeleteRules())
116 : {
117 : case KeyRule::NO_ACTION:
118 : case KeyRule::RESTRICT:
119 0 : m_pRB_NoCascDel->Check( true );
120 0 : break;
121 :
122 : case KeyRule::CASCADE:
123 0 : m_pRB_CascDel->Check( true );
124 0 : break;
125 :
126 : case KeyRule::SET_NULL:
127 0 : m_pRB_CascDelNull->Check( true );
128 0 : break;
129 : case KeyRule::SET_DEFAULT:
130 0 : m_pRB_CascDelDefault->Check( true );
131 0 : break;
132 : }
133 0 : }
134 :
135 0 : ORelationDialog::~ORelationDialog()
136 : {
137 0 : }
138 :
139 0 : IMPL_LINK( ORelationDialog, OKClickHdl, Button*, /*pButton*/ )
140 : {
141 : // RadioButtons auslesen
142 0 : sal_uInt16 nAttrib = 0;
143 :
144 : // Delete Rules
145 0 : if( m_pRB_NoCascDel->IsChecked() )
146 0 : nAttrib |= KeyRule::NO_ACTION;
147 0 : if( m_pRB_CascDel->IsChecked() )
148 0 : nAttrib |= KeyRule::CASCADE;
149 0 : if( m_pRB_CascDelNull->IsChecked() )
150 0 : nAttrib |= KeyRule::SET_NULL;
151 0 : if( m_pRB_CascDelDefault->IsChecked() )
152 0 : nAttrib |= KeyRule::SET_DEFAULT;
153 :
154 0 : ORelationTableConnectionData* pConnData = static_cast<ORelationTableConnectionData*>(m_pConnData.get());
155 0 : pConnData->SetDeleteRules( nAttrib );
156 :
157 : // Update Rules
158 0 : nAttrib = 0;
159 0 : if( m_pRB_NoCascUpd->IsChecked() )
160 0 : nAttrib |= KeyRule::NO_ACTION;
161 0 : if( m_pRB_CascUpd->IsChecked() )
162 0 : nAttrib |= KeyRule::CASCADE;
163 0 : if( m_pRB_CascUpdNull->IsChecked() )
164 0 : nAttrib |= KeyRule::SET_NULL;
165 0 : if( m_pRB_CascUpdDefault->IsChecked() )
166 0 : nAttrib |= KeyRule::SET_DEFAULT;
167 0 : pConnData->SetUpdateRules( nAttrib );
168 :
169 0 : m_xTableControl->SaveModified();
170 :
171 : //// wenn die ComboBoxen fuer die Tabellenauswahl enabled sind (Constructor mit bAllowTableSelect==sal_True), dann muss ich in die
172 : //// Connection auch die Tabellennamen stecken
173 : //m_pConnData->SetSourceWinName(m_xTableControl->getSourceWinName());
174 : //m_pConnData->SetDestWinName(m_xTableControl->getDestWinName());
175 :
176 : // try to create the relation
177 : try
178 : {
179 0 : ORelationTableConnectionData* pOrigConnData = static_cast<ORelationTableConnectionData*>(m_pOrigConnData.get());
180 0 : if ( *pConnData == *pOrigConnData || pConnData->Update())
181 : {
182 0 : m_pOrigConnData->CopyFrom( *m_pConnData );
183 0 : EndDialog( RET_OK );
184 0 : return 0L;
185 : }
186 : }
187 0 : catch( const SQLException& )
188 : {
189 : ::dbaui::showError( SQLExceptionInfo( ::cppu::getCaughtException() ),
190 : this,
191 0 : static_cast<OJoinTableView*>(GetParent())->getDesignView()->getController().getORB());
192 : }
193 0 : catch( const Exception& )
194 : {
195 : DBG_UNHANDLED_EXCEPTION();
196 : }
197 :
198 0 : m_bTriedOneUpdate = true;
199 : // this means that the original connection may be lost (if m_pConnData was not a newly created but an
200 : // existent conn to be modified), which we reflect by returning RET_NO (see ::Execute)
201 :
202 : // try again
203 0 : Init(m_pConnData);
204 0 : m_xTableControl->Init( m_pConnData );
205 0 : m_xTableControl->lateInit();
206 :
207 0 : return 0;
208 : }
209 :
210 0 : short ORelationDialog::Execute()
211 : {
212 0 : short nResult = ModalDialog::Execute();
213 0 : if ((nResult != RET_OK) && m_bTriedOneUpdate)
214 0 : return RET_NO;
215 :
216 0 : return nResult;
217 : }
218 :
219 0 : TTableConnectionData::value_type ORelationDialog::getConnectionData() const
220 : {
221 0 : return m_pConnData;
222 : }
223 :
224 0 : void ORelationDialog::setValid(bool _bValid)
225 : {
226 0 : m_pPB_OK->Enable(_bValid);
227 0 : }
228 :
229 0 : void ORelationDialog::notifyConnectionChange()
230 : {
231 0 : Init(m_pConnData);
232 72 : }
233 :
234 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|