1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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>
33 class SwSrcView
: public SfxViewShell
35 VclPtr
<SwSrcEditWindow
> aEditWin
;
37 std::unique_ptr
<SvxSearchItem
> pSearchItem
;
40 rtl_TextEncoding eLoadEncoding
;
43 // for read-only switching
44 virtual void Notify( SfxBroadcaster
& rBC
, const SfxHint
& rHint
) override
;
47 void StartSearchAndReplace(const SvxSearchItem
& rItem
,
49 bool bRecursive
= false);
52 SFX_DECL_VIEWFACTORY(SwSrcView
);
53 SFX_DECL_INTERFACE(SW_SRC_VIEWSHELL
)
56 /// SfxInterface initializer.
57 static void InitInterface_Impl();
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
;}
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */