LCOV - code coverage report
Current view: top level - sd/source/ui/dlg - NavigatorChildWindow.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 13 13 100.0 %
Date: 2014-11-03 Functions: 6 6 100.0 %
Legend: Lines: hit not hit

          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          74 : SFX_IMPL_CHILDWINDOWCONTEXT(NavigatorChildWindow, SID_NAVIGATOR)
      33             : 
      34           4 : void RequestNavigatorUpdate (SfxBindings* pBindings)
      35             : {
      36           4 :     if (pBindings != NULL
      37           4 :         && pBindings->GetDispatcher() != NULL)
      38             :     {
      39           4 :         SfxBoolItem aItem (SID_NAVIGATOR_INIT, true);
      40             :         pBindings->GetDispatcher()->Execute(
      41             :             SID_NAVIGATOR_INIT,
      42             :             SfxCallMode::ASYNCHRON | SfxCallMode::RECORD,
      43             :             &aItem,
      44           4 :             0L);
      45             :     }
      46           4 : }
      47             : 
      48           2 : NavigatorChildWindow::NavigatorChildWindow (
      49             :     vcl::Window* pParent,
      50             :     sal_uInt16 nId,
      51             :     SfxBindings* pBindings,
      52             :     SfxChildWinInfo* )
      53           2 :     : SfxChildWindowContext( nId )
      54             : {
      55             :     SdNavigatorWin* pNavWin = new SdNavigatorWin(
      56             :         pParent,
      57             :         this,
      58             :         SdResId( FLT_NAVIGATOR ),
      59             :         pBindings,
      60           2 :         ::boost::bind(RequestNavigatorUpdate, pBindings));
      61             : 
      62           2 :     SetWindow( pNavWin );
      63           2 : }
      64             : 
      65         114 : } // end of namespace sd
      66             : 
      67             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10