2004-07-13 07:50:01 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 13:33:57 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-07-13 07:50:01 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2004-07-13 07:50:01 -05:00
|
|
|
*
|
2008-04-10 13:33:57 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-07-13 07:50:01 -05:00
|
|
|
*
|
2008-04-10 13:33:57 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-07-13 07:50:01 -05:00
|
|
|
*
|
2008-04-10 13:33:57 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2004-07-13 07:50:01 -05:00
|
|
|
*
|
2008-04-10 13:33:57 -05:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2004-07-13 07:50:01 -05:00
|
|
|
*
|
2008-04-10 13:33:57 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2004-07-13 07:50:01 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "PaneDockingWindow.hrc"
|
|
|
|
|
2005-10-24 10:16:16 -05:00
|
|
|
DockingWindow FLT_LEFT_PANE_IMPRESS_DOCKING_WINDOW
|
2004-07-13 07:50:01 -05:00
|
|
|
{
|
|
|
|
// HelpID = SID_EFFECT_WIN ;
|
|
|
|
Border = TRUE ;
|
|
|
|
Hide = TRUE ;
|
|
|
|
SVLook = TRUE ;
|
|
|
|
Sizeable = TRUE ;
|
|
|
|
Moveable = TRUE ;
|
|
|
|
Closeable = TRUE ;
|
|
|
|
Zoomable = TRUE ;
|
|
|
|
Dockable = TRUE ;
|
|
|
|
EnableResizing = TRUE ;
|
|
|
|
Size = MAP_APPFONT (100,200) ;
|
2005-10-24 10:16:16 -05:00
|
|
|
Text [ en-US ] = "Slide Pane" ;
|
|
|
|
};
|
|
|
|
|
|
|
|
DockingWindow FLT_LEFT_PANE_DRAW_DOCKING_WINDOW
|
|
|
|
{
|
|
|
|
// HelpID = SID_EFFECT_WIN ;
|
|
|
|
Border = TRUE ;
|
|
|
|
Hide = TRUE ;
|
|
|
|
SVLook = TRUE ;
|
|
|
|
Sizeable = TRUE ;
|
|
|
|
Moveable = TRUE ;
|
|
|
|
Closeable = TRUE ;
|
|
|
|
Zoomable = TRUE ;
|
|
|
|
Dockable = TRUE ;
|
|
|
|
EnableResizing = TRUE ;
|
|
|
|
Size = MAP_APPFONT (100,200) ;
|
|
|
|
Text [ en-US ] = "Page Pane" ;
|
2004-07-13 07:50:01 -05:00
|
|
|
};
|
|
|
|
|
slidecopy: initial version of a "Tool Panel"
At the moment, this implementation is parallel to the existing TaskPane implementation, but on the medium term, it is
intended to replace it. No change in functionality is planned for the moment, just the panel selection is done via
a tab bar, instead of the the "jumping drawers".
Pending tasks (as known so far):
- Accessibility. No implementation at all, yet.
- showing/hiding tool panels from the "View" drop down menu
- connection to the resource framework. At the moment, de/activating panels completely bypasses the resource
framework.
- alternative implementation of the PanelDeckLayouter which mimics the old design. To be activated by default, for
the moment.
- removal of the (old, by then) TaskPane implementation. Care needs to be taken that the framework API stays
unchanged, i.e., the current ToolPanel resource must be renamed back to RightPane when RightPane is not
occupied anymore by the old implementation. Same for other resource names.
2010-03-15 07:53:19 -05:00
|
|
|
DockingWindow FLT_TOOL_PANEL_DOCKING_WINDOW
|
|
|
|
{
|
|
|
|
// HelpID = SID_EFFECT_WIN ;
|
|
|
|
Border = TRUE ;
|
|
|
|
Hide = TRUE ;
|
|
|
|
SVLook = TRUE ;
|
|
|
|
Sizeable = TRUE ;
|
|
|
|
Moveable = TRUE ;
|
|
|
|
Closeable = TRUE ;
|
|
|
|
Zoomable = TRUE ;
|
|
|
|
Dockable = TRUE ;
|
|
|
|
EnableResizing = TRUE ;
|
|
|
|
Size = MAP_APPFONT (100,200) ;
|
|
|
|
Text [ en-US ] = "Task Pane" ;
|
|
|
|
};
|