Line data Source code
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 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include "NavigatorWrapper.hxx"
21 : #include "navigatr.hrc"
22 : #include "ViewShellBase.hxx"
23 :
24 : #include <sfx2/sidebar/Theme.hxx>
25 :
26 : #include <boost/bind.hpp>
27 :
28 :
29 : namespace sd { namespace sidebar {
30 :
31 0 : NavigatorWrapper::NavigatorWrapper (
32 : ::Window* pParent,
33 : sd::ViewShellBase& rViewShellBase,
34 : SfxBindings* pBindings)
35 : : Control(pParent, 0),
36 : mrViewShellBase(rViewShellBase),
37 : maNavigator(
38 : this,
39 : NULL,
40 : SdResId(FLT_NAVIGATOR),
41 : pBindings,
42 0 : ::boost::bind(&NavigatorWrapper::UpdateNavigator, this))
43 : {
44 : maNavigator.SetPosSizePixel(
45 : Point(0,0),
46 0 : GetSizePixel());
47 0 : maNavigator.SetBackground(sfx2::sidebar::Theme::GetWallpaper(sfx2::sidebar::Theme::Paint_PanelBackground));
48 0 : maNavigator.Show();
49 0 : }
50 :
51 :
52 :
53 :
54 0 : NavigatorWrapper::~NavigatorWrapper (void)
55 : {
56 0 : }
57 :
58 :
59 :
60 :
61 0 : void NavigatorWrapper::Resize (void)
62 : {
63 0 : maNavigator.SetSizePixel(GetSizePixel());
64 0 : }
65 :
66 :
67 :
68 :
69 0 : css::ui::LayoutSize NavigatorWrapper::GetHeightForWidth (const sal_Int32 nWidth)
70 : {
71 : (void)nWidth;
72 :
73 0 : return css::ui::LayoutSize(-1,-1,-1);
74 : }
75 :
76 :
77 :
78 :
79 0 : void NavigatorWrapper::UpdateNavigator (void)
80 : {
81 0 : maNavigator.InitTreeLB(mrViewShellBase.GetDocument());
82 0 : }
83 :
84 :
85 :
86 :
87 0 : void NavigatorWrapper::GetFocus (void)
88 : {
89 0 : maNavigator.GrabFocus();
90 0 : }
91 :
92 :
93 :
94 0 : } } // end of namespace sd::sidebar
95 :
96 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|