Update ooo320-m1
[ooovba.git] / sd / source / ui / toolpanel / controls / TableDesignPanel.cxx
blob78a6298885c5a6ee91e9e6fd7ce8b01c950340ac
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: TableDesignPanel.cxx,v $
10 * $Revision: 1.3 $
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 "TableDesignPanel.hxx"
36 #include "taskpane/TaskPaneControlFactory.hxx"
38 #include "strings.hrc"
39 #include "sdresid.hxx"
41 namespace sd
44 class ViewShellBase;
45 extern ::Window * createTableDesignPanel( ::Window* pParent, ViewShellBase& rBase );
47 namespace toolpanel { namespace controls {
50 TableDesignPanel::TableDesignPanel(TreeNode* pParent, ViewShellBase& rBase)
51 : SubToolPanel (pParent)
53 mpWrappedControl = createTableDesignPanel( pParent->GetWindow(), rBase );
54 mpWrappedControl->Show();
57 TableDesignPanel::~TableDesignPanel()
59 delete mpWrappedControl;
62 std::auto_ptr<ControlFactory> TableDesignPanel::CreateControlFactory (ViewShellBase& rBase)
64 return std::auto_ptr<ControlFactory>(
65 new ControlFactoryWithArgs1<TableDesignPanel,ViewShellBase>(rBase));
68 Size TableDesignPanel::GetPreferredSize()
70 return maPreferredSize;
72 sal_Int32 TableDesignPanel::GetPreferredWidth(sal_Int32 )
74 return maPreferredSize.Width();
76 sal_Int32 TableDesignPanel::GetPreferredHeight(sal_Int32 )
78 return maPreferredSize.Height();
80 ::Window* TableDesignPanel::GetWindow()
82 return mpWrappedControl;
84 bool TableDesignPanel::IsResizable()
86 return true;
88 bool TableDesignPanel::IsExpandable() const
90 return true;
93 ::com::sun::star::uno::Reference<
94 ::com::sun::star::accessibility::XAccessible> TableDesignPanel::CreateAccessibleObject (
95 const ::com::sun::star::uno::Reference<
96 ::com::sun::star::accessibility::XAccessible>& )
98 if (GetWindow() != NULL)
99 return GetWindow()->GetAccessible();
100 else
101 return NULL;
104 } } } // end of namespace ::sd::toolpanel::controls