3 namespace DOM
{ namespace events
10 OUString SAL_CALL
CEvent::getType() throw (RuntimeException
)
15 Reference
< XEventTarget
> SAL_CALL
CEvent::getTarget() throw (RuntimeException
)
20 Reference
< XEventTarget
> SAL_CALL
CEvent::getCurrentTarget() throw (RuntimeException
)
22 return m_currentTarget
;
25 PhaseType SAL_CALL
CEvent::getEventPhase() throw (RuntimeException
)
30 sal_Bool SAL_CALL
CEvent::getBubbles() throw (RuntimeException
)
35 sal_Bool SAL_CALL
CEvent::getCancelable() throw (RuntimeException
)
40 com::sun::star::util::Time SAL_CALL
CEvent::getTimeStamp() throw (RuntimeException
)
45 void SAL_CALL
CEvent::stopPropagation() throw (RuntimeException
)
47 if (m_cancelable
) m_canceled
= sal_True
;
50 void SAL_CALL
CEvent::preventDefault() throw (RuntimeException
)
54 void SAL_CALL
CEvent::initEvent(const OUString
& eventTypeArg
, sal_Bool canBubbleArg
,
55 sal_Bool cancelableArg
) throw (RuntimeException
)
57 m_eventType
= eventTypeArg
;
58 m_bubbles
= canBubbleArg
;
59 m_cancelable
= cancelableArg
;