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 :
21 : #include "svx/fmresids.hrc"
22 : #include "fmexpl.hrc"
23 : #include "fmexpl.hxx"
24 :
25 : #include "fmhelp.hrc"
26 : #include <svx/fmglob.hxx>
27 : #include "fmservs.hxx"
28 : #include <svx/fmmodel.hxx>
29 : #include "fmexch.hxx"
30 : #include "fmundo.hxx"
31 : #include "fmpgeimp.hxx"
32 :
33 : #include <svx/svxids.hrc>
34 :
35 : #include "fmprop.hrc"
36 : #include <svx/dialmgr.hxx>
37 : #include "svx/svditer.hxx"
38 : #include <svx/svdouno.hxx>
39 : #include <svx/svdobj.hxx>
40 : #include <vcl/msgbox.hxx>
41 : #include <sfx2/dispatch.hxx>
42 : #include <sfx2/objsh.hxx>
43 : #include <sfx2/viewsh.hxx>
44 : #include <sfx2/viewfrm.hxx>
45 : #include <com/sun/star/lang/XServiceInfo.hpp>
46 : #include <com/sun/star/form/FormComponentType.hpp>
47 : #include <com/sun/star/awt/XTabControllerModel.hpp>
48 : #include <vcl/menu.hxx>
49 : #include <sfx2/objitem.hxx>
50 : #include <sfx2/request.hxx>
51 : #include <tools/shl.hxx>
52 :
53 : #include <vcl/wrkwin.hxx>
54 : #include <svx/fmshell.hxx>
55 : #include "fmshimp.hxx"
56 : #include <svx/fmpage.hxx>
57 : #include <com/sun/star/io/XPersistObject.hpp>
58 : #include <com/sun/star/script/XEventAttacherManager.hpp>
59 : #include <com/sun/star/sdb/CommandType.hpp>
60 : #include <com/sun/star/beans/PropertyAttribute.hpp>
61 : #include <comphelper/property.hxx>
62 : #include <comphelper/processfactory.hxx>
63 : #include <osl/diagnose.h>
64 :
65 : using namespace ::svxform;
66 : using namespace ::com::sun::star::uno;
67 : using namespace ::com::sun::star::sdbc;
68 : using namespace ::com::sun::star::sdb;
69 : using namespace ::com::sun::star::form;
70 : using namespace ::com::sun::star::beans;
71 : using namespace ::com::sun::star::lang;
72 : using namespace ::com::sun::star::container;
73 :
74 :
75 : // class FmNavInsertedHint
76 :
77 0 : TYPEINIT1( FmNavInsertedHint, SfxHint );
78 :
79 0 : FmNavInsertedHint::FmNavInsertedHint( FmEntryData* pInsertedEntryData, sal_uInt32 nRelPos )
80 : :pEntryData( pInsertedEntryData )
81 0 : ,nPos( nRelPos )
82 :
83 : {
84 0 : }
85 :
86 :
87 0 : FmNavInsertedHint::~FmNavInsertedHint()
88 : {
89 0 : }
90 :
91 :
92 :
93 : // class FmNavInsertedHint
94 :
95 0 : TYPEINIT1( FmNavModelReplacedHint, SfxHint );
96 :
97 0 : FmNavModelReplacedHint::FmNavModelReplacedHint( FmEntryData* pAffectedEntryData )
98 0 : :pEntryData( pAffectedEntryData )
99 : {
100 0 : }
101 :
102 :
103 0 : FmNavModelReplacedHint::~FmNavModelReplacedHint()
104 : {
105 0 : }
106 :
107 :
108 : // class FmNavRemovedHint
109 :
110 0 : TYPEINIT1( FmNavRemovedHint, SfxHint );
111 :
112 0 : FmNavRemovedHint::FmNavRemovedHint( FmEntryData* pRemovedEntryData )
113 0 : :pEntryData( pRemovedEntryData )
114 : {
115 0 : }
116 :
117 :
118 0 : FmNavRemovedHint::~FmNavRemovedHint()
119 : {
120 0 : }
121 :
122 :
123 :
124 : // class FmNavNameChangedHint
125 :
126 0 : TYPEINIT1( FmNavNameChangedHint, SfxHint );
127 :
128 0 : FmNavNameChangedHint::FmNavNameChangedHint( FmEntryData* pData, const OUString& rNewName )
129 : :pEntryData( pData )
130 0 : ,aNewName( rNewName )
131 : {
132 0 : }
133 :
134 :
135 0 : FmNavNameChangedHint::~FmNavNameChangedHint()
136 : {
137 0 : }
138 :
139 :
140 : // class FmNavClearedHint
141 :
142 0 : TYPEINIT1( FmNavClearedHint, SfxHint );
143 :
144 0 : FmNavClearedHint::FmNavClearedHint()
145 : {
146 0 : }
147 :
148 :
149 0 : FmNavClearedHint::~FmNavClearedHint()
150 : {
151 0 : }
152 :
153 :
154 : // class FmNavRequestSelectHint
155 :
156 0 : TYPEINIT1(FmNavRequestSelectHint, SfxHint);
157 :
158 :
159 : // class FmNavViewMarksChanged
160 :
161 0 : TYPEINIT1(FmNavViewMarksChanged, SfxHint);
162 :
163 :
164 : // class FmEntryDataList
165 :
166 :
167 0 : FmEntryDataList::FmEntryDataList()
168 : {
169 0 : }
170 :
171 :
172 0 : FmEntryDataList::~FmEntryDataList()
173 : {
174 0 : }
175 :
176 :
177 0 : FmEntryData* FmEntryDataList::remove( FmEntryData* pItem )
178 : {
179 0 : for ( FmEntryDataBaseList::iterator it = maEntryDataList.begin();
180 0 : it != maEntryDataList.end();
181 : ++it
182 : )
183 : {
184 0 : if ( *it == pItem )
185 : {
186 0 : maEntryDataList.erase( it );
187 0 : break;
188 : }
189 : }
190 0 : return pItem;
191 : }
192 :
193 :
194 0 : void FmEntryDataList::insert( FmEntryData* pItem, size_t Index )
195 : {
196 0 : if ( Index < maEntryDataList.size() )
197 : {
198 0 : FmEntryDataBaseList::iterator it = maEntryDataList.begin();
199 0 : ::std::advance( it, Index );
200 0 : maEntryDataList.insert( it, pItem );
201 : }
202 : else
203 0 : maEntryDataList.push_back( pItem );
204 0 : }
205 :
206 :
207 0 : void FmEntryDataList::clear()
208 : {
209 0 : for ( size_t i = 0, n = maEntryDataList.size(); i < n; ++i )
210 0 : delete maEntryDataList[ i ];
211 0 : maEntryDataList.clear();
212 0 : }
213 :
214 :
215 : // class FmEntryData
216 :
217 0 : TYPEINIT0( FmEntryData );
218 :
219 0 : FmEntryData::FmEntryData( FmEntryData* pParentData, const Reference< XInterface >& _rxIFace )
220 0 : :pParent( pParentData )
221 : {
222 0 : pChildList = new FmEntryDataList();
223 :
224 0 : newObject( _rxIFace );
225 0 : }
226 :
227 :
228 0 : FmEntryData::~FmEntryData()
229 : {
230 0 : Clear();
231 0 : delete pChildList;
232 0 : }
233 :
234 :
235 0 : void FmEntryData::newObject( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxIFace )
236 : {
237 : // do not just copy, normalize it
238 0 : m_xNormalizedIFace = Reference< XInterface >( _rxIFace, UNO_QUERY );
239 0 : m_xProperties = m_xProperties.query( m_xNormalizedIFace );
240 0 : m_xChild = m_xChild.query( m_xNormalizedIFace );
241 0 : }
242 :
243 :
244 0 : FmEntryData::FmEntryData( const FmEntryData& rEntryData )
245 : {
246 0 : pChildList = new FmEntryDataList();
247 0 : aText = rEntryData.GetText();
248 0 : m_aNormalImage = rEntryData.GetNormalImage();
249 0 : pParent = rEntryData.GetParent();
250 :
251 : FmEntryData* pChildData;
252 0 : size_t nEntryCount = rEntryData.GetChildList()->size();
253 0 : for( size_t i = 0; i < nEntryCount; i++ )
254 : {
255 0 : pChildData = rEntryData.GetChildList()->at( i );
256 0 : FmEntryData* pNewChildData = pChildData->Clone();
257 0 : pChildList->insert( pNewChildData, size_t(-1) );
258 : }
259 :
260 0 : m_xNormalizedIFace = rEntryData.m_xNormalizedIFace;
261 0 : m_xProperties = rEntryData.m_xProperties;
262 0 : m_xChild = rEntryData.m_xChild;
263 0 : }
264 :
265 :
266 0 : void FmEntryData::Clear()
267 : {
268 0 : GetChildList()->clear();
269 0 : }
270 :
271 :
272 0 : sal_Bool FmEntryData::IsEqualWithoutChildren( FmEntryData* pEntryData )
273 : {
274 0 : if(this == pEntryData)
275 0 : return sal_True;
276 :
277 0 : if( !pEntryData )
278 0 : return sal_False;
279 :
280 0 : if( !aText.equals(pEntryData->GetText()))
281 0 : return sal_False;
282 :
283 0 : if( !pEntryData->GetParent() && pParent )
284 0 : return sal_False;
285 :
286 0 : if( pEntryData->GetParent() && !pParent )
287 0 : return sal_False;
288 :
289 0 : if( !pEntryData->GetParent() && !pParent )
290 0 : return sal_True;
291 :
292 0 : if( !pParent->IsEqualWithoutChildren(pEntryData->GetParent()) )
293 0 : return sal_False;
294 :
295 0 : return sal_True;
296 : }
297 :
298 :
299 :
300 : // class FmFormData
301 :
302 0 : TYPEINIT1( FmFormData, FmEntryData );
303 :
304 0 : FmFormData::FmFormData(
305 : const Reference< XForm >& _rxForm,
306 : const ImageList& _rNormalImages,
307 : FmFormData* _pParent
308 : )
309 : : FmEntryData( _pParent, _rxForm ),
310 0 : m_xForm( _rxForm )
311 : {
312 :
313 : // Images setzen
314 :
315 0 : m_aNormalImage = _rNormalImages.GetImage( RID_SVXIMG_FORM );
316 :
317 :
318 : // Titel setzen
319 0 : if (m_xForm.is())
320 : {
321 0 : Reference< XPropertySet > xSet(m_xForm, UNO_QUERY);
322 0 : if (xSet.is())
323 : {
324 0 : OUString aEntryName(::comphelper::getString(xSet->getPropertyValue( FM_PROP_NAME )));
325 0 : SetText(aEntryName);
326 0 : }
327 : }
328 : else
329 0 : SetText( OUString() );
330 0 : }
331 :
332 :
333 0 : FmFormData::~FmFormData()
334 : {
335 0 : }
336 :
337 :
338 0 : FmFormData::FmFormData( const FmFormData& rFormData )
339 0 : :FmEntryData( rFormData )
340 : {
341 0 : m_xForm = rFormData.GetFormIface();
342 0 : }
343 :
344 :
345 0 : FmEntryData* FmFormData::Clone()
346 : {
347 0 : return new FmFormData( *this );
348 : }
349 :
350 :
351 0 : sal_Bool FmFormData::IsEqualWithoutChildren( FmEntryData* pEntryData )
352 : {
353 0 : if(this == pEntryData)
354 0 : return sal_True;
355 0 : if( !pEntryData->ISA(FmFormData) )
356 0 : return sal_False;
357 0 : FmFormData* pFormData = (FmFormData*)pEntryData;
358 0 : if( (XForm*)m_xForm.get() != (XForm*)pFormData->GetFormIface().get() )
359 0 : return sal_False;
360 :
361 0 : return FmEntryData::IsEqualWithoutChildren( pFormData );
362 : }
363 :
364 :
365 :
366 : // class FmControlData
367 :
368 0 : TYPEINIT1( FmControlData, FmEntryData );
369 :
370 0 : FmControlData::FmControlData(
371 : const Reference< XFormComponent >& _rxComponent,
372 : const ImageList& _rNormalImages,
373 : FmFormData* _pParent
374 : )
375 : : FmEntryData( _pParent, _rxComponent ),
376 0 : m_xFormComponent( _rxComponent )
377 : {
378 :
379 : // Images setzen
380 0 : m_aNormalImage = GetImage( _rNormalImages );
381 :
382 :
383 : // Titel setzen
384 0 : Reference< XPropertySet > xSet(m_xFormComponent, UNO_QUERY);
385 0 : if( xSet.is() )
386 : {
387 0 : SetText( ::comphelper::getString(xSet->getPropertyValue( FM_PROP_NAME )));
388 0 : }
389 0 : }
390 :
391 :
392 0 : FmControlData::~FmControlData()
393 : {
394 0 : }
395 :
396 :
397 0 : FmControlData::FmControlData( const FmControlData& rControlData )
398 0 : :FmEntryData( rControlData )
399 : {
400 0 : m_xFormComponent = rControlData.GetFormComponent();
401 0 : }
402 :
403 :
404 0 : FmEntryData* FmControlData::Clone()
405 : {
406 0 : return new FmControlData( *this );
407 : }
408 :
409 :
410 0 : Image FmControlData::GetImage(const ImageList& ilNavigatorImages) const
411 : {
412 :
413 : // Default-Image
414 0 : Image aImage = ilNavigatorImages.GetImage( RID_SVXIMG_CONTROL );
415 :
416 0 : Reference< XServiceInfo > xInfo( m_xFormComponent, UNO_QUERY );
417 0 : if (!m_xFormComponent.is())
418 0 : return aImage;
419 :
420 :
421 : // Spezielle Control-Images
422 0 : sal_Int16 nObjectType = getControlTypeByObject(xInfo);
423 0 : switch (nObjectType)
424 : {
425 : case OBJ_FM_BUTTON:
426 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_BUTTON );
427 0 : break;
428 :
429 : case OBJ_FM_FIXEDTEXT:
430 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_FIXEDTEXT );
431 0 : break;
432 :
433 : case OBJ_FM_EDIT:
434 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_EDIT );
435 0 : break;
436 :
437 : case OBJ_FM_RADIOBUTTON:
438 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_RADIOBUTTON );
439 0 : break;
440 :
441 : case OBJ_FM_CHECKBOX:
442 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_CHECKBOX );
443 0 : break;
444 :
445 : case OBJ_FM_LISTBOX:
446 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_LISTBOX );
447 0 : break;
448 :
449 : case OBJ_FM_COMBOBOX:
450 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_COMBOBOX );
451 0 : break;
452 :
453 : case OBJ_FM_NAVIGATIONBAR:
454 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_NAVIGATIONBAR );
455 0 : break;
456 :
457 : case OBJ_FM_GROUPBOX:
458 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_GROUPBOX );
459 0 : break;
460 :
461 : case OBJ_FM_IMAGEBUTTON:
462 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_IMAGEBUTTON );
463 0 : break;
464 :
465 : case OBJ_FM_FILECONTROL:
466 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_FILECONTROL );
467 0 : break;
468 :
469 : case OBJ_FM_HIDDEN:
470 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_HIDDEN );
471 0 : break;
472 :
473 : case OBJ_FM_DATEFIELD:
474 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_DATEFIELD );
475 0 : break;
476 :
477 : case OBJ_FM_TIMEFIELD:
478 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_TIMEFIELD );
479 0 : break;
480 :
481 : case OBJ_FM_NUMERICFIELD:
482 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_NUMERICFIELD );
483 0 : break;
484 :
485 : case OBJ_FM_CURRENCYFIELD:
486 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_CURRENCYFIELD );
487 0 : break;
488 :
489 : case OBJ_FM_PATTERNFIELD:
490 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_PATTERNFIELD );
491 0 : break;
492 :
493 : case OBJ_FM_IMAGECONTROL:
494 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_IMAGECONTROL );
495 0 : break;
496 :
497 : case OBJ_FM_FORMATTEDFIELD:
498 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_FORMATTEDFIELD );
499 0 : break;
500 :
501 : case OBJ_FM_GRID:
502 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_GRID );
503 0 : break;
504 :
505 : case OBJ_FM_SCROLLBAR:
506 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_SCROLLBAR );
507 0 : break;
508 :
509 : case OBJ_FM_SPINBUTTON:
510 0 : aImage = ilNavigatorImages.GetImage( RID_SVXIMG_SPINBUTTON);
511 0 : break;
512 : }
513 :
514 0 : return aImage;
515 : }
516 :
517 :
518 0 : sal_Bool FmControlData::IsEqualWithoutChildren( FmEntryData* pEntryData )
519 : {
520 0 : if(this == pEntryData)
521 0 : return sal_True;
522 :
523 0 : if( !pEntryData->ISA(FmControlData) )
524 0 : return sal_False;
525 0 : FmControlData* pControlData = (FmControlData*)pEntryData;
526 :
527 0 : if( (XFormComponent*)m_xFormComponent.get() != (XFormComponent*)pControlData->GetFormComponent().get() )
528 0 : return sal_False;
529 :
530 0 : return FmEntryData::IsEqualWithoutChildren( pControlData );
531 : }
532 :
533 :
534 0 : void FmControlData::ModelReplaced(
535 : const Reference< XFormComponent >& _rxNew,
536 : const ImageList& _rNormalImages
537 : )
538 : {
539 0 : m_xFormComponent = _rxNew;
540 0 : newObject( m_xFormComponent );
541 :
542 : // Images neu setzen
543 0 : m_aNormalImage = GetImage( _rNormalImages );
544 0 : }
545 :
546 :
547 : namespace svxform
548 : {
549 :
550 :
551 :
552 : // class NavigatorFrame
553 :
554 :
555 0 : NavigatorFrame::NavigatorFrame( SfxBindings* _pBindings, SfxChildWindow* _pMgr,
556 : Window* _pParent )
557 : :SfxDockingWindow( _pBindings, _pMgr, _pParent, WinBits(WB_STDMODELESS|WB_SIZEABLE|WB_ROLLABLE|WB_3DLOOK|WB_DOCKABLE) )
558 0 : ,SfxControllerItem( SID_FM_FMEXPLORER_CONTROL, *_pBindings )
559 : {
560 0 : SetHelpId( HID_FORM_NAVIGATOR_WIN );
561 :
562 0 : m_pNavigatorTree = new NavigatorTree( this );
563 0 : m_pNavigatorTree->Show();
564 0 : SetText( SVX_RES(RID_STR_FMEXPLORER) );
565 0 : SfxDockingWindow::SetFloatingSize( Size(200,200) );
566 0 : }
567 :
568 :
569 0 : NavigatorFrame::~NavigatorFrame()
570 : {
571 0 : delete m_pNavigatorTree;
572 0 : }
573 :
574 :
575 0 : void NavigatorFrame::UpdateContent( FmFormShell* pFormShell )
576 : {
577 0 : m_pNavigatorTree->UpdateContent( pFormShell );
578 0 : }
579 :
580 :
581 0 : void NavigatorFrame::StateChanged( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState )
582 : {
583 0 : if( !pState || SID_FM_FMEXPLORER_CONTROL != nSID )
584 0 : return;
585 :
586 0 : if( eState >= SFX_ITEM_AVAILABLE )
587 : {
588 0 : FmFormShell* pShell = PTR_CAST( FmFormShell,((SfxObjectItem*)pState)->GetShell() );
589 0 : UpdateContent( pShell );
590 : }
591 : else
592 0 : UpdateContent( NULL );
593 : }
594 :
595 :
596 0 : void NavigatorFrame::GetFocus()
597 : {
598 0 : if ( m_pNavigatorTree )
599 0 : m_pNavigatorTree->GrabFocus();
600 : else
601 0 : SfxDockingWindow::GetFocus();
602 0 : }
603 :
604 :
605 0 : bool NavigatorFrame::Close()
606 : {
607 0 : UpdateContent( NULL );
608 0 : return SfxDockingWindow::Close();
609 : }
610 :
611 :
612 0 : void NavigatorFrame::FillInfo( SfxChildWinInfo& rInfo ) const
613 : {
614 0 : SfxDockingWindow::FillInfo( rInfo );
615 0 : rInfo.bVisible = false;
616 0 : }
617 :
618 :
619 0 : Size NavigatorFrame::CalcDockingSize( SfxChildAlignment eAlign )
620 : {
621 0 : if ( ( eAlign == SFX_ALIGN_TOP ) || ( eAlign == SFX_ALIGN_BOTTOM ) )
622 0 : return Size();
623 :
624 0 : return SfxDockingWindow::CalcDockingSize( eAlign );
625 : }
626 :
627 :
628 0 : SfxChildAlignment NavigatorFrame::CheckAlignment( SfxChildAlignment _eActAlign, SfxChildAlignment _eAlign )
629 : {
630 0 : if ( ( _eAlign == SFX_ALIGN_LEFT ) || ( _eAlign == SFX_ALIGN_RIGHT ) || ( _eAlign == SFX_ALIGN_NOALIGNMENT ) )
631 0 : return _eAlign;
632 0 : return _eActAlign;
633 : }
634 :
635 :
636 0 : void NavigatorFrame::Resize()
637 : {
638 0 : SfxDockingWindow::Resize();
639 :
640 0 : Size aLogOutputSize = PixelToLogic( GetOutputSizePixel(), MAP_APPFONT );
641 0 : Size aLogExplSize = aLogOutputSize;
642 0 : aLogExplSize.Width() -= 6;
643 0 : aLogExplSize.Height() -= 6;
644 :
645 0 : Point aExplPos = LogicToPixel( Point(3,3), MAP_APPFONT );
646 0 : Size aExplSize = LogicToPixel( aLogExplSize, MAP_APPFONT );
647 :
648 0 : m_pNavigatorTree->SetPosSizePixel( aExplPos, aExplSize );
649 0 : }
650 :
651 :
652 :
653 : // class NavigatorFrameManager
654 :
655 :
656 :
657 0 : SFX_IMPL_DOCKINGWINDOW( NavigatorFrameManager, SID_FM_SHOW_FMEXPLORER )
658 :
659 :
660 0 : NavigatorFrameManager::NavigatorFrameManager( Window* _pParent, sal_uInt16 _nId,
661 : SfxBindings* _pBindings, SfxChildWinInfo* _pInfo )
662 0 : :SfxChildWindow( _pParent, _nId )
663 : {
664 0 : pWindow = new NavigatorFrame( _pBindings, this, _pParent );
665 0 : eChildAlignment = SFX_ALIGN_NOALIGNMENT;
666 0 : ((SfxDockingWindow*)pWindow)->Initialize( _pInfo );
667 0 : }
668 :
669 :
670 : } // namespace svxform
671 :
672 :
673 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|