Version 6.1.0.2, tag libreoffice-6.1.0.2
[LibreOffice.git] / sd / source / ui / sidebar / NavigatorWrapper.hxx
blobbd85159355f71f3a560bd8c51e4f9daf5f38ada0
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef INCLUDED_SD_SOURCE_UI_SIDEBAR_NAVIGATORWRAPPER_HXX
20 #define INCLUDED_SD_SOURCE_UI_SIDEBAR_NAVIGATORWRAPPER_HXX
22 #include <sfx2/sidebar/ILayoutableWindow.hxx>
23 #include <vcl/ctrl.hxx>
24 #include <navigatr.hxx>
26 class SfxBindings;
27 namespace sd { class ViewShellBase; }
29 namespace sd { namespace sidebar {
31 /** Present the navigator as control that can be displayed inside the
32 sidebar.
33 This wrapper has two main responsibilities:
34 - Watch for document changes and update the navigator when one
35 happens.
36 - Forward size changes from sidebar to navigator.
38 class NavigatorWrapper
39 : public Control,
40 public sfx2::sidebar::ILayoutableWindow
42 public:
43 NavigatorWrapper (
44 vcl::Window* pParent,
45 sd::ViewShellBase& rViewShellBase,
46 SfxBindings* pBindings);
47 virtual ~NavigatorWrapper() override;
48 virtual void dispose() override;
50 // Control
51 virtual void Resize() override;
52 virtual void GetFocus() override;
54 // From ILayoutableWindow
55 virtual css::ui::LayoutSize GetHeightForWidth (const sal_Int32 nWidth) override;
57 private:
58 ViewShellBase& mrViewShellBase;
59 VclPtr<SdNavigatorWin> maNavigator;
61 void UpdateNavigator();
64 } } // end of namespace sd::sidebar
66 #endif
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */