nss: upgrade to release 3.73
[LibreOffice.git] / sw / source / uibase / inc / srcview.hxx
bloba2e8277b98922457863dbde1cf7bae44a333189e
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: public SfxViewShell
35 VclPtr<SwSrcEditWindow> aEditWin;
37 std::unique_ptr<SvxSearchItem> pSearchItem;
39 bool bSourceSaved :1;
40 rtl_TextEncoding eLoadEncoding;
41 void Init();
43 // for read-only switching
44 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
46 protected:
47 void StartSearchAndReplace(const SvxSearchItem& rItem,
48 bool bApi,
49 bool bRecursive = false);
51 public:
52 SFX_DECL_VIEWFACTORY(SwSrcView);
53 SFX_DECL_INTERFACE(SW_SRC_VIEWSHELL)
55 private:
56 /// SfxInterface initializer.
57 static void InitInterface_Impl();
59 public:
60 SwSrcView(SfxViewFrame* pFrame, SfxViewShell*);
62 virtual ~SwSrcView() override;
64 SwDocShell* GetDocShell();
65 void SaveContent(const OUString& rTmpFile);
66 void SaveContentTo(SfxMedium& rMed);
68 bool IsModified() const {return aEditWin->IsModified();}
70 void Execute(SfxRequest&);
71 void GetState(SfxItemSet&);
73 SvxSearchItem* GetSearchItem();
74 void SetSearchItem( const SvxSearchItem& rItem );
76 void Load(SwDocShell* pDocShell);
78 virtual sal_uInt16 SetPrinter( SfxPrinter* pNew, SfxPrinterChangeFlags nDiff = SFX_PRINTER_ALL ) override;
79 virtual SfxPrinter* GetPrinter( bool bCreate = false ) override;
81 sal_Int32 PrintSource( OutputDevice *pOutDev, sal_Int32 nPage, bool bCalcNumPagesOnly );
83 bool HasSourceSaved() const {return bSourceSaved;}
87 #endif
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */