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 .
22 #include <comphelper/MasterPropertySet.hxx>
23 #include <com/sun/star/lang/XServiceInfo.hpp>
24 #include <com/sun/star/lang/XTypeProvider.hpp>
25 #include <cppuhelper/weak.hxx>
26 #include <vcl/vclptr.hxx>
28 class SwXTextDocument
;
33 class SwXDocumentSettings final
:
34 public comphelper::MasterPropertySet
,
35 public css::lang::XServiceInfo
,
36 public css::lang::XTypeProvider
,
37 public cppu::OWeakObject
39 SwXTextDocument
* mpModel
;
43 /** the printer should be set only once; since there are several
44 * printer-related properties, remember the last printer and set it in
46 VclPtr
<SfxPrinter
> mpPrinter
;
47 bool mbPreferPrinterPapersize
;
49 virtual void _preSetValues () override
;
50 virtual void _setSingleValue( const comphelper::PropertyInfo
& rInfo
, const css::uno::Any
&rValue
) override
;
51 virtual void _postSetValues () override
;
53 virtual void _preGetValues () override
;
54 virtual void _getSingleValue( const comphelper::PropertyInfo
& rInfo
, css::uno::Any
& rValue
) override
;
55 virtual void _postGetValues () override
;
56 virtual ~SwXDocumentSettings()
59 SwXDocumentSettings( SwXTextDocument
* pModel
);
62 virtual css::uno::Any SAL_CALL
queryInterface( const css::uno::Type
& aType
) override
;
63 virtual void SAL_CALL
acquire( )
65 virtual void SAL_CALL
release( )
69 virtual OUString SAL_CALL
getImplementationName( ) override
;
70 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
71 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames( ) override
;
74 virtual css::uno::Sequence
< css::uno::Type
> SAL_CALL
getTypes( ) override
;
75 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId( ) override
;
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */