LibreOffice Module sd (master) 1
uiobject.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#include <memory>
12#include "Window.hxx"
13
15{
16public:
18
19 virtual StringMap get_state() override;
20
21 virtual void execute(const OUString& rAction, const StringMap& rParameters) override;
22
23 virtual std::unique_ptr<UIObject> get_child(const OUString& rID) override;
24
25 virtual std::set<OUString> get_children() const override;
26
27 static std::unique_ptr<UIObject> create(vcl::Window* pWindow);
28
29private:
30 virtual OUString get_name() const override;
31
33};
34
35/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual std::unique_ptr< UIObject > get_child(const OUString &rID) override
Definition: uiobject.cxx:152
virtual StringMap get_state() override
Definition: uiobject.cxx:87
ImpressWindowUIObject(const VclPtr< sd::Window > &xWindow)
Definition: uiobject.cxx:81
virtual OUString get_name() const override
Definition: uiobject.cxx:175
VclPtr< sd::Window > mxWindow
Definition: uiobject.hxx:32
virtual std::set< OUString > get_children() const override
Definition: uiobject.cxx:157
static std::unique_ptr< UIObject > create(vcl::Window *pWindow)
Definition: uiobject.cxx:177
virtual void execute(const OUString &rAction, const StringMap &rParameters) override
Definition: uiobject.cxx:98
std::map< OUString, OUString > StringMap