LCOV - code coverage report
Current view: top level - sd/source/ui/func - fuconnct.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 22 0.0 %
Date: 2012-08-25 Functions: 0 8 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 42 0.0 %

           Branch data     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 "fuconnct.hxx"
      21                 :            : #include <sfx2/request.hxx>
      22                 :            : #include <vcl/msgbox.hxx>
      23                 :            : #include "View.hxx"
      24                 :            : #include "ViewShell.hxx"
      25                 :            : #include "drawdoc.hxx"
      26                 :            : #include <svx/svxdlg.hxx>
      27                 :            : #include <svx/dialogs.hrc>
      28                 :            : 
      29                 :            : namespace sd {
      30                 :            : 
      31 [ #  # ][ #  # ]:          0 : TYPEINIT1( FuConnectionDlg, FuPoor );
      32                 :            : 
      33                 :            : /*************************************************************************
      34                 :            : |*
      35                 :            : |* Konstruktor
      36                 :            : |*
      37                 :            : \************************************************************************/
      38                 :            : 
      39                 :          0 : FuConnectionDlg::FuConnectionDlg (
      40                 :            :     ViewShell* pViewSh,
      41                 :            :     ::sd::Window* pWin,
      42                 :            :     ::sd::View* pView,
      43                 :            :     SdDrawDocument* pDoc,
      44                 :            :     SfxRequest& rReq)
      45                 :          0 :     : FuPoor(pViewSh, pWin, pView, pDoc, rReq)
      46                 :            : {
      47                 :          0 : }
      48                 :            : 
      49                 :          0 : FunctionReference FuConnectionDlg::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq )
      50                 :            : {
      51 [ #  # ][ #  # ]:          0 :     FunctionReference xFunc( new FuConnectionDlg( pViewSh, pWin, pView, pDoc, rReq ) );
      52         [ #  # ]:          0 :     xFunc->DoExecute(rReq);
      53                 :          0 :     return xFunc;
      54                 :            : }
      55                 :            : 
      56                 :          0 : void FuConnectionDlg::DoExecute( SfxRequest& rReq )
      57                 :            : {
      58         [ #  # ]:          0 :     SfxItemSet aNewAttr( mpDoc->GetPool() );
      59         [ #  # ]:          0 :     mpView->GetAttributes( aNewAttr );
      60                 :            : 
      61                 :          0 :     const SfxItemSet* pArgs = rReq.GetArgs();
      62                 :            : 
      63         [ #  # ]:          0 :     if( !pArgs )
      64                 :            :     {
      65         [ #  # ]:          0 :         SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
      66 [ #  # ][ #  # ]:          0 :         ::std::auto_ptr<SfxAbstractDialog> pDlg( pFact ? pFact->CreateSfxDialog( NULL, aNewAttr, mpView, RID_SVXPAGE_CONNECTION) : 0);
      67                 :            : 
      68 [ #  # ][ #  # ]:          0 :         if( pDlg.get() && (pDlg->Execute() == RET_OK) )
         [ #  # ][ #  # ]
      69                 :            :         {
      70 [ #  # ][ #  # ]:          0 :             rReq.Done( *pDlg->GetOutputItemSet() );
      71                 :          0 :             pArgs = rReq.GetArgs();
      72         [ #  # ]:          0 :         }
      73                 :            :     }
      74         [ #  # ]:          0 :     if( pArgs )
      75 [ #  # ][ #  # ]:          0 :         mpView->SetAttributes( *pArgs );
      76                 :          0 : }
      77                 :            : 
      78                 :            : } // end of namespace sd
      79                 :            : 
      80                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10