diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-09-30 21:25:37 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-10-01 14:36:52 +0000 |
commit | 786971a13adba78072c0ec03101c6c63d76a432f (patch) | |
tree | a3885fa9f2c560a33a52f93bb37525dd98584d22 /include/svx/uiobject.hxx | |
parent | d751af3f84909996d44b9354ce9ed34891d374e1 (diff) |
add initial drawinglayer support to UI testing framework
Change-Id: Id0450cdf655accb6bd1a50871e83d5c8ecdaab5f
Reviewed-on: https://gerrit.libreoffice.org/29417
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'include/svx/uiobject.hxx')
-rw-r--r-- | include/svx/uiobject.hxx | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/include/svx/uiobject.hxx b/include/svx/uiobject.hxx new file mode 100644 index 000000000000..ef03a3b21494 --- /dev/null +++ b/include/svx/uiobject.hxx @@ -0,0 +1,37 @@ +/* -*- 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 <vcl/uitest/uiobject.hxx> + +class SdrObject; + +class SVX_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; +}; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |