diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-04-02 12:29:03 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-04-02 12:29:03 +0000 |
commit | 3b51c5d9b5b8a4f9df54f27a2e63784272476cfb (patch) | |
tree | e1d59efbecdda34868983f96870d11f18ed3b56e /sc/source/ui/drawfunc/drawsh5.cxx | |
parent | 9c92153e4c58e8add09cdcb1f0424738bcc68b81 (diff) |
INTEGRATION: CWS sj05 (1.9.250); FILE MERGED
2004/02/13 15:17:17 sj 1.9.250.2: RESYNC: (1.9-1.10); FILE MERGED
2004/02/03 16:13:06 cl 1.9.250.1: #i20484# added new CustomShape ui
Diffstat (limited to 'sc/source/ui/drawfunc/drawsh5.cxx')
-rw-r--r-- | sc/source/ui/drawfunc/drawsh5.cxx | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/sc/source/ui/drawfunc/drawsh5.cxx b/sc/source/ui/drawfunc/drawsh5.cxx index e7386eb83212..b1c4783949c4 100644 --- a/sc/source/ui/drawfunc/drawsh5.cxx +++ b/sc/source/ui/drawfunc/drawsh5.cxx @@ -2,9 +2,9 @@ * * $RCSfile: drawsh5.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: hr $ $Date: 2004-02-03 20:31:38 $ + * last change: $Author: rt $ $Date: 2004-04-02 13:29:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -83,6 +83,9 @@ #include <svx/xdef.hxx> #include <svx/xftsfit.hxx> #include <vcl/msgbox.hxx> +#ifndef _SVX_EXTRUSION_BAR_HXX +#include <svx/extrusionbar.hxx> +#endif #include <com/sun/star/form/FormButtonType.hpp> #include <com/sun/star/beans/XPropertySet.hpp> @@ -568,6 +571,27 @@ void ScDrawShell::ExecDrawFunc( SfxRequest& rReq ) } break; + case SID_EXTRUSION_TOOGLE: + case SID_EXTRUSION_TILT_DOWN: + case SID_EXTRUSION_TILT_UP: + case SID_EXTRUSION_TILT_LEFT: + case SID_EXTRUSION_TILT_RIGHT: + case SID_EXTRUSION_3D_COLOR: + case SID_EXTRUSION_DEPTH: + case SID_EXTRUSION_DIRECTION: + case SID_EXTRUSION_PROJECTION: + case SID_EXTRUSION_LIGHTING_DIRECTION: + case SID_EXTRUSION_LIGHTING_INTENSITY: + case SID_EXTRUSION_SURFACE: + case SID_EXTRUSION_DEPTH_FLOATER: + case SID_EXTRUSION_DIRECTION_FLOATER: + case SID_EXTRUSION_LIGHTING_FLOATER: + case SID_EXTRUSION_SURFACE_FLOATER: + case SID_EXTRUSION_DEPTH_DIALOG: + svx::ExtrusionBar::execute( pView, rReq, rBindings ); + rReq.Ignore (); + break; + default: break; } |