LCOV - code coverage report
Current view: top level - basctl/source/inc - doceventnotifier.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 1 0.0 %
Date: 2012-08-25 Functions: 0 1 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 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                 :            : #ifndef BASCTL_DOCEVENTNOTIFIER_HXX
      21                 :            : #define BASCTL_DOCEVENTNOTIFIER_HXX
      22                 :            : 
      23                 :            : #include <com/sun/star/frame/XModel.hpp>
      24                 :            : 
      25                 :            : #include <rtl/ref.hxx>
      26                 :            : 
      27                 :            : #include <boost/noncopyable.hpp>
      28                 :            : 
      29                 :            : //........................................................................
      30                 :            : namespace basctl
      31                 :            : {
      32                 :            : //........................................................................
      33                 :            : 
      34                 :            :     class ScriptDocument;
      35                 :            : 
      36                 :            :     //====================================================================
      37                 :            :     //= DocumentEventListener
      38                 :            :     //====================================================================
      39                 :          0 :     class SAL_NO_VTABLE DocumentEventListener : ::boost::noncopyable
      40                 :            :     {
      41                 :            :     public:
      42                 :            :         virtual void onDocumentCreated( const ScriptDocument& _rDocument ) = 0;
      43                 :            :         virtual void onDocumentOpened( const ScriptDocument& _rDocument ) = 0;
      44                 :            :         virtual void onDocumentSave( const ScriptDocument& _rDocument ) = 0;
      45                 :            :         virtual void onDocumentSaveDone( const ScriptDocument& _rDocument ) = 0;
      46                 :            :         virtual void onDocumentSaveAs( const ScriptDocument& _rDocument ) = 0;
      47                 :            :         virtual void onDocumentSaveAsDone( const ScriptDocument& _rDocument ) = 0;
      48                 :            :         virtual void onDocumentClosed( const ScriptDocument& _rDocument ) = 0;
      49                 :            :         virtual void onDocumentTitleChanged( const ScriptDocument& _rDocument ) = 0;
      50                 :            :         virtual void onDocumentModeChanged( const ScriptDocument& _rDocument ) = 0;
      51                 :            : 
      52                 :            :         virtual ~DocumentEventListener();
      53                 :            :     };
      54                 :            : 
      55                 :            :     //====================================================================
      56                 :            :     //= DocumentEventNotifier
      57                 :            :     //====================================================================
      58                 :            :     class DocumentEventNotifier_Impl;
      59                 :            :     /** allows registering at the GlobalEventBroadcaster for global document events
      60                 :            :     */
      61                 :            :     class DocumentEventNotifier
      62                 :            :     {
      63                 :            :     public:
      64                 :            :         /** create a notifier instance which notifies about events of all documents in the whole application
      65                 :            :         */
      66                 :            :         DocumentEventNotifier( DocumentEventListener& _rListener );
      67                 :            : 
      68                 :            :         /** creates a notifier instance which notifies about events at a single document
      69                 :            :         */
      70                 :            :         DocumentEventNotifier( DocumentEventListener& _rListener,
      71                 :            :             const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& _rxDocument );
      72                 :            : 
      73                 :            :         ~DocumentEventNotifier();
      74                 :            : 
      75                 :            :     public:
      76                 :            :         void    dispose();
      77                 :            : 
      78                 :            :     private:
      79                 :            :         ::rtl::Reference< DocumentEventNotifier_Impl >  m_pImpl;
      80                 :            :     };
      81                 :            : 
      82                 :            : //........................................................................
      83                 :            : } // namespace basctl
      84                 :            : //........................................................................
      85                 :            : 
      86                 :            : #endif // BASCTL_DOCEVENTNOTIFIER_HXX
      87                 :            : 
      88                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10