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 <accessibledialogcontrolshape.hxx>
21 : #include <baside3.hxx>
22 : #include <dlgeddef.hxx>
23 : #include <dlgedview.hxx>
24 : #include <dlgedobj.hxx>
25 : #include <com/sun/star/accessibility/AccessibleEventId.hpp>
26 : #include <com/sun/star/accessibility/AccessibleRole.hpp>
27 : #include <com/sun/star/accessibility/AccessibleStateType.hpp>
28 : #include <unotools/accessiblestatesethelper.hxx>
29 : #include <unotools/accessiblerelationsethelper.hxx>
30 : #include <toolkit/awt/vclxfont.hxx>
31 : #include <toolkit/helper/externallock.hxx>
32 : #include <toolkit/helper/convert.hxx>
33 : #include <toolkit/helper/vclunohelper.hxx>
34 : #include <vcl/svapp.hxx>
35 :
36 : namespace basctl
37 : {
38 :
39 : using namespace ::com::sun::star;
40 : using namespace ::com::sun::star::uno;
41 : using namespace ::com::sun::star::lang;
42 : using namespace ::com::sun::star::beans;
43 : using namespace ::com::sun::star::accessibility;
44 : using namespace ::comphelper;
45 :
46 :
47 : // -----------------------------------------------------------------------------
48 : // class AccessibleDialogControlShape
49 : // -----------------------------------------------------------------------------
50 :
51 0 : AccessibleDialogControlShape::AccessibleDialogControlShape (DialogWindow* pDialogWindow, DlgEdObj* pDlgEdObj)
52 : :AccessibleExtendedComponentHelper_BASE( new VCLExternalSolarLock() )
53 : ,m_pDialogWindow( pDialogWindow )
54 0 : ,m_pDlgEdObj( pDlgEdObj )
55 : {
56 0 : m_pExternalLock = static_cast< VCLExternalSolarLock* >( getExternalLock() );
57 :
58 0 : if ( m_pDlgEdObj )
59 0 : m_xControlModel = Reference< XPropertySet >( m_pDlgEdObj->GetUnoControlModel(), UNO_QUERY );
60 :
61 0 : if ( m_xControlModel.is() )
62 0 : m_xControlModel->addPropertyChangeListener( OUString(), static_cast< beans::XPropertyChangeListener* >( this ) );
63 :
64 0 : m_bFocused = IsFocused();
65 0 : m_bSelected = IsSelected();
66 0 : m_aBounds = GetBounds();
67 0 : }
68 :
69 : // -----------------------------------------------------------------------------
70 :
71 0 : AccessibleDialogControlShape::~AccessibleDialogControlShape()
72 : {
73 0 : if ( m_xControlModel.is() )
74 0 : m_xControlModel->removePropertyChangeListener( OUString(), static_cast< beans::XPropertyChangeListener* >( this ) );
75 :
76 0 : delete m_pExternalLock;
77 0 : m_pExternalLock = NULL;
78 0 : }
79 :
80 : // -----------------------------------------------------------------------------
81 :
82 0 : bool AccessibleDialogControlShape::IsFocused()
83 : {
84 0 : bool bFocused = false;
85 0 : if ( m_pDialogWindow )
86 : {
87 0 : SdrView& rView = m_pDialogWindow->GetView();
88 0 : if (rView.IsObjMarked(m_pDlgEdObj) && rView.GetMarkedObjectList().GetMarkCount() == 1)
89 0 : bFocused = true;
90 : }
91 :
92 0 : return bFocused;
93 : }
94 :
95 : // -----------------------------------------------------------------------------
96 :
97 0 : bool AccessibleDialogControlShape::IsSelected()
98 : {
99 0 : if ( m_pDialogWindow )
100 0 : return m_pDialogWindow->GetView().IsObjMarked(m_pDlgEdObj);
101 0 : return false;
102 : }
103 :
104 : // -----------------------------------------------------------------------------
105 :
106 0 : void AccessibleDialogControlShape::SetFocused( bool bFocused )
107 : {
108 0 : if ( m_bFocused != bFocused )
109 : {
110 0 : Any aOldValue, aNewValue;
111 0 : if ( m_bFocused )
112 0 : aOldValue <<= AccessibleStateType::FOCUSED;
113 : else
114 0 : aNewValue <<= AccessibleStateType::FOCUSED;
115 0 : m_bFocused = bFocused;
116 0 : NotifyAccessibleEvent( AccessibleEventId::STATE_CHANGED, aOldValue, aNewValue );
117 : }
118 0 : }
119 :
120 : // -----------------------------------------------------------------------------
121 :
122 0 : void AccessibleDialogControlShape::SetSelected( bool bSelected )
123 : {
124 0 : if ( m_bSelected != bSelected )
125 : {
126 0 : Any aOldValue, aNewValue;
127 0 : if ( m_bSelected )
128 0 : aOldValue <<= AccessibleStateType::SELECTED;
129 : else
130 0 : aNewValue <<= AccessibleStateType::SELECTED;
131 0 : m_bSelected = bSelected;
132 0 : NotifyAccessibleEvent( AccessibleEventId::STATE_CHANGED, aOldValue, aNewValue );
133 : }
134 0 : }
135 :
136 : // -----------------------------------------------------------------------------
137 :
138 0 : awt::Rectangle AccessibleDialogControlShape::GetBounds()
139 : {
140 0 : awt::Rectangle aBounds( 0, 0, 0, 0 );
141 0 : if ( m_pDlgEdObj )
142 : {
143 : // get the bounding box of the shape in logic units
144 0 : Rectangle aRect = m_pDlgEdObj->GetSnapRect();
145 :
146 0 : if ( m_pDialogWindow )
147 : {
148 : // transform coordinates relative to the parent
149 0 : MapMode aMap = m_pDialogWindow->GetMapMode();
150 0 : Point aOrg = aMap.GetOrigin();
151 0 : aRect.Move( aOrg.X(), aOrg.Y() );
152 :
153 : // convert logic units to pixel
154 0 : aRect = m_pDialogWindow->LogicToPixel( aRect, MapMode(MAP_100TH_MM) );
155 :
156 : // clip the shape's bounding box with the bounding box of its parent
157 0 : Rectangle aParentRect( Point( 0, 0 ), m_pDialogWindow->GetSizePixel() );
158 0 : aRect = aRect.GetIntersection( aParentRect );
159 0 : aBounds = AWTRectangle( aRect );
160 : }
161 : }
162 :
163 0 : return aBounds;
164 : }
165 :
166 : // -----------------------------------------------------------------------------
167 :
168 0 : void AccessibleDialogControlShape::SetBounds( const awt::Rectangle& aBounds )
169 : {
170 0 : if ( m_aBounds.X != aBounds.X || m_aBounds.Y != aBounds.Y || m_aBounds.Width != aBounds.Width || m_aBounds.Height != aBounds.Height )
171 : {
172 0 : m_aBounds = aBounds;
173 0 : NotifyAccessibleEvent( AccessibleEventId::BOUNDRECT_CHANGED, Any(), Any() );
174 : }
175 0 : }
176 :
177 : // -----------------------------------------------------------------------------
178 :
179 0 : Window* AccessibleDialogControlShape::GetWindow() const
180 : {
181 0 : Window* pWindow = NULL;
182 0 : if ( m_pDlgEdObj )
183 : {
184 0 : Reference< awt::XControl > xControl( m_pDlgEdObj->GetControl(), UNO_QUERY );
185 0 : if ( xControl.is() )
186 0 : pWindow = VCLUnoHelper::GetWindow( xControl->getPeer() );
187 : }
188 :
189 0 : return pWindow;
190 : }
191 :
192 : // -----------------------------------------------------------------------------
193 :
194 0 : OUString AccessibleDialogControlShape::GetModelStringProperty( const sal_Char* pPropertyName )
195 : {
196 0 : OUString sReturn;
197 :
198 : try
199 : {
200 0 : if ( m_xControlModel.is() )
201 : {
202 0 : OUString sPropertyName( OUString::createFromAscii( pPropertyName ) );
203 0 : Reference< XPropertySetInfo > xInfo = m_xControlModel->getPropertySetInfo();
204 0 : if ( xInfo.is() && xInfo->hasPropertyByName( sPropertyName ) )
205 0 : m_xControlModel->getPropertyValue( sPropertyName ) >>= sReturn;
206 : }
207 : }
208 0 : catch ( const Exception& )
209 : {
210 : OSL_FAIL( "AccessibleDialogControlShape::GetModelStringProperty: caught an exception!" );
211 : }
212 :
213 0 : return sReturn;
214 : }
215 :
216 : // -----------------------------------------------------------------------------
217 :
218 0 : void AccessibleDialogControlShape::FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet )
219 : {
220 0 : rStateSet.AddState( AccessibleStateType::ENABLED );
221 :
222 0 : rStateSet.AddState( AccessibleStateType::VISIBLE );
223 :
224 0 : rStateSet.AddState( AccessibleStateType::SHOWING );
225 :
226 0 : rStateSet.AddState( AccessibleStateType::FOCUSABLE );
227 :
228 0 : if ( IsFocused() )
229 0 : rStateSet.AddState( AccessibleStateType::FOCUSED );
230 :
231 0 : rStateSet.AddState( AccessibleStateType::SELECTABLE );
232 :
233 0 : if ( IsSelected() )
234 0 : rStateSet.AddState( AccessibleStateType::SELECTED );
235 :
236 0 : rStateSet.AddState( AccessibleStateType::RESIZABLE );
237 0 : }
238 :
239 : // -----------------------------------------------------------------------------
240 : // OCommonAccessibleComponent
241 : // -----------------------------------------------------------------------------
242 :
243 0 : awt::Rectangle AccessibleDialogControlShape::implGetBounds() throw (RuntimeException)
244 : {
245 0 : return GetBounds();
246 : }
247 :
248 : // -----------------------------------------------------------------------------
249 : // XInterface
250 : // -----------------------------------------------------------------------------
251 :
252 0 : IMPLEMENT_FORWARD_XINTERFACE2( AccessibleDialogControlShape, AccessibleExtendedComponentHelper_BASE, AccessibleDialogControlShape_BASE )
253 :
254 : // -----------------------------------------------------------------------------
255 : // XTypeProvider
256 : // -----------------------------------------------------------------------------
257 :
258 0 : IMPLEMENT_FORWARD_XTYPEPROVIDER2( AccessibleDialogControlShape, AccessibleExtendedComponentHelper_BASE, AccessibleDialogControlShape_BASE )
259 :
260 : // -----------------------------------------------------------------------------
261 : // XComponent
262 : // -----------------------------------------------------------------------------
263 :
264 0 : void AccessibleDialogControlShape::disposing()
265 : {
266 0 : AccessibleExtendedComponentHelper_BASE::disposing();
267 :
268 0 : m_pDialogWindow = NULL;
269 0 : m_pDlgEdObj = NULL;
270 :
271 0 : if ( m_xControlModel.is() )
272 0 : m_xControlModel->removePropertyChangeListener( OUString(), static_cast< beans::XPropertyChangeListener* >( this ) );
273 0 : m_xControlModel.clear();
274 0 : }
275 :
276 : // -----------------------------------------------------------------------------
277 : // XEventListener
278 : // -----------------------------------------------------------------------------
279 :
280 0 : void AccessibleDialogControlShape::disposing( const lang::EventObject& ) throw (RuntimeException)
281 : {
282 0 : if ( m_xControlModel.is() )
283 0 : m_xControlModel->removePropertyChangeListener( OUString(), static_cast< beans::XPropertyChangeListener* >( this ) );
284 0 : m_xControlModel.clear();
285 0 : }
286 :
287 : // -----------------------------------------------------------------------------
288 : // XPropertyChangeListener
289 : // -----------------------------------------------------------------------------
290 :
291 0 : void AccessibleDialogControlShape::propertyChange( const beans::PropertyChangeEvent& rEvent ) throw (RuntimeException)
292 : {
293 0 : if ( rEvent.PropertyName == DLGED_PROP_NAME )
294 : {
295 0 : NotifyAccessibleEvent( AccessibleEventId::NAME_CHANGED, rEvent.OldValue, rEvent.NewValue );
296 : }
297 0 : else if ( rEvent.PropertyName == DLGED_PROP_POSITIONX ||
298 0 : rEvent.PropertyName == DLGED_PROP_POSITIONY ||
299 0 : rEvent.PropertyName == DLGED_PROP_WIDTH ||
300 0 : rEvent.PropertyName == DLGED_PROP_HEIGHT )
301 : {
302 0 : SetBounds( GetBounds() );
303 : }
304 0 : else if ( rEvent.PropertyName == DLGED_PROP_BACKGROUNDCOLOR ||
305 0 : rEvent.PropertyName == DLGED_PROP_TEXTCOLOR ||
306 0 : rEvent.PropertyName == DLGED_PROP_TEXTLINECOLOR )
307 : {
308 0 : NotifyAccessibleEvent( AccessibleEventId::VISIBLE_DATA_CHANGED, Any(), Any() );
309 : }
310 0 : }
311 :
312 : // -----------------------------------------------------------------------------
313 : // XServiceInfo
314 : // -----------------------------------------------------------------------------
315 :
316 0 : OUString AccessibleDialogControlShape::getImplementationName() throw (RuntimeException)
317 : {
318 0 : return OUString( "com.sun.star.comp.basctl.AccessibleShape" );
319 : }
320 :
321 : // -----------------------------------------------------------------------------
322 :
323 0 : sal_Bool AccessibleDialogControlShape::supportsService( const OUString& rServiceName ) throw (RuntimeException)
324 : {
325 0 : Sequence< OUString > aNames( getSupportedServiceNames() );
326 0 : const OUString* pNames = aNames.getConstArray();
327 0 : const OUString* pEnd = pNames + aNames.getLength();
328 0 : for ( ; pNames != pEnd && !pNames->equals( rServiceName ); ++pNames )
329 : ;
330 :
331 0 : return pNames != pEnd;
332 : }
333 :
334 : // -----------------------------------------------------------------------------
335 :
336 0 : Sequence< OUString > AccessibleDialogControlShape::getSupportedServiceNames() throw (RuntimeException)
337 : {
338 0 : Sequence< OUString > aNames(1);
339 0 : aNames[0] = "com.sun.star.drawing.AccessibleShape" ;
340 0 : return aNames;
341 : }
342 :
343 : // -----------------------------------------------------------------------------
344 : // XAccessible
345 : // -----------------------------------------------------------------------------
346 :
347 0 : Reference< XAccessibleContext > AccessibleDialogControlShape::getAccessibleContext( ) throw (RuntimeException)
348 : {
349 0 : OExternalLockGuard aGuard( this );
350 :
351 0 : return this;
352 : }
353 :
354 : // -----------------------------------------------------------------------------
355 : // XAccessibleContext
356 : // -----------------------------------------------------------------------------
357 :
358 0 : sal_Int32 AccessibleDialogControlShape::getAccessibleChildCount() throw (RuntimeException)
359 : {
360 0 : OExternalLockGuard aGuard( this );
361 :
362 0 : return 0;
363 : }
364 :
365 : // -----------------------------------------------------------------------------
366 :
367 0 : Reference< XAccessible > AccessibleDialogControlShape::getAccessibleChild( sal_Int32 i ) throw (IndexOutOfBoundsException, RuntimeException)
368 : {
369 0 : OExternalLockGuard aGuard( this );
370 :
371 0 : if ( i < 0 || i >= getAccessibleChildCount() )
372 0 : throw IndexOutOfBoundsException();
373 :
374 0 : return Reference< XAccessible >();
375 : }
376 :
377 : // -----------------------------------------------------------------------------
378 :
379 0 : Reference< XAccessible > AccessibleDialogControlShape::getAccessibleParent( ) throw (RuntimeException)
380 : {
381 0 : OExternalLockGuard aGuard( this );
382 :
383 0 : Reference< XAccessible > xParent;
384 0 : if ( m_pDialogWindow )
385 0 : xParent = m_pDialogWindow->GetAccessible();
386 :
387 0 : return xParent;
388 : }
389 :
390 : // -----------------------------------------------------------------------------
391 :
392 0 : sal_Int32 AccessibleDialogControlShape::getAccessibleIndexInParent( ) throw (RuntimeException)
393 : {
394 0 : OExternalLockGuard aGuard( this );
395 :
396 0 : sal_Int32 nIndexInParent = -1;
397 0 : Reference< XAccessible > xParent( getAccessibleParent() );
398 0 : if ( xParent.is() )
399 : {
400 0 : Reference< XAccessibleContext > xParentContext( xParent->getAccessibleContext() );
401 0 : if ( xParentContext.is() )
402 : {
403 0 : for ( sal_Int32 i = 0, nCount = xParentContext->getAccessibleChildCount(); i < nCount; ++i )
404 : {
405 0 : Reference< XAccessible > xChild( xParentContext->getAccessibleChild( i ) );
406 0 : if ( xChild.is() )
407 : {
408 0 : Reference< XAccessibleContext > xChildContext = xChild->getAccessibleContext();
409 0 : if ( xChildContext == (XAccessibleContext*)this )
410 : {
411 0 : nIndexInParent = i;
412 : break;
413 0 : }
414 : }
415 0 : }
416 0 : }
417 : }
418 :
419 0 : return nIndexInParent;
420 : }
421 :
422 : // -----------------------------------------------------------------------------
423 :
424 0 : sal_Int16 AccessibleDialogControlShape::getAccessibleRole( ) throw (RuntimeException)
425 : {
426 0 : OExternalLockGuard aGuard( this );
427 :
428 0 : return AccessibleRole::SHAPE;
429 : }
430 :
431 : // -----------------------------------------------------------------------------
432 :
433 0 : OUString AccessibleDialogControlShape::getAccessibleDescription( ) throw (RuntimeException)
434 : {
435 0 : OExternalLockGuard aGuard( this );
436 :
437 0 : return GetModelStringProperty( "HelpText" );
438 : }
439 :
440 : // -----------------------------------------------------------------------------
441 :
442 0 : OUString AccessibleDialogControlShape::getAccessibleName( ) throw (RuntimeException)
443 : {
444 0 : OExternalLockGuard aGuard( this );
445 :
446 0 : return GetModelStringProperty( "Name" );
447 : }
448 :
449 : // -----------------------------------------------------------------------------
450 :
451 0 : Reference< XAccessibleRelationSet > AccessibleDialogControlShape::getAccessibleRelationSet( ) throw (RuntimeException)
452 : {
453 0 : OExternalLockGuard aGuard( this );
454 :
455 0 : utl::AccessibleRelationSetHelper* pRelationSetHelper = new utl::AccessibleRelationSetHelper;
456 0 : Reference< XAccessibleRelationSet > xSet = pRelationSetHelper;
457 0 : return xSet;
458 : }
459 :
460 : // -----------------------------------------------------------------------------
461 :
462 0 : Reference< XAccessibleStateSet > AccessibleDialogControlShape::getAccessibleStateSet( ) throw (RuntimeException)
463 : {
464 0 : OExternalLockGuard aGuard( this );
465 :
466 0 : utl::AccessibleStateSetHelper* pStateSetHelper = new utl::AccessibleStateSetHelper;
467 0 : Reference< XAccessibleStateSet > xSet = pStateSetHelper;
468 :
469 0 : if ( !rBHelper.bDisposed && !rBHelper.bInDispose )
470 : {
471 0 : FillAccessibleStateSet( *pStateSetHelper );
472 : }
473 : else
474 : {
475 0 : pStateSetHelper->AddState( AccessibleStateType::DEFUNC );
476 : }
477 :
478 0 : return xSet;
479 : }
480 :
481 : // -----------------------------------------------------------------------------
482 :
483 0 : Locale AccessibleDialogControlShape::getLocale( ) throw (IllegalAccessibleComponentStateException, RuntimeException)
484 : {
485 0 : OExternalLockGuard aGuard( this );
486 :
487 0 : return Application::GetSettings().GetLanguageTag().getLocale();
488 : }
489 :
490 : // -----------------------------------------------------------------------------
491 : // XAccessibleComponent
492 : // -----------------------------------------------------------------------------
493 :
494 0 : Reference< XAccessible > AccessibleDialogControlShape::getAccessibleAtPoint( const awt::Point& ) throw (RuntimeException)
495 : {
496 0 : OExternalLockGuard aGuard( this );
497 :
498 0 : return Reference< XAccessible >();
499 : }
500 :
501 : // -----------------------------------------------------------------------------
502 :
503 0 : void AccessibleDialogControlShape::grabFocus( ) throw (RuntimeException)
504 : {
505 : // no focus for shapes
506 0 : }
507 :
508 : // -----------------------------------------------------------------------------
509 :
510 0 : sal_Int32 AccessibleDialogControlShape::getForeground( ) throw (RuntimeException)
511 : {
512 0 : OExternalLockGuard aGuard( this );
513 :
514 0 : sal_Int32 nColor = 0;
515 0 : Window* pWindow = GetWindow();
516 0 : if ( pWindow )
517 : {
518 0 : if ( pWindow->IsControlForeground() )
519 0 : nColor = pWindow->GetControlForeground().GetColor();
520 : else
521 : {
522 0 : Font aFont;
523 0 : if ( pWindow->IsControlFont() )
524 0 : aFont = pWindow->GetControlFont();
525 : else
526 0 : aFont = pWindow->GetFont();
527 0 : nColor = aFont.GetColor().GetColor();
528 : }
529 : }
530 :
531 0 : return nColor;
532 : }
533 :
534 : // -----------------------------------------------------------------------------
535 :
536 0 : sal_Int32 AccessibleDialogControlShape::getBackground( ) throw (RuntimeException)
537 : {
538 0 : OExternalLockGuard aGuard( this );
539 :
540 0 : sal_Int32 nColor = 0;
541 0 : Window* pWindow = GetWindow();
542 0 : if ( pWindow )
543 : {
544 0 : if ( pWindow->IsControlBackground() )
545 0 : nColor = pWindow->GetControlBackground().GetColor();
546 : else
547 0 : nColor = pWindow->GetBackground().GetColor().GetColor();
548 : }
549 :
550 0 : return nColor;
551 : }
552 :
553 : // -----------------------------------------------------------------------------
554 : // XAccessibleExtendedComponent
555 : // -----------------------------------------------------------------------------
556 :
557 0 : Reference< awt::XFont > AccessibleDialogControlShape::getFont( ) throw (RuntimeException)
558 : {
559 0 : OExternalLockGuard aGuard( this );
560 :
561 0 : Reference< awt::XFont > xFont;
562 0 : Window* pWindow = GetWindow();
563 0 : if ( pWindow )
564 : {
565 0 : Reference< awt::XDevice > xDev( pWindow->GetComponentInterface(), UNO_QUERY );
566 0 : if ( xDev.is() )
567 : {
568 0 : Font aFont;
569 0 : if ( pWindow->IsControlFont() )
570 0 : aFont = pWindow->GetControlFont();
571 : else
572 0 : aFont = pWindow->GetFont();
573 0 : VCLXFont* pVCLXFont = new VCLXFont;
574 0 : pVCLXFont->Init( *xDev.get(), aFont );
575 0 : xFont = pVCLXFont;
576 0 : }
577 : }
578 :
579 0 : return xFont;
580 : }
581 :
582 : // -----------------------------------------------------------------------------
583 :
584 0 : OUString AccessibleDialogControlShape::getTitledBorderText( ) throw (RuntimeException)
585 : {
586 0 : OExternalLockGuard aGuard( this );
587 :
588 0 : return OUString();
589 : }
590 :
591 : // -----------------------------------------------------------------------------
592 :
593 0 : OUString AccessibleDialogControlShape::getToolTipText( ) throw (RuntimeException)
594 : {
595 0 : OExternalLockGuard aGuard( this );
596 :
597 0 : OUString sText;
598 0 : Window* pWindow = GetWindow();
599 0 : if ( pWindow )
600 0 : sText = pWindow->GetQuickHelpText();
601 :
602 0 : return sText;
603 : }
604 :
605 : // -----------------------------------------------------------------------------
606 :
607 : } // namespace basctl
608 :
609 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|