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 "NavigatorChildWindow.hxx"
21 : #include "navigatr.hxx"
22 : #include "app.hrc"
23 : #include "navigatr.hrc"
24 : #include <sfx2/app.hxx>
25 : #include <sfx2/bindings.hxx>
26 : #include <sfx2/dispatch.hxx>
27 : #include <svl/eitem.hxx>
28 : #include <boost/bind.hpp>
29 :
30 : namespace sd {
31 :
32 43 : SFX_IMPL_CHILDWINDOWCONTEXT(NavigatorChildWindow, SID_NAVIGATOR)
33 :
34 2 : void RequestNavigatorUpdate (SfxBindings* pBindings)
35 : {
36 2 : if (pBindings != NULL
37 2 : && pBindings->GetDispatcher() != NULL)
38 : {
39 2 : SfxBoolItem aItem (SID_NAVIGATOR_INIT, true);
40 : pBindings->GetDispatcher()->Execute(
41 : SID_NAVIGATOR_INIT,
42 : SfxCallMode::ASYNCHRON | SfxCallMode::RECORD,
43 : &aItem,
44 2 : 0L);
45 : }
46 2 : }
47 :
48 1 : NavigatorChildWindow::NavigatorChildWindow (
49 : vcl::Window* pParent,
50 : sal_uInt16 nId,
51 : SfxBindings* pBindings,
52 : SfxChildWinInfo* )
53 1 : : SfxChildWindowContext( nId )
54 : {
55 : VclPtr<SdNavigatorWin> pNavWin = VclPtr<SdNavigatorWin>::Create(
56 :
57 : pParent,
58 : this,
59 : SdResId( FLT_NAVIGATOR ),
60 1 : pBindings);
61 :
62 : pNavWin->SetUpdateRequestFunctor(
63 1 : ::boost::bind(RequestNavigatorUpdate, pBindings));
64 :
65 1 : SetWindow( pNavWin );
66 1 : }
67 :
68 66 : } // end of namespace sd
69 :
70 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|