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 "AppView.hxx"
21 : #include "dbu_app.hrc"
22 : #include <tools/debug.hxx>
23 : #include <tools/diagnose_ex.h>
24 : #include "dbaccess_helpid.hrc"
25 : #include <vcl/toolbox.hxx>
26 : #include <unotools/configmgr.hxx>
27 : #include <vcl/waitobj.hxx>
28 : #include <comphelper/types.hxx>
29 : #include <com/sun/star/datatransfer/clipboard/XClipboard.hpp>
30 : #include <com/sun/star/beans/XPropertySet.hpp>
31 : #include <com/sun/star/sdbcx/XTablesSupplier.hpp>
32 : #include <com/sun/star/sdb/XQueriesSupplier.hpp>
33 : #include <unotools/syslocale.hxx>
34 : #include "UITools.hxx"
35 : #include "AppDetailView.hxx"
36 : #include "tabletree.hxx"
37 : #include "AppSwapWindow.hxx"
38 : #include <vcl/svapp.hxx>
39 : #include <vcl/settings.hxx>
40 : #include "AppTitleWindow.hxx"
41 : #include "dsntypes.hxx"
42 : #include "dbustrings.hrc"
43 : #include <dbaccess/IController.hxx>
44 : #include "browserids.hxx"
45 : #include <unotools/pathoptions.hxx>
46 : #include "IApplicationController.hxx"
47 : #include <boost/scoped_ptr.hpp>
48 :
49 : using namespace ::dbaui;
50 : using namespace ::com::sun::star::uno;
51 : using namespace ::com::sun::star::ucb;
52 : using namespace ::com::sun::star::beans;
53 : using namespace ::com::sun::star::sdb;
54 : using namespace ::com::sun::star::sdbc;
55 : using namespace ::com::sun::star::sdbcx;
56 : using namespace ::com::sun::star::datatransfer::clipboard;
57 : using namespace ::com::sun::star::lang;
58 : using namespace ::com::sun::star::frame;
59 : using namespace ::com::sun::star::container;
60 : using ::com::sun::star::sdb::application::NamedDatabaseObject;
61 :
62 : // class OAppBorderWindow
63 16 : OAppBorderWindow::OAppBorderWindow(OApplicationView* _pParent,PreviewMode _ePreviewMode) : Window(_pParent,WB_DIALOGCONTROL)
64 : ,m_pPanel(NULL)
65 : ,m_pDetailView(NULL)
66 16 : ,m_pView(_pParent)
67 : {
68 :
69 16 : SetBorderStyle(WindowBorderStyle::MONO);
70 :
71 16 : m_pPanel = new OTitleWindow(this,STR_DATABASE,WB_BORDER | WB_DIALOGCONTROL, false);
72 16 : m_pPanel->SetBorderStyle(WindowBorderStyle::MONO);
73 16 : OApplicationSwapWindow* pSwap = new OApplicationSwapWindow( m_pPanel, *this );
74 16 : pSwap->Show();
75 16 : pSwap->SetUniqueId(UID_APP_SWAP_VIEW);
76 :
77 16 : m_pPanel->setChildWindow(pSwap);
78 16 : m_pPanel->SetUniqueId(UID_APP_DATABASE_VIEW);
79 16 : m_pPanel->Show();
80 :
81 16 : m_pDetailView = new OApplicationDetailView(*this,_ePreviewMode);
82 16 : m_pDetailView->Show();
83 :
84 16 : ImplInitSettings();
85 16 : }
86 :
87 36 : OAppBorderWindow::~OAppBorderWindow()
88 : {
89 : // destroy children
90 12 : if ( m_pPanel )
91 : {
92 12 : m_pPanel->Hide();
93 12 : boost::scoped_ptr<vcl::Window> aTemp(m_pPanel);
94 12 : m_pPanel = NULL;
95 : }
96 12 : if ( m_pDetailView )
97 : {
98 12 : m_pDetailView->Hide();
99 12 : boost::scoped_ptr<vcl::Window> aTemp(m_pDetailView);
100 12 : m_pDetailView = NULL;
101 : }
102 :
103 24 : }
104 :
105 24 : void OAppBorderWindow::GetFocus()
106 : {
107 24 : if ( m_pPanel )
108 14 : m_pPanel->GrabFocus();
109 24 : }
110 :
111 50 : void OAppBorderWindow::Resize()
112 : {
113 : // parent window dimension
114 50 : Size aOutputSize( GetOutputSize() );
115 50 : long nOutputWidth = aOutputSize.Width();
116 50 : long nOutputHeight = aOutputSize.Height();
117 50 : long nX = 0;
118 :
119 50 : Size aFLSize = LogicToPixel( Size( 3, 8 ), MAP_APPFONT );
120 50 : if ( m_pPanel )
121 : {
122 50 : OApplicationSwapWindow* pSwap = getPanel();
123 50 : if ( pSwap )
124 : {
125 50 : if ( pSwap->GetEntryCount() != 0 )
126 50 : nX = pSwap->GetBoundingBox( pSwap->GetEntry(0) ).GetWidth() + aFLSize.Height();
127 : }
128 50 : nX = ::std::max(m_pPanel->GetWidthPixel() ,nX);
129 50 : m_pPanel->SetPosSizePixel(Point(0,0),Size(nX,nOutputHeight));
130 : }
131 :
132 50 : if ( m_pDetailView )
133 50 : m_pDetailView->SetPosSizePixel(Point(nX + aFLSize.Width(),0),Size(nOutputWidth - nX - aFLSize.Width(),nOutputHeight));
134 50 : }
135 :
136 0 : void OAppBorderWindow::DataChanged( const DataChangedEvent& rDCEvt )
137 : {
138 0 : Window::DataChanged( rDCEvt );
139 :
140 0 : if ( (rDCEvt.GetType() == DATACHANGED_FONTS) ||
141 0 : (rDCEvt.GetType() == DATACHANGED_DISPLAY) ||
142 0 : (rDCEvt.GetType() == DATACHANGED_FONTSUBSTITUTION) ||
143 0 : ((rDCEvt.GetType() == DATACHANGED_SETTINGS) &&
144 0 : (rDCEvt.GetFlags() & SETTINGS_STYLE)) )
145 : {
146 0 : ImplInitSettings();
147 0 : Invalidate();
148 : }
149 0 : }
150 :
151 16 : void OAppBorderWindow::ImplInitSettings()
152 : {
153 16 : const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
154 : if( true )
155 : {
156 16 : vcl::Font aFont;
157 16 : aFont = rStyleSettings.GetFieldFont();
158 16 : aFont.SetColor( rStyleSettings.GetWindowTextColor() );
159 16 : SetPointFont( aFont );
160 : }
161 :
162 : if( true )
163 : {
164 16 : SetTextColor( rStyleSettings.GetFieldTextColor() );
165 16 : SetTextFillColor();
166 : }
167 :
168 : if( true )
169 16 : SetBackground( rStyleSettings.GetDialogColor() );
170 16 : }
171 :
172 :
173 592 : OApplicationSwapWindow* OAppBorderWindow::getPanel() const
174 : {
175 592 : return static_cast< OApplicationSwapWindow* >( m_pPanel->getChildWindow() );
176 : }
177 :
178 :
179 : // class OApplicationView
180 16 : OApplicationView::OApplicationView( vcl::Window* pParent
181 : ,const Reference< XComponentContext >& _rxOrb
182 : ,IApplicationController& _rAppController
183 : ,PreviewMode _ePreviewMode
184 : ) :
185 : ODataView( pParent, _rAppController, _rxOrb, WB_DIALOGCONTROL )
186 : ,m_rAppController( _rAppController )
187 16 : ,m_eChildFocus(NONE)
188 : {
189 :
190 : try
191 : {
192 16 : m_aLocale = SvtSysLocale().GetLanguageTag().getLocale();
193 : }
194 0 : catch(Exception&)
195 : {
196 : }
197 :
198 16 : m_pWin = new OAppBorderWindow(this,_ePreviewMode);
199 16 : m_pWin->SetUniqueId(UID_APP_VIEW_BORDER_WIN);
200 16 : m_pWin->Show();
201 :
202 16 : ImplInitSettings();
203 16 : }
204 :
205 36 : OApplicationView::~OApplicationView()
206 : {
207 :
208 : {
209 12 : stopComponentListening(m_xObject);
210 12 : m_pWin->Hide();
211 12 : boost::scoped_ptr<vcl::Window> aTemp(m_pWin);
212 12 : m_pWin = NULL;
213 : }
214 24 : }
215 :
216 16 : void OApplicationView::createIconAutoMnemonics( MnemonicGenerator& _rMnemonics )
217 : {
218 16 : if ( m_pWin && m_pWin->getPanel() )
219 16 : m_pWin->getPanel()->createIconAutoMnemonics( _rMnemonics );
220 16 : }
221 :
222 16 : void OApplicationView::setTaskExternalMnemonics( MnemonicGenerator& _rMnemonics )
223 : {
224 16 : if ( m_pWin && m_pWin->getDetailView() )
225 16 : m_pWin->getDetailView()->setTaskExternalMnemonics( _rMnemonics );
226 16 : }
227 :
228 0 : void OApplicationView::DataChanged( const DataChangedEvent& rDCEvt )
229 : {
230 0 : ODataView::DataChanged( rDCEvt );
231 :
232 0 : if ( (rDCEvt.GetType() == DATACHANGED_FONTS) ||
233 0 : (rDCEvt.GetType() == DATACHANGED_DISPLAY) ||
234 0 : (rDCEvt.GetType() == DATACHANGED_FONTSUBSTITUTION) ||
235 0 : ((rDCEvt.GetType() == DATACHANGED_SETTINGS) &&
236 0 : (rDCEvt.GetFlags() & SETTINGS_STYLE)) )
237 : {
238 0 : ImplInitSettings();
239 0 : Invalidate();
240 : }
241 0 : }
242 :
243 50 : void OApplicationView::resizeDocumentView(Rectangle& _rPlayground)
244 : {
245 50 : if ( m_pWin && !_rPlayground.IsEmpty() )
246 : {
247 34 : Size aFLSize = LogicToPixel( Size( 3, 3 ), MAP_APPFONT );
248 34 : _rPlayground.Move( aFLSize.A(),aFLSize.B() );
249 34 : Size aOldSize = _rPlayground.GetSize();
250 34 : _rPlayground.SetSize( Size(aOldSize.A() - 2*aFLSize.A(), aOldSize.B() - 2*aFLSize.B()) );
251 :
252 34 : m_pWin->SetPosSizePixel(_rPlayground.TopLeft() , _rPlayground.GetSize() );
253 : }
254 : // just for completeness: there is no space left, we occupied it all ...
255 50 : _rPlayground.SetPos( _rPlayground.BottomRight() );
256 50 : _rPlayground.SetSize( Size( 0, 0 ) );
257 50 : }
258 :
259 234 : bool OApplicationView::PreNotify( NotifyEvent& rNEvt )
260 : {
261 234 : switch(rNEvt.GetType())
262 : {
263 : case EVENT_GETFOCUS:
264 124 : if( m_pWin && getPanel() && getPanel()->HasChildPathFocus() )
265 42 : m_eChildFocus = PANELSWAP;
266 82 : else if ( m_pWin && getDetailView() && getDetailView()->HasChildPathFocus() )
267 0 : m_eChildFocus = DETAIL;
268 : else
269 82 : m_eChildFocus = NONE;
270 124 : break;
271 : case EVENT_KEYINPUT:
272 : {
273 0 : const KeyEvent* pKeyEvent = rNEvt.GetKeyEvent();
274 : // give the pane the chance to intercept mnemonic accelerators
275 : // #i34790#
276 0 : if ( getPanel() && getPanel()->interceptKeyInput( *pKeyEvent ) )
277 0 : return true;
278 : // and ditto the detail view
279 : // #i72799#
280 0 : if ( getDetailView() && getDetailView()->interceptKeyInput( *pKeyEvent ) )
281 0 : return true;
282 : }
283 0 : break;
284 : }
285 :
286 234 : return ODataView::PreNotify(rNEvt);
287 : }
288 :
289 0 : IClipboardTest* OApplicationView::getActiveChild() const
290 : {
291 0 : IClipboardTest* pTest = NULL;
292 0 : if ( DETAIL == m_eChildFocus )
293 0 : pTest = getDetailView();
294 0 : return pTest;
295 : }
296 :
297 0 : bool OApplicationView::isCopyAllowed()
298 : {
299 0 : IClipboardTest* pTest = getActiveChild();
300 0 : return pTest && pTest->isCopyAllowed();
301 : }
302 :
303 0 : bool OApplicationView::isCutAllowed()
304 : {
305 0 : IClipboardTest* pTest = getActiveChild();
306 0 : return pTest && pTest->isCutAllowed();
307 : }
308 :
309 0 : bool OApplicationView::isPasteAllowed()
310 : {
311 0 : IClipboardTest* pTest = getActiveChild();
312 0 : return pTest && pTest->isPasteAllowed();
313 : }
314 :
315 0 : void OApplicationView::copy()
316 : {
317 0 : IClipboardTest* pTest = getActiveChild();
318 0 : if ( pTest )
319 0 : pTest->copy();
320 0 : }
321 :
322 0 : void OApplicationView::cut()
323 : {
324 0 : IClipboardTest* pTest = getActiveChild();
325 0 : if ( pTest )
326 0 : pTest->cut();
327 0 : }
328 :
329 0 : void OApplicationView::paste()
330 : {
331 0 : IClipboardTest* pTest = getActiveChild();
332 0 : if ( pTest )
333 0 : pTest->paste();
334 0 : }
335 :
336 0 : OUString OApplicationView::getQualifiedName( SvTreeListEntry* _pEntry ) const
337 : {
338 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
339 0 : return getDetailView()->getQualifiedName( _pEntry );
340 : }
341 :
342 0 : bool OApplicationView::isLeaf(SvTreeListEntry* _pEntry) const
343 : {
344 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
345 0 : return getDetailView()->isLeaf(_pEntry);
346 : }
347 :
348 36 : bool OApplicationView::isALeafSelected() const
349 : {
350 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
351 36 : return getDetailView()->isALeafSelected();
352 : }
353 :
354 0 : void OApplicationView::selectAll()
355 : {
356 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
357 0 : getDetailView()->selectAll();
358 0 : }
359 :
360 0 : bool OApplicationView::isSortUp() const
361 : {
362 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
363 0 : return getDetailView()->isSortUp();
364 : }
365 :
366 0 : void OApplicationView::sortDown()
367 : {
368 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
369 0 : getDetailView()->sortDown();
370 0 : }
371 :
372 0 : void OApplicationView::sortUp()
373 : {
374 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
375 0 : getDetailView()->sortUp();
376 0 : }
377 :
378 24 : bool OApplicationView::isFilled() const
379 : {
380 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
381 24 : return getDetailView()->isFilled();
382 : }
383 :
384 336 : ElementType OApplicationView::getElementType() const
385 : {
386 : OSL_ENSURE(m_pWin && getDetailView() && getPanel(),"Detail view is NULL! -> GPF");
387 336 : return getDetailView()->HasChildPathFocus() ? getDetailView()->getElementType() : getPanel()->getElementType();
388 : }
389 :
390 216 : sal_Int32 OApplicationView::getSelectionCount()
391 : {
392 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
393 216 : return getDetailView()->getSelectionCount();
394 : }
395 :
396 36 : sal_Int32 OApplicationView::getElementCount()
397 : {
398 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
399 36 : return getDetailView()->getElementCount();
400 : }
401 :
402 0 : void OApplicationView::getSelectionElementNames( ::std::vector< OUString>& _rNames ) const
403 : {
404 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
405 0 : getDetailView()->getSelectionElementNames( _rNames );
406 0 : }
407 :
408 0 : void OApplicationView::describeCurrentSelectionForControl( const Control& _rControl, Sequence< NamedDatabaseObject >& _out_rSelectedObjects )
409 : {
410 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
411 0 : getDetailView()->describeCurrentSelectionForControl( _rControl, _out_rSelectedObjects );
412 0 : }
413 :
414 0 : void OApplicationView::describeCurrentSelectionForType( const ElementType _eType, Sequence< NamedDatabaseObject >& _out_rSelectedObjects )
415 : {
416 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
417 0 : getDetailView()->describeCurrentSelectionForType( _eType, _out_rSelectedObjects );
418 0 : }
419 :
420 0 : void OApplicationView::selectElements(const Sequence< OUString>& _aNames)
421 : {
422 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
423 0 : getDetailView()->selectElements( _aNames );
424 0 : }
425 :
426 0 : SvTreeListEntry* OApplicationView::elementAdded(ElementType eType,const OUString& _rName, const Any& _rObject )
427 : {
428 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
429 0 : return getDetailView()->elementAdded(eType,_rName,_rObject);
430 : }
431 :
432 0 : void OApplicationView::elementRemoved(ElementType eType,const OUString& _rName )
433 : {
434 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
435 0 : getDetailView()->elementRemoved(eType,_rName);
436 0 : }
437 :
438 0 : void OApplicationView::elementReplaced(ElementType _eType
439 : ,const OUString& _rOldName
440 : ,const OUString& _rNewName )
441 : {
442 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
443 0 : getDetailView()->elementReplaced(_eType, _rOldName, _rNewName );
444 0 : }
445 :
446 0 : void OApplicationView::clearPages(bool _bTaskAlso)
447 : {
448 : OSL_ENSURE(m_pWin && getDetailView() && getPanel(),"Detail view is NULL! -> GPF");
449 0 : getPanel()->clearSelection();
450 0 : getDetailView()->clearPages(_bTaskAlso);
451 0 : }
452 :
453 6 : void OApplicationView::selectContainer(ElementType _eType)
454 : {
455 : OSL_ENSURE(m_pWin && getPanel(),"Detail view is NULL! -> GPF");
456 6 : WaitObject aWO(this);
457 6 : getPanel()->selectContainer(_eType);
458 6 : }
459 :
460 0 : SvTreeListEntry* OApplicationView::getEntry( const Point& _aPosPixel ) const
461 : {
462 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
463 0 : return getDetailView()->getEntry(_aPosPixel);
464 : }
465 :
466 54 : PreviewMode OApplicationView::getPreviewMode()
467 : {
468 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
469 54 : return getDetailView()->getPreviewMode();
470 : }
471 :
472 0 : bool OApplicationView::isPreviewEnabled()
473 : {
474 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
475 0 : return getDetailView()->isPreviewEnabled();
476 : }
477 :
478 0 : void OApplicationView::switchPreview(PreviewMode _eMode)
479 : {
480 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
481 0 : getDetailView()->switchPreview(_eMode);
482 0 : }
483 :
484 12 : void OApplicationView::showPreview(const Reference< XContent >& _xContent)
485 : {
486 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
487 12 : stopComponentListening(m_xObject);
488 12 : m_xObject = NULL;
489 12 : getDetailView()->showPreview(_xContent);
490 12 : }
491 :
492 0 : void OApplicationView::showPreview( const OUString& _sDataSourceName,
493 : const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection>& _xConnection,
494 : const OUString& _sName,
495 : bool _bTable)
496 : {
497 : OSL_ENSURE(m_pWin && getDetailView(),"Detail view is NULL! -> GPF");
498 0 : if ( isPreviewEnabled() )
499 : {
500 0 : stopComponentListening(m_xObject);
501 0 : m_xObject = NULL;
502 : try
503 : {
504 0 : Reference<XNameAccess> xNameAccess;
505 0 : if ( _bTable )
506 : {
507 0 : Reference<XTablesSupplier> xSup(_xConnection,UNO_QUERY);
508 0 : if ( xSup.is() )
509 0 : xNameAccess.set(xSup->getTables(),UNO_QUERY);
510 : }
511 : else
512 : {
513 0 : Reference<XQueriesSupplier> xSup(_xConnection,UNO_QUERY);
514 0 : if ( xSup.is() )
515 0 : xNameAccess.set(xSup->getQueries(),UNO_QUERY);
516 : }
517 0 : if ( xNameAccess.is() && xNameAccess->hasByName(_sName) )
518 0 : m_xObject.set(xNameAccess->getByName(_sName),UNO_QUERY);
519 : }
520 0 : catch( const Exception& )
521 : {
522 : DBG_UNHANDLED_EXCEPTION();
523 : }
524 0 : if ( m_xObject.is() )
525 0 : startComponentListening(m_xObject);
526 0 : getDetailView()->showPreview(_sDataSourceName,_sName,_bTable);
527 : }
528 0 : }
529 :
530 24 : void OApplicationView::GetFocus()
531 : {
532 24 : if ( m_eChildFocus == NONE && m_pWin )
533 : {
534 14 : m_pWin->GrabFocus();
535 : }
536 24 : }
537 :
538 0 : void OApplicationView::_disposing( const ::com::sun::star::lang::EventObject& /*_rSource*/ )
539 : {
540 0 : if ( m_pWin && getDetailView() )
541 0 : showPreview(NULL);
542 0 : }
543 :
544 16 : void OApplicationView::ImplInitSettings()
545 : {
546 16 : const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
547 : if( true )
548 : {
549 16 : vcl::Font aFont;
550 16 : aFont = rStyleSettings.GetFieldFont();
551 16 : aFont.SetColor( rStyleSettings.GetWindowTextColor() );
552 16 : SetPointFont( aFont );
553 : }
554 :
555 : if( true )
556 : {
557 16 : SetTextColor( rStyleSettings.GetFieldTextColor() );
558 16 : SetTextFillColor();
559 : }
560 :
561 : if( true )
562 16 : SetBackground( rStyleSettings.GetFieldColor() );
563 88 : }
564 :
565 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|