2023-01-26 06:19:31 -06:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
* 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/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2024-01-08 11:46:13 -06:00
|
|
|
#include <set>
|
2023-01-26 06:19:31 -06:00
|
|
|
#include <svx/svxdllapi.h>
|
2023-01-26 08:43:00 -06:00
|
|
|
#include <docmodel/theme/ColorSet.hxx>
|
2023-01-26 06:19:31 -06:00
|
|
|
#include <svx/svdobj.hxx>
|
2023-08-17 15:35:26 -05:00
|
|
|
#include <svx/svdview.hxx>
|
|
|
|
#include <svl/undo.hxx>
|
2023-01-26 06:19:31 -06:00
|
|
|
|
|
|
|
namespace svx
|
|
|
|
{
|
|
|
|
namespace theme
|
|
|
|
{
|
2023-08-17 15:35:26 -05:00
|
|
|
SVXCORE_DLLPUBLIC void updateSdrObject(model::ColorSet const& rColorSet, SdrObject* pObject,
|
|
|
|
SdrView* pView, SfxUndoManager* pUndoManager = nullptr);
|
2024-01-07 11:31:22 -06:00
|
|
|
|
2024-01-08 11:46:13 -06:00
|
|
|
/// Sends to the LOK updated palettes
|
|
|
|
SVXCORE_DLLPUBLIC void notifyLOK(std::shared_ptr<model::ColorSet> const& pColorSet,
|
|
|
|
const std::set<Color>& rDocumentColors);
|
2023-01-26 06:19:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
} // end svx namespace
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|