LCOV - code coverage report
Current view: top level - libreoffice/forms/source/xforms - xformsevent.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 2 0.0 %
Date: 2012-12-27 Functions: 0 3 0.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             : #ifndef __XFORMSEVENT_HXX
      20             : #define __XFORMSEVENT_HXX
      21             : 
      22             : #include <sal/types.h>
      23             : #include <cppuhelper/implbase1.hxx>
      24             : #include <com/sun/star/uno/Reference.h>
      25             : #include <com/sun/star/xforms/XFormsEvent.hpp>
      26             : #include <com/sun/star/xml/dom/events/XEventTarget.hpp>
      27             : 
      28             : namespace com {
      29             : namespace sun {
      30             : namespace star {
      31             : namespace xforms {
      32             : 
      33             : class XFormsEventConcrete : public cppu::WeakImplHelper1< XFormsEvent > {
      34             : 
      35             :     public:
      36             : 
      37             :         typedef com::sun::star::uno::RuntimeException RuntimeException_t;
      38             :         typedef com::sun::star::uno::Reference< com::sun::star::xml::dom::events::XEventTarget > XEventTarget_t;
      39             :         typedef com::sun::star::xml::dom::events::PhaseType PhaseType_t;
      40             :         typedef com::sun::star::util::Time Time_t;
      41             : 
      42           0 :         inline XFormsEventConcrete( void ) : m_canceled(sal_False) {}
      43           0 :         virtual ~XFormsEventConcrete( void ) {}
      44             : 
      45             :         virtual rtl::OUString SAL_CALL getType() throw (RuntimeException_t);
      46             :         virtual XEventTarget_t SAL_CALL getTarget() throw (RuntimeException_t);
      47             :         virtual XEventTarget_t SAL_CALL getCurrentTarget() throw (RuntimeException_t);
      48             :         virtual PhaseType_t SAL_CALL getEventPhase() throw (RuntimeException_t);
      49             :         virtual sal_Bool SAL_CALL getBubbles() throw (RuntimeException_t);
      50             :         virtual sal_Bool SAL_CALL getCancelable() throw (RuntimeException_t);
      51             :         virtual Time_t SAL_CALL getTimeStamp() throw (RuntimeException_t);
      52             :         virtual void SAL_CALL stopPropagation() throw (RuntimeException_t);
      53             :         virtual void SAL_CALL preventDefault() throw (RuntimeException_t);
      54             : 
      55             :         virtual void SAL_CALL initXFormsEvent(
      56             :                             const rtl::OUString& typeArg,
      57             :                             sal_Bool canBubbleArg,
      58             :                             sal_Bool cancelableArg )
      59             :                             throw (RuntimeException_t);
      60             : 
      61             :         virtual void SAL_CALL initEvent(
      62             :             const rtl::OUString& eventTypeArg,
      63             :             sal_Bool canBubbleArg,
      64             :             sal_Bool cancelableArg)
      65             :             throw (RuntimeException_t);
      66             : 
      67             :     private:
      68             : 
      69             :         sal_Bool m_canceled;
      70             : 
      71             :     protected:
      72             : 
      73             :         rtl::OUString m_eventType;
      74             :         XEventTarget_t m_target;
      75             :         XEventTarget_t m_currentTarget;
      76             :         PhaseType_t m_phase;
      77             :         sal_Bool m_bubbles;
      78             :         sal_Bool m_cancelable;
      79             :         Time_t m_time;
      80             : };
      81             : 
      82             : } } } }
      83             : 
      84             : #endif
      85             : 
      86             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10