LibreOffice Module basctl (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 "baside2.hxx"
13
14namespace basctl
15{
16class EditorWindow;
17
19{
21
22public:
24
25 virtual StringMap get_state() override;
26
27 static std::unique_ptr<UIObject> create(vcl::Window* pWindow);
28
29protected:
30 virtual OUString get_name() const override;
31};
32
33} // namespace basctl
34
35/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
static std::unique_ptr< UIObject > create(vcl::Window *pWindow)
Definition: uiobject.cxx:39
virtual OUString get_name() const override
Definition: uiobject.cxx:46
EditorWindowUIObject(const VclPtr< basctl::EditorWindow > &xEditorWindow)
Definition: uiobject.cxx:16
VclPtr< basctl::EditorWindow > mxEditorWindow
Definition: uiobject.hxx:20
virtual StringMap get_state() override
Definition: uiobject.cxx:22
std::map< OUString, OUString > StringMap