LibreOffice Module vcl (master) 1
metricfielduiobject.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
9
10#ifndef INCLUDED_VCL_UITEST_METRICFIELDUIOBJECT_HXX
11#define INCLUDED_VCL_UITEST_METRICFIELDUIOBJECT_HXX
12
14
15class MetricField;
16
18{
20
21public:
23 virtual ~MetricFieldUIObject() override;
24
25 virtual void execute(const OUString& rAction, const StringMap& rParameters) override;
26
27 virtual StringMap get_state() override;
28
29 static std::unique_ptr<UIObject> create(vcl::Window* pWindow);
30
31private:
32 virtual OUString get_name() const override;
33};
34
35#endif
36
37/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual void execute(const OUString &rAction, const StringMap &rParameters) override
Executes an action on the wrapped UI object, possibly with some additional parameters.
VclPtr< MetricField > mxMetricField
virtual ~MetricFieldUIObject() override
virtual OUString get_name() const override
static std::unique_ptr< UIObject > create(vcl::Window *pWindow)
virtual StringMap get_state() override
Returns the state of the wrapped UI object as a string key value map.
MetricFieldUIObject(const VclPtr< MetricField > &xEdit)
std::map< OUString, OUString > StringMap