merged tag ooo/OOO330_m14
[LibreOffice.git] / chart2 / source / controller / main / ShapeController.hxx
blobaea01d6c478df375b973380b08365666ceaebd06
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
27 #ifndef CHART2_SHAPECONTROLLER_HXX
28 #define CHART2_SHAPECONTROLLER_HXX
30 #include "FeatureCommandDispatchBase.hxx"
31 #include <tools/link.hxx>
33 class AbstractSvxNameDialog;
34 class SdrObject;
36 //.............................................................................
37 namespace chart
39 //.............................................................................
41 class ChartController;
43 /** This is a CommandDispatch implementation for shapes.
45 class ShapeController: public FeatureCommandDispatchBase
47 friend class ControllerCommandDispatch;
49 public:
50 ShapeController( const ::com::sun::star::uno::Reference<
51 ::com::sun::star::uno::XComponentContext >& rxContext, ChartController* pController );
52 virtual ~ShapeController();
54 // late initialisation, especially for adding as listener
55 virtual void initialize();
57 protected:
58 // WeakComponentImplHelperBase
59 virtual void SAL_CALL disposing();
61 // XEventListener
62 virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source )
63 throw (::com::sun::star::uno::RuntimeException);
65 // state of a feature
66 virtual FeatureState getState( const ::rtl::OUString& rCommand );
68 // execute a feature
69 virtual void execute( const ::rtl::OUString& rCommand, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue>& rArgs );
71 // all the features which should be handled by this class
72 virtual void describeSupportedFeatures();
74 private:
75 DECL_LINK( CheckNameHdl, AbstractSvxNameDialog* );
77 void executeDispatch_FormatLine();
78 void executeDispatch_FormatArea();
79 void executeDispatch_TextAttributes();
80 void executeDispatch_TransformDialog();
81 void executeDispatch_ObjectTitleDescription();
82 void executeDispatch_RenameObject();
83 void executeDispatch_ChangeZOrder( sal_uInt16 nId );
84 void executeDispatch_FontDialog();
85 void executeDispatch_ParagraphDialog();
87 SdrObject* getFirstAdditionalShape();
88 SdrObject* getLastAdditionalShape();
89 bool isBackwardPossible();
90 bool isForwardPossible();
92 ChartController* m_pChartController;
95 //.............................................................................
96 } // namespace chart
97 //.............................................................................
99 // CHART2_SHAPECONTROLLER_HXX
100 #endif