tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / sc / source / ui / inc / drtxtob.hxx
blob4690c462586283b5916d203bcd7cf4a974636c8d
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #pragma once
22 #include <sfx2/shell.hxx>
23 #include <tools/link.hxx>
24 #include <rtl/ref.hxx>
26 #include <shellids.hxx>
28 sal_uInt16 ScGetFontWorkId(); // instead of SvxFontWorkChildWindow::GetChildWindowId()
30 class SfxModule;
31 class ScViewData;
32 class TransferableDataHelper;
33 class TransferableClipboardListener;
35 class ScDrawTextObjectBar final : public SfxShell
37 ScViewData& mrViewData;
38 rtl::Reference<TransferableClipboardListener> mxClipEvtLstnr;
39 bool bPastePossible;
41 DECL_LINK( ClipboardChanged, TransferableDataHelper*, void );
43 public:
44 SFX_DECL_INTERFACE(SCID_DRAW_TEXT_SHELL)
46 private:
47 /// SfxInterface initializer.
48 static void InitInterface_Impl();
50 public:
51 ScDrawTextObjectBar(ScViewData& rData);
52 virtual ~ScDrawTextObjectBar() override;
54 static void StateDisableItems( SfxItemSet &rSet );
56 void Execute( SfxRequest &rReq );
57 void ExecuteTrans( const SfxRequest& rReq );
58 void GetState( SfxItemSet& rSet );
59 void GetClipState( SfxItemSet& rSet );
61 void ExecuteAttr( SfxRequest &rReq );
62 void GetAttrState( SfxItemSet& rSet );
63 void ExecuteToggle( SfxRequest &rReq );
64 void GetStatePropPanelAttr(SfxItemSet &);
66 bool ExecuteCharDlg( const SfxItemSet& rArgs, SfxItemSet& rOutSet , sal_uInt16 nSlot);
67 bool ExecuteParaDlg( const SfxItemSet& rArgs, SfxItemSet& rOutSet );
69 void ExecuteExtra( SfxRequest &rReq );
70 void ExecFormText(const SfxRequest& rReq); // StarFontWork
71 void GetFormTextState(SfxItemSet& rSet);
73 private:
74 void ExecuteGlobal( SfxRequest &rReq ); // called by Execute for all objects
75 static void GetGlobalClipState( SfxItemSet& rSet );
76 void ExecutePasteContents( SfxRequest &rReq );
77 bool IsNoteEdit() const;
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */