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 : ORelationDialog::~ORelationDialog()
92 : {
93 0 : disposeOnce();
94 0 : }
95 :
96 0 : void ORelationDialog::dispose()
97 : {
98 0 : m_pRB_NoCascUpd.clear();
99 0 : m_pRB_CascUpd.clear();
100 0 : m_pRB_CascUpdNull.clear();
101 0 : m_pRB_CascUpdDefault.clear();
102 0 : m_pRB_NoCascDel.clear();
103 0 : m_pRB_CascDel.clear();
104 0 : m_pRB_CascDelNull.clear();
105 0 : m_pRB_CascDelDefault.clear();
106 0 : m_pPB_OK.clear();
107 0 : ModalDialog::dispose();
108 0 : }
109 :
110 :
111 0 : void ORelationDialog::Init(const TTableConnectionData::value_type& _pConnectionData)
112 : {
113 0 : ORelationTableConnectionData* pConnData = static_cast<ORelationTableConnectionData*>(_pConnectionData.get());
114 : // Update Rules
115 0 : switch (pConnData->GetUpdateRules())
116 : {
117 : case KeyRule::NO_ACTION:
118 : case KeyRule::RESTRICT:
119 0 : m_pRB_NoCascUpd->Check( true );
120 0 : break;
121 :
122 : case KeyRule::CASCADE:
123 0 : m_pRB_CascUpd->Check( true );
124 0 : break;
125 :
126 : case KeyRule::SET_NULL:
127 0 : m_pRB_CascUpdNull->Check( true );
128 0 : break;
129 : case KeyRule::SET_DEFAULT:
130 0 : m_pRB_CascUpdDefault->Check( true );
131 0 : break;
132 : }
133 :
134 : // Delete Rules
135 0 : switch (pConnData->GetDeleteRules())
136 : {
137 : case KeyRule::NO_ACTION:
138 : case KeyRule::RESTRICT:
139 0 : m_pRB_NoCascDel->Check( true );
140 0 : break;
141 :
142 : case KeyRule::CASCADE:
143 0 : m_pRB_CascDel->Check( true );
144 0 : break;
145 :
146 : case KeyRule::SET_NULL:
147 0 : m_pRB_CascDelNull->Check( true );
148 0 : break;
149 : case KeyRule::SET_DEFAULT:
150 0 : m_pRB_CascDelDefault->Check( true );
151 0 : break;
152 : }
153 0 : }
154 :
155 0 : IMPL_LINK( ORelationDialog, OKClickHdl, Button*, /*pButton*/ )
156 : {
157 : // RadioButtons auslesen
158 0 : sal_uInt16 nAttrib = 0;
159 :
160 : // Delete Rules
161 0 : if( m_pRB_NoCascDel->IsChecked() )
162 0 : nAttrib |= KeyRule::NO_ACTION;
163 0 : if( m_pRB_CascDel->IsChecked() )
164 0 : nAttrib |= KeyRule::CASCADE;
165 0 : if( m_pRB_CascDelNull->IsChecked() )
166 0 : nAttrib |= KeyRule::SET_NULL;
167 0 : if( m_pRB_CascDelDefault->IsChecked() )
168 0 : nAttrib |= KeyRule::SET_DEFAULT;
169 :
170 0 : ORelationTableConnectionData* pConnData = static_cast<ORelationTableConnectionData*>(m_pConnData.get());
171 0 : pConnData->SetDeleteRules( nAttrib );
172 :
173 : // Update Rules
174 0 : nAttrib = 0;
175 0 : if( m_pRB_NoCascUpd->IsChecked() )
176 0 : nAttrib |= KeyRule::NO_ACTION;
177 0 : if( m_pRB_CascUpd->IsChecked() )
178 0 : nAttrib |= KeyRule::CASCADE;
179 0 : if( m_pRB_CascUpdNull->IsChecked() )
180 0 : nAttrib |= KeyRule::SET_NULL;
181 0 : if( m_pRB_CascUpdDefault->IsChecked() )
182 0 : nAttrib |= KeyRule::SET_DEFAULT;
183 0 : pConnData->SetUpdateRules( nAttrib );
184 :
185 0 : m_xTableControl->SaveModified();
186 :
187 : //// wenn die ComboBoxen fuer die Tabellenauswahl enabled sind (Constructor mit bAllowTableSelect==sal_True), dann muss ich in die
188 : //// Connection auch die Tabellennamen stecken
189 : //m_pConnData->SetSourceWinName(m_xTableControl->getSourceWinName());
190 : //m_pConnData->SetDestWinName(m_xTableControl->getDestWinName());
191 :
192 : // try to create the relation
193 : try
194 : {
195 0 : ORelationTableConnectionData* pOrigConnData = static_cast<ORelationTableConnectionData*>(m_pOrigConnData.get());
196 0 : if ( *pConnData == *pOrigConnData || pConnData->Update())
197 : {
198 0 : m_pOrigConnData->CopyFrom( *m_pConnData );
199 0 : EndDialog( RET_OK );
200 0 : return 0L;
201 : }
202 : }
203 0 : catch( const SQLException& )
204 : {
205 : ::dbaui::showError( SQLExceptionInfo( ::cppu::getCaughtException() ),
206 : this,
207 0 : static_cast<OJoinTableView*>(GetParent())->getDesignView()->getController().getORB());
208 : }
209 0 : catch( const Exception& )
210 : {
211 : DBG_UNHANDLED_EXCEPTION();
212 : }
213 :
214 0 : m_bTriedOneUpdate = true;
215 : // this means that the original connection may be lost (if m_pConnData was not a newly created but an
216 : // existent conn to be modified), which we reflect by returning RET_NO (see ::Execute)
217 :
218 : // try again
219 0 : Init(m_pConnData);
220 0 : m_xTableControl->Init( m_pConnData );
221 0 : m_xTableControl->lateInit();
222 :
223 0 : return 0;
224 : }
225 :
226 0 : short ORelationDialog::Execute()
227 : {
228 0 : short nResult = ModalDialog::Execute();
229 0 : if ((nResult != RET_OK) && m_bTriedOneUpdate)
230 0 : return RET_NO;
231 :
232 0 : return nResult;
233 : }
234 :
235 0 : TTableConnectionData::value_type ORelationDialog::getConnectionData() const
236 : {
237 0 : return m_pConnData;
238 : }
239 :
240 0 : void ORelationDialog::setValid(bool _bValid)
241 : {
242 0 : m_pPB_OK->Enable(_bValid);
243 0 : }
244 :
245 0 : void ORelationDialog::notifyConnectionChange()
246 : {
247 0 : Init(m_pConnData);
248 36 : }
249 :
250 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|