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_UI_INC_SRCVIEW_HXX
20 : #define INCLUDED_SW_SOURCE_UI_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 : SwSrcEditWindow aEditWin;
36 :
37 : SvxSearchItem* pSearchItem;
38 :
39 : sal_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 : sal_Bool bFromStart,
49 : sal_Bool bApi,
50 : sal_Bool bRecursive = sal_False);
51 :
52 : public:
53 :
54 0 : SFX_DECL_VIEWFACTORY(SwSrcView);
55 0 : SFX_DECL_INTERFACE(SW_SRC_VIEWSHELL)
56 : TYPEINFO_OVERRIDE();
57 :
58 : SwSrcView(SfxViewFrame* pFrame, SfxViewShell*);
59 :
60 : virtual ~SwSrcView();
61 :
62 : SwDocShell* GetDocShell();
63 : SwSrcEditWindow& GetEditWin() {return aEditWin;}
64 : void SaveContent(const OUString& rTmpFile);
65 : void SaveContentTo(SfxMedium& rMed);
66 :
67 0 : sal_Bool IsModified() {return aEditWin.IsModified();}
68 :
69 : void Execute(SfxRequest&);
70 : void GetState(SfxItemSet&);
71 :
72 : SvxSearchItem* GetSearchItem();
73 : void SetSearchItem( const SvxSearchItem& rItem );
74 :
75 : void Load(SwDocShell* pDocShell);
76 :
77 : virtual sal_uInt16 SetPrinter( SfxPrinter* pNew, sal_uInt16 nDiff = SFX_PRINTER_ALL, bool bIsAPI=false ) SAL_OVERRIDE;
78 : virtual SfxPrinter* GetPrinter( bool bCreate = false ) SAL_OVERRIDE;
79 :
80 : sal_Int32 PrintSource( OutputDevice *pOutDev, sal_Int32 nPage, bool bCalcNumPagesOnly );
81 :
82 0 : void SourceSaved() {bSourceSaved = sal_True;}
83 0 : sal_Bool HasSourceSaved() const {return bSourceSaved;}
84 :
85 : };
86 :
87 : #endif
88 :
89 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|