xref: /trunk/main/sc/source/ui/inc/drtxtob.hxx (revision 512ec161)
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_DRTXTOB_HXX
25cdf0e10cSrcweir #define SC_DRTXTOB_HXX
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #ifndef _SFX_HXX
28cdf0e10cSrcweir #endif
29cdf0e10cSrcweir 
30cdf0e10cSrcweir #include <sfx2/shell.hxx>
31cdf0e10cSrcweir #include <sfx2/module.hxx>
32cdf0e10cSrcweir #include <tools/link.hxx>
33cdf0e10cSrcweir 
34cdf0e10cSrcweir #include "shellids.hxx"
35cdf0e10cSrcweir 
36cdf0e10cSrcweir sal_uInt16 ScGetFontWorkId();		// statt SvxFontWorkChildWindow::GetChildWindowId()
37cdf0e10cSrcweir 
38cdf0e10cSrcweir class ScViewData;
39cdf0e10cSrcweir class TransferableDataHelper;
40cdf0e10cSrcweir class TransferableClipboardListener;
41cdf0e10cSrcweir 
42cdf0e10cSrcweir class ScDrawTextObjectBar : public SfxShell
43cdf0e10cSrcweir {
44cdf0e10cSrcweir 	ScViewData*			pViewData;
45cdf0e10cSrcweir 	TransferableClipboardListener* pClipEvtLstnr;
46cdf0e10cSrcweir 	sal_Bool				bPastePossible;
47cdf0e10cSrcweir 
48cdf0e10cSrcweir 	DECL_LINK( ClipboardChanged, TransferableDataHelper* );
49cdf0e10cSrcweir 
50cdf0e10cSrcweir public:
51cdf0e10cSrcweir 	TYPEINFO();
52cdf0e10cSrcweir 	SFX_DECL_INTERFACE(SCID_DRAW_TEXT_SHELL)
53cdf0e10cSrcweir 
54cdf0e10cSrcweir 		ScDrawTextObjectBar(ScViewData* pData);
55cdf0e10cSrcweir 		~ScDrawTextObjectBar();
56cdf0e10cSrcweir 
57cdf0e10cSrcweir 	void StateDisableItems( SfxItemSet &rSet );
58cdf0e10cSrcweir 
59cdf0e10cSrcweir 	void Execute( SfxRequest &rReq );
60cdf0e10cSrcweir 	void ExecuteTrans( SfxRequest& rReq );
61cdf0e10cSrcweir 	void GetState( SfxItemSet& rSet );
62cdf0e10cSrcweir 	void GetClipState( SfxItemSet& rSet );
63cdf0e10cSrcweir 
64cdf0e10cSrcweir 	void ExecuteAttr( SfxRequest &rReq );
65cdf0e10cSrcweir 	void GetAttrState( SfxItemSet& rSet );
66cdf0e10cSrcweir 	void ExecuteToggle( SfxRequest &rReq );
67*512ec161SZheng Fan 	void GetStatePropPanelAttr(SfxItemSet &);
68cdf0e10cSrcweir 
69d9a8b508SZheng Fan 	sal_Bool ExecuteCharDlg( const SfxItemSet& rArgs, SfxItemSet& rOutSet , sal_uInt16 nSlot);
70cdf0e10cSrcweir 	sal_Bool ExecuteParaDlg( const SfxItemSet& rArgs, SfxItemSet& rOutSet );
71cdf0e10cSrcweir 
72cdf0e10cSrcweir 	void ExecuteExtra( SfxRequest &rReq );
73cdf0e10cSrcweir 	void ExecFormText(SfxRequest& rReq);		// StarFontWork
74cdf0e10cSrcweir 	void GetFormTextState(SfxItemSet& rSet);
75cdf0e10cSrcweir 
76cdf0e10cSrcweir private:
77cdf0e10cSrcweir 	void ExecuteGlobal( SfxRequest &rReq );			// von Execute gerufen fuer ganze Objekte
78cdf0e10cSrcweir 	void GetGlobalClipState( SfxItemSet& rSet );
79cdf0e10cSrcweir 	void ExecutePasteContents( SfxRequest &rReq );
80cdf0e10cSrcweir 	sal_Bool IsNoteEdit();
81cdf0e10cSrcweir };
82cdf0e10cSrcweir 
83cdf0e10cSrcweir 
84cdf0e10cSrcweir 
85cdf0e10cSrcweir #endif
86cdf0e10cSrcweir 
87