LCOV - code coverage report
Current view: top level - sd/source/ui/func - fumeasur.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 23 4.3 %
Date: 2015-06-13 12:38:46 Functions: 2 10 20.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 "fumeasur.hxx"
      21             : #include <vcl/msgbox.hxx>
      22             : #include <sfx2/request.hxx>
      23             : #include "View.hxx"
      24             : #include "ViewShell.hxx"
      25             : #include "drawdoc.hxx"
      26             : #include <svx/svxdlg.hxx>
      27             : #include <svx/dialogs.hrc>
      28             : #include <boost/scoped_ptr.hpp>
      29             : 
      30             : namespace sd {
      31             : 
      32           0 : TYPEINIT1( FuMeasureDlg, FuPoor );
      33             : 
      34           0 : FuMeasureDlg::FuMeasureDlg (
      35             :     ViewShell* pViewSh,
      36             :     ::sd::Window* pWin,
      37             :     ::sd::View* pView,
      38             :     SdDrawDocument* pDoc,
      39             :     SfxRequest& rReq)
      40           0 :     : FuPoor(pViewSh, pWin, pView, pDoc, rReq)
      41             : {
      42           0 : }
      43             : 
      44           0 : rtl::Reference<FuPoor> FuMeasureDlg::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq )
      45             : {
      46           0 :     rtl::Reference<FuPoor> xFunc( new FuMeasureDlg( pViewSh, pWin, pView, pDoc, rReq ) );
      47           0 :     xFunc->DoExecute(rReq);
      48           0 :     return xFunc;
      49             : }
      50             : 
      51           0 : void FuMeasureDlg::DoExecute( SfxRequest& rReq )
      52             : {
      53           0 :     SfxItemSet aNewAttr( mpDoc->GetPool() );
      54           0 :     mpView->GetAttributes( aNewAttr );
      55             : 
      56           0 :     const SfxItemSet* pArgs = rReq.GetArgs();
      57             : 
      58           0 :     if( !pArgs )
      59             :     {
      60           0 :         SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
      61           0 :         boost::scoped_ptr<SfxAbstractDialog> pDlg( pFact ? pFact->CreateSfxDialog( NULL, aNewAttr, mpView, RID_SVXPAGE_MEASURE) : 0 );
      62             : 
      63           0 :         if( pDlg.get() && (pDlg->Execute() == RET_OK) )
      64             :         {
      65           0 :             rReq.Done( *pDlg->GetOutputItemSet() );
      66           0 :             pArgs = rReq.GetArgs();
      67           0 :         }
      68             :     }
      69             : 
      70           0 :     if( pArgs )
      71           0 :         mpView->SetAttributes( *pArgs );
      72           0 : }
      73             : 
      74          66 : } // end of namespace sd
      75             : 
      76             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11