138d50f7bSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 338d50f7bSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 438d50f7bSAndrew Rist * or more contributor license agreements. See the NOTICE file 538d50f7bSAndrew Rist * distributed with this work for additional information 638d50f7bSAndrew Rist * regarding copyright ownership. The ASF licenses this file 738d50f7bSAndrew Rist * to you under the Apache License, Version 2.0 (the 838d50f7bSAndrew Rist * "License"); you may not use this file except in compliance 938d50f7bSAndrew Rist * with the License. You may obtain a copy of the License at 1038d50f7bSAndrew Rist * 1138d50f7bSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 1238d50f7bSAndrew Rist * 1338d50f7bSAndrew Rist * Unless required by applicable law or agreed to in writing, 1438d50f7bSAndrew Rist * software distributed under the License is distributed on an 1538d50f7bSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 1638d50f7bSAndrew Rist * KIND, either express or implied. See the License for the 1738d50f7bSAndrew Rist * specific language governing permissions and limitations 1838d50f7bSAndrew Rist * under the License. 1938d50f7bSAndrew Rist * 2038d50f7bSAndrew Rist *************************************************************/ 2138d50f7bSAndrew Rist 2238d50f7bSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef SC_DRAWSH_HXX 25cdf0e10cSrcweir #define SC_DRAWSH_HXX 26cdf0e10cSrcweir 27cdf0e10cSrcweir #include <sfx2/shell.hxx> 28cdf0e10cSrcweir #include "shellids.hxx" 29cdf0e10cSrcweir #include <sfx2/module.hxx> 30cdf0e10cSrcweir #include <svx/svdmark.hxx> 31cdf0e10cSrcweir #include <tools/link.hxx> 32cdf0e10cSrcweir 33cdf0e10cSrcweir class AbstractSvxNameDialog; //CHINA001 class SvxNameDialog; 34cdf0e10cSrcweir class ScViewData; 35cdf0e10cSrcweir class ScDrawView; 36cdf0e10cSrcweir 37cdf0e10cSrcweir class ScDrawShell : public SfxShell 38cdf0e10cSrcweir { 39cdf0e10cSrcweir ScViewData* pViewData; 40cdf0e10cSrcweir 41cdf0e10cSrcweir DECL_LINK( NameObjectHdl, AbstractSvxNameDialog* ); 42cdf0e10cSrcweir 43cdf0e10cSrcweir #ifdef ISSUE66550_HLINK_FOR_SHAPES 44cdf0e10cSrcweir void SetHlinkForObject( SdrObject* pObj, const rtl::OUString& rHlnk ); 45cdf0e10cSrcweir #endif 46cdf0e10cSrcweir 47cdf0e10cSrcweir protected: 48cdf0e10cSrcweir ScViewData* GetViewData() { return pViewData; } 49cdf0e10cSrcweir 50cdf0e10cSrcweir public: 51cdf0e10cSrcweir TYPEINFO(); 52cdf0e10cSrcweir SFX_DECL_INTERFACE(SCID_DRAW_SHELL) 53cdf0e10cSrcweir 54cdf0e10cSrcweir ScDrawShell(ScViewData* pData); 55cdf0e10cSrcweir ~ScDrawShell(); 56cdf0e10cSrcweir 57cdf0e10cSrcweir void StateDisableItems( SfxItemSet &rSet ); 58cdf0e10cSrcweir 59cdf0e10cSrcweir void ExecDrawAttr(SfxRequest& rReq); 60cdf0e10cSrcweir void GetDrawAttrState(SfxItemSet &rSet); 61cdf0e10cSrcweir void GetAttrFuncState(SfxItemSet &rSet); 62cdf0e10cSrcweir 63cdf0e10cSrcweir void ExecDrawFunc(SfxRequest& rReq); 64cdf0e10cSrcweir void GetDrawFuncState(SfxItemSet &rSet); 65cdf0e10cSrcweir void GetState(SfxItemSet &rSet); 66cdf0e10cSrcweir 67cdf0e10cSrcweir void ExecFormText(SfxRequest& rReq); // StarFontWork 68cdf0e10cSrcweir void GetFormTextState(SfxItemSet& rSet); 69cdf0e10cSrcweir 70cdf0e10cSrcweir void ExecuteHLink(SfxRequest& rReq); // Hyperlink 71cdf0e10cSrcweir void GetHLinkState(SfxItemSet& rSet); 72cdf0e10cSrcweir 73cdf0e10cSrcweir void ExecFormatPaintbrush(SfxRequest& rReq); 74cdf0e10cSrcweir void StateFormatPaintbrush(SfxItemSet& rSet); 75cdf0e10cSrcweir 76cdf0e10cSrcweir void ExecuteMacroAssign( SdrObject* pObj, Window* pWin ); 77cdf0e10cSrcweir void ExecuteLineDlg( SfxRequest& rReq, sal_uInt16 nTabPage = 0xffff ); 78cdf0e10cSrcweir void ExecuteAreaDlg( SfxRequest& rReq, sal_uInt16 nTabPage = 0xffff ); 79cdf0e10cSrcweir void ExecuteTextAttrDlg( SfxRequest& rReq, sal_uInt16 nTabPage = 0xffff ); 80cdf0e10cSrcweir 81cdf0e10cSrcweir ScDrawView* GetDrawView(); 82cdf0e10cSrcweir 83cdf0e10cSrcweir sal_Bool AreAllObjectsOnLayer(sal_uInt16 nLayerNo,const SdrMarkList& rMark); 84*ee093554SAndre Fischer 85*ee093554SAndre Fischer void GetDrawAttrStateForIFBX( SfxItemSet& rSet ); 86cdf0e10cSrcweir }; 87cdf0e10cSrcweir 88cdf0e10cSrcweir 89cdf0e10cSrcweir 90cdf0e10cSrcweir #endif 91cdf0e10cSrcweir 92cdf0e10cSrcweir 93