Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 : #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_SRCVIEW_HXX
20 : #define INCLUDED_SW_SOURCE_UIBASE_INC_SRCVIEW_HXX
21 :
22 : #include <sfx2/viewfac.hxx>
23 : #include <sfx2/viewsh.hxx>
24 : #include <vcl/outdev.hxx>
25 :
26 : #include "srcedtw.hxx"
27 : #include "shellid.hxx"
28 :
29 : class SwDocShell;
30 : class SvxSearchItem;
31 : class SfxMedium;
32 :
33 : class SwSrcView: public SfxViewShell
34 : {
35 : VclPtr<SwSrcEditWindow> aEditWin;
36 :
37 : SvxSearchItem* pSearchItem;
38 :
39 : bool bSourceSaved :1;
40 : rtl_TextEncoding eLoadEncoding;
41 : void Init();
42 :
43 : // for read-only switching
44 : virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) SAL_OVERRIDE;
45 :
46 : protected:
47 : sal_uInt16 StartSearchAndReplace(const SvxSearchItem& rItem,
48 : bool bFromStart,
49 : bool bApi,
50 : bool bRecursive = false);
51 :
52 : public:
53 59 : SFX_DECL_VIEWFACTORY(SwSrcView);
54 59 : SFX_DECL_INTERFACE(SW_SRC_VIEWSHELL)
55 : TYPEINFO_OVERRIDE();
56 :
57 : private:
58 : /// SfxInterface initializer.
59 : static void InitInterface_Impl();
60 :
61 : public:
62 : SwSrcView(SfxViewFrame* pFrame, SfxViewShell*);
63 :
64 : virtual ~SwSrcView();
65 :
66 : SwDocShell* GetDocShell();
67 : SwSrcEditWindow& GetEditWin() { return *aEditWin.get(); }
68 : void SaveContent(const OUString& rTmpFile);
69 : void SaveContentTo(SfxMedium& rMed);
70 :
71 0 : bool IsModified() {return aEditWin->IsModified();}
72 :
73 : void Execute(SfxRequest&);
74 : void GetState(SfxItemSet&);
75 :
76 : SvxSearchItem* GetSearchItem();
77 : void SetSearchItem( const SvxSearchItem& rItem );
78 :
79 : void Load(SwDocShell* pDocShell);
80 :
81 : virtual sal_uInt16 SetPrinter( SfxPrinter* pNew, SfxPrinterChangeFlags nDiff = SFX_PRINTER_ALL, bool bIsAPI=false ) SAL_OVERRIDE;
82 : virtual SfxPrinter* GetPrinter( bool bCreate = false ) SAL_OVERRIDE;
83 :
84 : sal_Int32 PrintSource( OutputDevice *pOutDev, sal_Int32 nPage, bool bCalcNumPagesOnly );
85 :
86 0 : void SourceSaved() {bSourceSaved = true;}
87 0 : bool HasSourceSaved() const {return bSourceSaved;}
88 :
89 : };
90 :
91 : #endif
92 :
93 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|