update dev300-m58
[ooovba.git] / sw / source / ui / inc / drwtxtsh.hxx
blob6f0d30792150554a27418436a99315d0b092d7d5
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: drwtxtsh.hxx,v $
10 * $Revision: 1.8 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef _SWDRWTXTSH_HXX
31 #define _SWDRWTXTSH_HXX
33 #include <sfx2/shell.hxx>
34 #include "shellid.hxx"
36 class SdrView;
37 class SwView;
38 class SwWrtShell;
39 class SfxModule;
41 class SwDrawTextShell: public SfxShell
43 SwView &rView;
45 SdrView *pSdrView;
47 BOOL bRotate : 1;
48 BOOL bSelMove: 1;
50 void SetAttrToMarked(const SfxItemSet& rAttr);
51 void InsertSymbol(SfxRequest& rReq);
52 BOOL IsTextEdit();
53 public:
54 SFX_DECL_INTERFACE(SW_DRWTXTSHELL)
55 TYPEINFO();
57 SwView &GetView() { return rView; }
58 SwWrtShell &GetShell();
60 SwDrawTextShell(SwView &rView);
61 virtual ~SwDrawTextShell();
63 virtual SfxUndoManager* GetUndoManager();
65 void StateDisableItems(SfxItemSet &);
67 void Execute(SfxRequest &);
68 void ExecDraw(SfxRequest &);
69 void GetState(SfxItemSet &);
70 void GetDrawTxtCtrlState(SfxItemSet&);
72 void ExecFontWork(SfxRequest& rReq);
73 void StateFontWork(SfxItemSet& rSet);
74 void ExecFormText(SfxRequest& rReq);
75 void GetFormTextState(SfxItemSet& rSet);
76 void ExecDrawLingu(SfxRequest &rReq);
77 void ExecUndo(SfxRequest &rReq);
78 void StateUndo(SfxItemSet &rSet);
79 void ExecClpbrd(SfxRequest &rReq);
80 void StateClpbrd(SfxItemSet &rSet);
81 void StateInsert(SfxItemSet &rSet);
82 void ExecTransliteration(SfxRequest &);
84 void Init();
85 void StateStatusline(SfxItemSet &rSet);
88 #endif