1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: CustomAnimationPanel.cxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_sd.hxx"
34 #include "CustomAnimationPanel.hxx"
36 #include "taskpane/TaskPaneControlFactory.hxx"
38 #include "strings.hrc"
39 #include "sdresid.hxx"
45 extern ::Window
* createCustomAnimationPanel( ::Window
* pParent
, ViewShellBase
& rBase
);
47 namespace toolpanel
{ namespace controls
{
50 CustomAnimationPanel::CustomAnimationPanel(TreeNode
* pParent
, ViewShellBase
& rBase
)
51 : SubToolPanel (pParent
)
53 mpWrappedControl
= createCustomAnimationPanel( pParent
->GetWindow(), rBase
);
54 mpWrappedControl
->Show();
57 CustomAnimationPanel::~CustomAnimationPanel()
59 delete mpWrappedControl
;
62 std::auto_ptr
<ControlFactory
> CustomAnimationPanel::CreateControlFactory (ViewShellBase
& rBase
)
64 return std::auto_ptr
<ControlFactory
>(
65 new ControlFactoryWithArgs1
<CustomAnimationPanel
,ViewShellBase
>(rBase
));
68 Size
CustomAnimationPanel::GetPreferredSize()
70 return maPreferredSize
;
72 sal_Int32
CustomAnimationPanel::GetPreferredWidth(sal_Int32
)
74 return maPreferredSize
.Width();
76 sal_Int32
CustomAnimationPanel::GetPreferredHeight(sal_Int32
)
78 return maPreferredSize
.Height();
80 ::Window
* CustomAnimationPanel::GetWindow()
82 return mpWrappedControl
;
84 bool CustomAnimationPanel::IsResizable()
88 bool CustomAnimationPanel::IsExpandable() const
96 ::com::sun::star::uno::Reference
<
97 ::com::sun::star::accessibility::XAccessible
> CustomAnimationPanel::CreateAccessibleObject (
98 const ::com::sun::star::uno::Reference
<
99 ::com::sun::star::accessibility::XAccessible
>& )
101 if (GetWindow() != NULL
)
102 return GetWindow()->GetAccessible();
107 } } } // end of namespace ::sd::toolpanel::controls