1
0
Fork 0
libreoffice/include/svx/uiobject.hxx
Daniel Baumann 8e63e14cf6
Adding upstream version 4:25.2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 16:20:04 +02:00

61 lines
1.4 KiB
C++

/* -*- 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/.
*/
#ifndef INCLUDED_SVX_UIOBJECT_HXX
#define INCLUDED_SVX_UIOBJECT_HXX
#include <svx/svxdllapi.h>
#include <svx/SvxColorValueSet.hxx>
#include <vcl/uitest/uiobject.hxx>
class SdrObject;
class SvxColorValueSet;
class SVXCORE_DLLPUBLIC SdrUIObject : public UIObject
{
public:
virtual ~SdrUIObject() override;
virtual StringMap get_state() override;
virtual void execute(const OUString& rAction,
const StringMap& rParameters) override;
virtual OUString get_type() const override;
virtual SdrObject* get_object() = 0;
};
class SvxColorValueSetUIObject final : public DrawingAreaUIObject
{
SvxColorValueSet* mpColorSet;
public:
SvxColorValueSetUIObject(vcl::Window* pColorSetWin);
virtual void execute(const OUString& rAction,
const StringMap& rParameters) override;
static std::unique_ptr<UIObject> create(vcl::Window* pWindow);
virtual StringMap get_state() override;
private:
OUString get_name() const override;
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */