/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the Collabora Office 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 .
 */

#pragma once

#include <rtl/ustring.hxx>
#include <strings.hrc>
#include <cpo/uno/Sequence.hxx>
#include <comphelper/sequence.hxx>
#include <unotools/configitem.hxx>
#include <unotools/resmgr.hxx>
#include <svtools/colorcfg.hxx>
#include "colorscheme.hxx"
#include <map>

namespace basctl
{
// Name used to refer to the application color scheme (the one defined in Application Colors)
inline constexpr OUString DEFAULT_SCHEME = u"COLORSCHEME_DEFAULT"_ustr;

typedef std::map<OUString, TranslateId> SchemeTranslateIdMap;

class BasicColorConfig : public utl::ConfigItem
{
private:
    // Name of the color scheme that is currently active
    OUString m_sCurrentColorScheme;

    // Names of all available scheme names
    cpo::uno::Sequence<OUString> m_aSchemeNames;

    // Names of default color schemes shipped with LibreOffice
    cpo::uno::Sequence<OUString> m_aDefaultSchemes
        = { u"COLORSCHEME_LIBREOFFICE_LIGHT"_ustr, u"COLORSCHEME_LIBREOFFICE_DARK"_ustr,
            u"COLORSCHEME_BREEZE_LIGHT"_ustr,      u"COLORSCHEME_BREEZE_DARK"_ustr,
            u"COLORSCHEME_SOLARIZED_LIGHT"_ustr,   u"COLORSCHEME_SOLARIZED_DARK"_ustr };

    // Used to get colors defined in the Application Colors dialog
    const svtools::ColorConfig aColorConfig;

    virtual void ImplCommit() override;

public:
    BasicColorConfig();
    virtual ~BasicColorConfig() override;

    virtual void Notify(const cpo::uno::Sequence<OUString>& aPropertyNames) override;

    ColorScheme GetColorScheme(const OUString& rScheme);
    const cpo::uno::Sequence<OUString>& GetColorSchemeNames() { return m_aSchemeNames; }

    // Returns the color scheme defined by the current Application Colors
    ColorScheme GetAutomaticColorScheme();

    // Returns the name of the currently active color scheme
    OUString& GetCurrentColorSchemeName();

    // Returns the current color scheme
    ColorScheme GetCurrentColorScheme() { return GetColorScheme(GetCurrentColorSchemeName()); }

    // Returns true if the scheme is a scheme preinstalled with LO
    bool IsDefaultScheme(const OUString& rScheme)
    {
        return comphelper::findValue(m_aDefaultSchemes, rScheme) != -1;
    }

    // Returns the TranslateId of the scheme name
    static TranslateId GetSchemeTranslateId(const OUString& rScheme);
};

} // namespace basctl

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
