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: ToolPanelDescriptor.hxx,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 #ifndef SD_TOOL_PANEL_DESCRIPTOR_HXX
32 #define SD_TOOL_PANEL_DESCRIPTOR_HXX
34 #include <tools/string.hxx>
35 #include <tools/gen.hxx>
40 namespace sd
{ namespace toolpanel
{
43 /** Collection of information the describes entries of the tool
44 panel. A descriptor owns the control it is associated with.
46 class ToolPanelDescriptor
49 /** Create a new descriptor for the given control.
52 ToolPanelDescriptor (::std::auto_ptr
< ::Window
> pControl
,
53 const String
& rTitle
);
55 ~ToolPanelDescriptor (void);
57 /** Return the height of the title bar.
59 The title bar height is returned in pixels.
61 int GetTitleBarHeight (void) const;
64 void SetPositionAndSize (const Point
& aPosition
,
66 void SetPositionAndSize (const Rectangle
& aBox
);
67 void SetWeight (double nWeight
);
69 Window
* GetControl (void) const;
70 const String
& GetTitle (void) const;
71 const Rectangle
& GetTitleBox (void) const;
72 Rectangle
GetPositionAndSize (void) const;
73 double GetWeight (void) const;
75 int GetTotalHeight (void) const;
76 int GetWindowHeight (void) const;
79 ::std::auto_ptr
< ::Window
> mpControl
;
85 /// Do not use! Assignment operator is not supported.
86 const ToolPanelDescriptor
& operator= (
87 const ToolPanelDescriptor
& aDescriptor
);
90 } } // end of namespace ::sd::toolpanel