2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-11 09:51:50 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2013-10-23 19:16:30 +02:00
|
|
|
#ifndef INCLUDED_UNOTOOLS_MISCCFG_HXX
|
|
|
|
#define INCLUDED_UNOTOOLS_MISCCFG_HXX
|
2004-02-03 19:45:27 +00:00
|
|
|
|
2013-11-09 15:34:19 -06:00
|
|
|
#include <unotools/unotoolsdllapi.h>
|
|
|
|
#include <unotools/options.hxx>
|
2004-02-03 19:45:27 +00:00
|
|
|
|
2009-10-12 11:49:13 +02:00
|
|
|
namespace utl
|
2004-02-03 19:45:27 +00:00
|
|
|
{
|
2009-10-12 11:49:13 +02:00
|
|
|
class SfxMiscCfg;
|
2004-02-03 19:45:27 +00:00
|
|
|
|
2009-10-12 11:49:13 +02:00
|
|
|
class UNOTOOLS_DLLPUBLIC MiscCfg : public detail::Options
|
|
|
|
{
|
|
|
|
SfxMiscCfg* pImpl;
|
2004-02-03 19:45:27 +00:00
|
|
|
|
|
|
|
public:
|
2009-10-12 11:49:13 +02:00
|
|
|
MiscCfg( );
|
|
|
|
virtual ~MiscCfg( );
|
2004-02-03 19:45:27 +00:00
|
|
|
|
2014-02-19 12:30:34 +01:00
|
|
|
bool IsNotFoundWarning() const;
|
|
|
|
void SetNotFoundWarning( bool bSet);
|
2004-02-03 19:45:27 +00:00
|
|
|
|
2014-02-19 12:30:34 +01:00
|
|
|
bool IsPaperSizeWarning() const;
|
|
|
|
void SetPaperSizeWarning(bool bSet);
|
2004-02-03 19:45:27 +00:00
|
|
|
|
2014-02-19 12:30:34 +01:00
|
|
|
bool IsPaperOrientationWarning() const;
|
|
|
|
void SetPaperOrientationWarning( bool bSet);
|
2004-02-03 19:45:27 +00:00
|
|
|
|
|
|
|
// 0 ... 99
|
2009-10-12 11:49:13 +02:00
|
|
|
sal_Int32 GetYear2000() const;
|
2004-02-03 19:45:27 +00:00
|
|
|
void SetYear2000( sal_Int32 nSet );
|
2009-10-12 11:49:13 +02:00
|
|
|
};
|
2004-02-03 19:45:27 +00:00
|
|
|
|
2009-11-03 18:41:58 +01:00
|
|
|
}
|
2004-02-03 19:45:27 +00:00
|
|
|
|
|
|
|
#endif // _MISCCFG_HXX
|
|
|
|
|
2010-10-14 08:27:31 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|