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