2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-11-15 17:28:16 +00: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 .
|
|
|
|
*/
|
2007-04-11 18:21:25 +00:00
|
|
|
#ifndef INCLUDED_SVTOOLS_HELPOPT_HXX
|
|
|
|
#define INCLUDED_SVTOOLS_HELPOPT_HXX
|
|
|
|
|
2013-11-09 15:40:46 -06:00
|
|
|
#include <svtools/svtdllapi.h>
|
2007-04-11 18:21:25 +00:00
|
|
|
|
|
|
|
#include <list>
|
2013-09-02 09:03:31 +01:00
|
|
|
#include <rtl/ustring.hxx>
|
2009-10-06 07:38:24 +02:00
|
|
|
#include <unotools/options.hxx>
|
2016-06-15 01:56:58 +02:00
|
|
|
#include <memory>
|
2007-04-11 18:21:25 +00:00
|
|
|
|
|
|
|
class SvtHelpOptions_Impl;
|
|
|
|
|
2009-10-06 07:38:24 +02:00
|
|
|
class SVT_DLLPUBLIC SvtHelpOptions: public utl::detail::Options
|
2007-04-11 18:21:25 +00:00
|
|
|
{
|
2016-06-15 01:56:58 +02:00
|
|
|
std::shared_ptr<SvtHelpOptions_Impl> pImpl;
|
2007-04-11 18:21:25 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
SvtHelpOptions();
|
2016-09-13 13:09:01 +02:00
|
|
|
virtual ~SvtHelpOptions() override;
|
2007-04-11 18:21:25 +00:00
|
|
|
|
2014-03-20 14:38:38 +02:00
|
|
|
void SetExtendedHelp( bool b );
|
|
|
|
bool IsExtendedHelp() const;
|
|
|
|
void SetHelpTips( bool b );
|
|
|
|
bool IsHelpTips() const;
|
2007-04-11 18:21:25 +00:00
|
|
|
|
2013-08-19 10:31:19 +02:00
|
|
|
const OUString& GetHelpStyleSheet()const;
|
|
|
|
void SetHelpStyleSheet(const OUString& rStyleSheet);
|
2007-04-11 18:21:25 +00:00
|
|
|
|
2017-12-25 19:21:12 +02:00
|
|
|
OUString const & GetSystem() const;
|
2007-04-11 18:21:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-10-14 08:27:31 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|