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