Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / sw / source / uibase / inc / srcview.hxx
blob4b540aed2faa96ae624f244b7c5a3ff8187b8b01
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 .
19 #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_SRCVIEW_HXX
20 #define INCLUDED_SW_SOURCE_UIBASE_INC_SRCVIEW_HXX
22 #include <sfx2/viewfac.hxx>
23 #include <sfx2/viewsh.hxx>
24 #include <vcl/outdev.hxx>
26 #include "srcedtw.hxx"
27 #include <shellid.hxx>
29 class SwDocShell;
30 class SvxSearchItem;
31 class SfxMedium;
33 class SwSrcView final : public SfxViewShell
35 VclPtr<SwSrcEditWindow> m_aEditWin;
37 std::unique_ptr<SvxSearchItem> m_pSearchItem;
39 bool m_bSourceSaved :1;
40 rtl_TextEncoding m_eLoadEncoding;
41 void Init();
43 // for read-only switching
44 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
46 void StartSearchAndReplace(const SvxSearchItem& rItem,
47 bool bApi,
48 bool bRecursive = false);
50 public:
51 SFX_DECL_VIEWFACTORY(SwSrcView);
52 SFX_DECL_INTERFACE(SW_SRC_VIEWSHELL)
54 private:
55 /// SfxInterface initializer.
56 static void InitInterface_Impl();
58 public:
59 SwSrcView(SfxViewFrame& rFrame, SfxViewShell*);
61 virtual ~SwSrcView() override;
63 SwDocShell* GetDocShell();
64 void SaveContent(const OUString& rTmpFile);
65 void SaveContentTo(SfxMedium& rMed);
67 bool IsModified() const {return m_aEditWin->IsModified();}
69 void Execute(SfxRequest&);
70 void GetState(SfxItemSet&);
72 SvxSearchItem* GetSearchItem();
73 void SetSearchItem( const SvxSearchItem& rItem );
75 void Load(SwDocShell* pDocShell);
77 virtual sal_uInt16 SetPrinter( SfxPrinter* pNew, SfxPrinterChangeFlags nDiff = SFX_PRINTER_ALL ) override;
78 virtual SfxPrinter* GetPrinter( bool bCreate = false ) override;
80 sal_Int32 PrintSource( OutputDevice *pOutDev, sal_Int32 nPage, bool bCalcNumPagesOnly );
82 bool HasSourceSaved() const {return m_bSourceSaved;}
86 #endif
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */