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 "QueryViewSwitch.hxx"
21 : #include "QueryDesignView.hxx"
22 : #include "QueryTextView.hxx"
23 : #include "querycontainerwindow.hxx"
24 : #include "dbu_qry.hrc"
25 : #include "browserids.hxx"
26 : #include "adtabdlg.hxx"
27 : #include "querycontroller.hxx"
28 : #include "sqledit.hxx"
29 : #include <boost/scoped_ptr.hpp>
30 :
31 : using namespace dbaui;
32 : using namespace ::com::sun::star::uno;
33 : using namespace ::com::sun::star::lang;
34 :
35 0 : OQueryViewSwitch::OQueryViewSwitch(OQueryContainerWindow* _pParent, OQueryController& _rController,const Reference< XComponentContext >& _rxContext)
36 0 : : m_bAddTableDialogWasVisible(sal_False)
37 : {
38 :
39 0 : m_pTextView = new OQueryTextView(_pParent);
40 0 : m_pDesignView = new OQueryDesignView( _pParent, _rController, _rxContext );
41 0 : }
42 :
43 0 : OQueryViewSwitch::~OQueryViewSwitch()
44 : {
45 : {
46 0 : boost::scoped_ptr<Window> aTemp(m_pTextView);
47 0 : m_pTextView = NULL;
48 : }
49 : {
50 0 : boost::scoped_ptr<Window> aTemp(m_pDesignView);
51 0 : m_pDesignView = NULL;
52 : }
53 0 : }
54 :
55 0 : void OQueryViewSwitch::Construct()
56 : {
57 0 : m_pDesignView->Construct( );
58 0 : }
59 :
60 0 : void OQueryViewSwitch::initialize()
61 : {
62 : // initially be in SQL mode
63 0 : m_pTextView->Show();
64 0 : m_pDesignView->initialize();
65 0 : }
66 :
67 0 : void OQueryViewSwitch::resizeDocumentView(Rectangle& _rPlayground)
68 : {
69 0 : m_pTextView->SetPosSizePixel( _rPlayground.TopLeft(), _rPlayground.GetSize() );
70 0 : m_pDesignView->SetPosSizePixel( _rPlayground.TopLeft(), _rPlayground.GetSize() );
71 :
72 : // just for completeness: there is no space left, we occupied it all ...
73 0 : _rPlayground.SetPos( _rPlayground.BottomRight() );
74 0 : _rPlayground.SetSize( Size( 0, 0 ) );
75 0 : }
76 :
77 0 : sal_Bool OQueryViewSwitch::checkStatement()
78 : {
79 0 : if(m_pTextView->IsVisible())
80 0 : return m_pTextView->checkStatement();
81 0 : return m_pDesignView->checkStatement();
82 : }
83 :
84 0 : OUString OQueryViewSwitch::getStatement()
85 : {
86 0 : if(m_pTextView->IsVisible())
87 0 : return m_pTextView->getStatement();
88 0 : return m_pDesignView->getStatement();
89 : }
90 :
91 0 : void OQueryViewSwitch::setReadOnly(sal_Bool _bReadOnly)
92 : {
93 0 : if(m_pTextView->IsVisible())
94 0 : m_pTextView->setReadOnly(_bReadOnly);
95 : else
96 0 : m_pDesignView->setReadOnly(_bReadOnly);
97 0 : }
98 :
99 0 : void OQueryViewSwitch::clear()
100 : {
101 0 : if(m_pTextView->IsVisible())
102 0 : m_pTextView->clear();
103 : else
104 0 : m_pDesignView->clear();
105 0 : }
106 :
107 0 : void OQueryViewSwitch::GrabFocus()
108 : {
109 0 : if ( m_pTextView && m_pTextView->IsVisible() )
110 0 : m_pTextView->GrabFocus();
111 0 : else if ( m_pDesignView && m_pDesignView->IsVisible() )
112 0 : m_pDesignView->GrabFocus();
113 0 : }
114 :
115 0 : void OQueryViewSwitch::setStatement(const OUString& _rsStatement)
116 : {
117 0 : if(m_pTextView->IsVisible())
118 0 : m_pTextView->setStatement(_rsStatement);
119 : else
120 0 : m_pDesignView->setStatement(_rsStatement);
121 0 : }
122 :
123 0 : void OQueryViewSwitch::copy()
124 : {
125 0 : if(m_pTextView->IsVisible())
126 0 : m_pTextView->copy();
127 : else
128 0 : m_pDesignView->copy();
129 0 : }
130 :
131 0 : sal_Bool OQueryViewSwitch::isCutAllowed()
132 : {
133 0 : if(m_pTextView->IsVisible())
134 0 : return m_pTextView->isCutAllowed();
135 0 : return m_pDesignView->isCutAllowed();
136 : }
137 :
138 0 : sal_Bool OQueryViewSwitch::isCopyAllowed()
139 : {
140 0 : if(m_pTextView->IsVisible())
141 0 : return m_pTextView->isCopyAllowed();
142 0 : return m_pDesignView->isCopyAllowed();
143 : }
144 :
145 0 : sal_Bool OQueryViewSwitch::isPasteAllowed()
146 : {
147 0 : if(m_pTextView->IsVisible())
148 0 : return m_pTextView->isPasteAllowed();
149 0 : return m_pDesignView->isPasteAllowed();
150 : }
151 :
152 0 : void OQueryViewSwitch::cut()
153 : {
154 0 : if(m_pTextView->IsVisible())
155 0 : m_pTextView->cut();
156 : else
157 0 : m_pDesignView->cut();
158 0 : }
159 :
160 0 : void OQueryViewSwitch::paste()
161 : {
162 0 : if(m_pTextView->IsVisible())
163 0 : m_pTextView->paste();
164 : else
165 0 : m_pDesignView->paste();
166 0 : }
167 :
168 0 : OQueryContainerWindow* OQueryViewSwitch::getContainer() const
169 : {
170 0 : Window* pDesignParent = getDesignView() ? getDesignView()->GetParent() : NULL;
171 0 : return static_cast< OQueryContainerWindow* >( pDesignParent );
172 : }
173 :
174 0 : void OQueryViewSwitch::impl_forceSQLView()
175 : {
176 0 : OAddTableDlg* pAddTabDialog( getAddTableDialog() );
177 :
178 : // hide the "Add Table" dialog
179 0 : m_bAddTableDialogWasVisible = pAddTabDialog ? pAddTabDialog->IsVisible() : false;
180 0 : if ( m_bAddTableDialogWasVisible )
181 0 : pAddTabDialog->Hide();
182 :
183 : // tell the views they're in/active
184 0 : m_pDesignView->stopTimer();
185 0 : m_pTextView->getSqlEdit()->startTimer();
186 :
187 : // set the most recent statement at the text view
188 0 : m_pTextView->clear();
189 0 : m_pTextView->setStatement(static_cast<OQueryController&>(m_pDesignView->getController()).getStatement());
190 0 : }
191 :
192 0 : void OQueryViewSwitch::forceInitialView()
193 : {
194 0 : OQueryController& rQueryController( static_cast< OQueryController& >( m_pDesignView->getController() ) );
195 0 : const sal_Bool bGraphicalDesign = rQueryController.isGraphicalDesign();
196 0 : if ( !bGraphicalDesign )
197 0 : impl_forceSQLView();
198 : else
199 : {
200 : // tell the text view it's inactive now
201 0 : m_pTextView->getSqlEdit()->stopTimer();
202 :
203 : // update the "Add Table" dialog
204 0 : OAddTableDlg* pAddTabDialog( getAddTableDialog() );
205 0 : if ( pAddTabDialog )
206 0 : pAddTabDialog->Update();
207 :
208 : // initialize the design view
209 0 : m_pDesignView->initByFieldDescriptions( rQueryController.getFieldInformation() );
210 :
211 : // tell the design view it's active now
212 0 : m_pDesignView->startTimer();
213 : }
214 :
215 0 : impl_postViewSwitch( bGraphicalDesign, true );
216 0 : }
217 :
218 0 : bool OQueryViewSwitch::switchView( ::dbtools::SQLExceptionInfo* _pErrorInfo )
219 : {
220 0 : sal_Bool bRet = sal_True;
221 0 : sal_Bool bGraphicalDesign = static_cast<OQueryController&>(m_pDesignView->getController()).isGraphicalDesign();
222 :
223 0 : if ( !bGraphicalDesign )
224 : {
225 0 : impl_forceSQLView();
226 : }
227 : else
228 : {
229 : // tell the text view it's inactive now
230 0 : m_pTextView->getSqlEdit()->stopTimer();
231 :
232 : // update the "Add Table" dialog
233 0 : OAddTableDlg* pAddTabDialog( getAddTableDialog() );
234 0 : if ( pAddTabDialog )
235 0 : pAddTabDialog->Update();
236 :
237 : // initialize the design view
238 0 : bRet = m_pDesignView->initByParseIterator( _pErrorInfo );
239 :
240 : // tell the design view it's active now
241 0 : m_pDesignView->startTimer();
242 : }
243 :
244 0 : return impl_postViewSwitch( bGraphicalDesign, bRet );
245 : }
246 :
247 0 : bool OQueryViewSwitch::impl_postViewSwitch( const bool i_bGraphicalDesign, const bool i_bSuccess )
248 : {
249 0 : if ( i_bSuccess )
250 : {
251 0 : m_pTextView->Show ( !i_bGraphicalDesign );
252 0 : m_pDesignView->Show ( i_bGraphicalDesign );
253 0 : OAddTableDlg* pAddTabDialog( getAddTableDialog() );
254 0 : if ( pAddTabDialog )
255 0 : if ( i_bGraphicalDesign && m_bAddTableDialogWasVisible )
256 0 : pAddTabDialog->Show();
257 :
258 0 : GrabFocus();
259 : }
260 :
261 0 : OQueryContainerWindow* pContainer = getContainer();
262 0 : if ( pContainer )
263 0 : pContainer->Resize();
264 :
265 0 : m_pDesignView->getController().ClearUndoManager();
266 0 : m_pDesignView->getController().InvalidateAll();
267 :
268 0 : return i_bSuccess;
269 : }
270 :
271 0 : OAddTableDlg* OQueryViewSwitch::getAddTableDialog()
272 : {
273 0 : if ( !m_pDesignView )
274 0 : return NULL;
275 0 : return m_pDesignView->getController().getAddTableDialog();
276 : }
277 :
278 0 : sal_Bool OQueryViewSwitch::isSlotEnabled(sal_Int32 _nSlotId)
279 : {
280 0 : return m_pDesignView->isSlotEnabled(_nSlotId);
281 : }
282 :
283 0 : void OQueryViewSwitch::setSlotEnabled(sal_Int32 _nSlotId,sal_Bool _bEnable)
284 : {
285 0 : m_pDesignView->setSlotEnabled(_nSlotId,_bEnable);
286 0 : }
287 :
288 0 : void OQueryViewSwitch::SaveUIConfig()
289 : {
290 0 : if(m_pDesignView->IsVisible())
291 0 : m_pDesignView->SaveUIConfig();
292 0 : }
293 :
294 0 : void OQueryViewSwitch::SetPosSizePixel( Point _rPt,Size _rSize)
295 : {
296 0 : m_pDesignView->SetPosSizePixel( _rPt,_rSize);
297 0 : m_pDesignView->Resize();
298 0 : m_pTextView->SetPosSizePixel( _rPt,_rSize);
299 0 : }
300 :
301 0 : Reference< XComponentContext > OQueryViewSwitch::getORB() const
302 : {
303 0 : return m_pDesignView->getORB();
304 : }
305 :
306 0 : bool OQueryViewSwitch::reset( ::dbtools::SQLExceptionInfo* _pErrorInfo )
307 : {
308 0 : m_pDesignView->reset();
309 0 : if ( !m_pDesignView->initByParseIterator( _pErrorInfo ) )
310 0 : return false;
311 :
312 0 : if ( switchView( _pErrorInfo ) )
313 0 : return false;
314 :
315 0 : return true;
316 : }
317 :
318 0 : void OQueryViewSwitch::setNoneVisbleRow(sal_Int32 _nRows)
319 : {
320 0 : if(m_pDesignView)
321 0 : m_pDesignView->setNoneVisbleRow(_nRows);
322 0 : }
323 :
324 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|