summaryrefslogtreecommitdiff
path: root/include/svx/devtools/DevelopmentToolDockingWindow.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svx/devtools/DevelopmentToolDockingWindow.hxx')
-rw-r--r--include/svx/devtools/DevelopmentToolDockingWindow.hxx37
1 files changed, 37 insertions, 0 deletions
diff --git a/include/svx/devtools/DevelopmentToolDockingWindow.hxx b/include/svx/devtools/DevelopmentToolDockingWindow.hxx
new file mode 100644
index 000000000000..89030c0652e1
--- /dev/null
+++ b/include/svx/devtools/DevelopmentToolDockingWindow.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/.
+ *
+ */
+
+#pragma once
+
+#include <svx/svxdllapi.h>
+#include <sfx2/dockwin.hxx>
+#include <vcl/customweld.hxx>
+#include <vcl/weld.hxx>
+
+class SAL_WARN_UNUSED SVX_DLLPUBLIC DevelopmentToolChildWindow final : public SfxChildWindow
+{
+ SFX_DECL_CHILDWINDOW_WITHID(DevelopmentToolChildWindow);
+
+ DevelopmentToolChildWindow(vcl::Window* pParentWindow, sal_uInt16 nId, SfxBindings* pBindings,
+ SfxChildWinInfo* pInfo);
+ virtual ~DevelopmentToolChildWindow() override;
+};
+
+class SAL_WARN_UNUSED SVX_DLLPUBLIC DevelopmentToolDockingWindow final : public SfxDockingWindow
+{
+public:
+ DevelopmentToolDockingWindow(SfxBindings* pBindings, SfxChildWindow* pChildWindow,
+ vcl::Window* pParent);
+ virtual ~DevelopmentToolDockingWindow() override;
+
+ virtual void ToggleFloatingMode() override;
+};
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */