summaryrefslogtreecommitdiff
path: root/svx/inc/uiobject.hxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-25 00:16:45 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-25 00:18:49 +0200
commit6db92434c664116eb1ec6cb127f2cd957a03bb65 (patch)
tree4afc3b187cdb4df9acdbde677db489905df094c3 /svx/inc/uiobject.hxx
parentc931f3a5184928bc333796362a5616a93c6ed6d7 (diff)
uitest: add wrapper for special character window
Change-Id: I22acd9da3570e967f427207e242638f2bfd6ffb7
Diffstat (limited to 'svx/inc/uiobject.hxx')
-rw-r--r--svx/inc/uiobject.hxx34
1 files changed, 34 insertions, 0 deletions
diff --git a/svx/inc/uiobject.hxx b/svx/inc/uiobject.hxx
new file mode 100644
index 000000000000..2e90385cbcaa
--- /dev/null
+++ b/svx/inc/uiobject.hxx
@@ -0,0 +1,34 @@
+/* -*- 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/.
+ */
+
+#include <vcl/uitest/uiobject.hxx>
+
+class SvxShowCharSet;
+
+class SvxShowCharSetUIObject : WindowUIObject
+{
+ VclPtr<SvxShowCharSet> mxCharSet;
+
+public:
+
+ SvxShowCharSetUIObject(VclPtr<SvxShowCharSet> xCharSet);
+
+ virtual StringMap get_state() override;
+
+ virtual void execute(const OUString& rAction,
+ const StringMap& rParameters) override;
+
+ static std::unique_ptr<UIObject> create(vcl::Window* pWindow);
+
+protected:
+
+ OUString get_name() const override;
+};
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */