Home
last modified time | relevance | path

Searched refs:pEvent (Results 101 – 125 of 161) sorted by relevance

1234567

/aoo4110/main/vcl/unx/generic/dtrans/
H A DX11_selection.cxx3868 XEvent* pEvent = (XEvent*)aSeq.getArray(); in handleEvent() local
3870 if( pEvent->type == ButtonPress || pEvent->type == ButtonRelease ) in handleEvent()
3871 nTimestamp = pEvent->xbutton.time; in handleEvent()
3872 else if( pEvent->type == XLIB_KeyPress || pEvent->type == KeyRelease ) in handleEvent()
3873 nTimestamp = pEvent->xkey.time; in handleEvent()
3874 else if( pEvent->type == MotionNotify ) in handleEvent()
3875 nTimestamp = pEvent->xmotion.time; in handleEvent()
3876 else if( pEvent->type == PropertyNotify ) in handleEvent()
3877 nTimestamp = pEvent->xproperty.time; in handleEvent()
3886 return sal_Bool( handleXEvent( *pEvent ) ); in handleEvent()
/aoo4110/main/filter/source/pdf/
H A Dpdffilter.cxx170 IMPL_LINK( FocusWindowWaitCursor, DestroyedLink, VclWindowEvent*, pEvent ) in IMPL_LINK() argument
172 if( pEvent->GetId() == VCLEVENT_OBJECT_DYING ) in IMPL_LINK()
/aoo4110/main/vcl/unx/generic/gdi/
H A Dsalgdi2.cxx404 static Bool GraphicsExposePredicate( Display*, XEvent* pEvent, XPointer pFrameWindow ) in GraphicsExposePredicate() argument
407 if( (pEvent->type == GraphicsExpose || pEvent->type == NoExpose) && in GraphicsExposePredicate()
408 pEvent->xnoexpose.drawable == (Drawable)pFrameWindow ) in GraphicsExposePredicate()
/aoo4110/main/extensions/source/propctrlr/
H A Dbrowserlistbox.cxx262 ::comphelper::AnyEventRef pEvent; in impl_notify_throw()
267 pEvent = new ControlEvent( _rxControl, _eType ); in impl_notify_throw()
271 impl_processEvent_throw( *pEvent ); in impl_notify_throw()
276 SharedNotifier::getNotifier()->addEvent( pEvent, this ); in impl_notify_throw()
/aoo4110/main/sw/source/ui/frmdlg/
H A Dcption.cxx591 const KeyEvent* pEvent = rNEvt.GetKeyEvent(); in PreNotify() local
592 const KeyCode& rKeyCode = pEvent->GetKeyCode(); in PreNotify()
598 String sKey( pEvent->GetCharCode() ), sName( GetText() ); in PreNotify()
/aoo4110/main/vcl/unx/generic/app/
H A Dsalinst.cxx154 Bool ImplPredicateEvent( Display *, XEvent *pEvent, char *pData ) in ImplPredicateEvent() argument
163 switch( pEvent->type ) in ImplPredicateEvent()
/aoo4110/main/vcl/inc/unx/gtk/
H A Dgtkframe.hxx143 bool handleKeyEvent( GdkEventKey* pEvent );
275 bool Dispatch( const XEvent* pEvent );
/aoo4110/main/svtools/source/toolpanel/
H A Dtoolpaneldeck.cxx474 const KeyEvent* pEvent = i_rNotifyEvent.GetKeyEvent(); in Notify() local
475 const KeyCode& rKeyCode = pEvent->GetKeyCode(); in Notify()
/aoo4110/main/toolkit/source/awt/
H A Dvclxwindow.cxx450 IMPL_LINK( VCLXWindow, WindowEventListener, VclSimpleEvent*, pEvent ) in IMPL_LINK() argument
455 DBG_ASSERT( pEvent && pEvent->ISA( VclWindowEvent ), "Unknown WindowEvent!" ); in IMPL_LINK()
456 if ( pEvent && pEvent->ISA( VclWindowEvent ) ) in IMPL_LINK()
458 DBG_ASSERT( ((VclWindowEvent*)pEvent)->GetWindow() && GetWindow(), "Window???" ); in IMPL_LINK()
459 ProcessWindowEvent( *(VclWindowEvent*)pEvent ); in IMPL_LINK()
/aoo4110/main/svtools/source/config/
H A Dextcolorcfg.cxx596 IMPL_LINK( ExtendedColorConfig_Impl, DataChangedEventListener, VclWindowEvent*, pEvent ) in IMPL_LINK() argument
598 if ( pEvent->GetId() == VCLEVENT_APPLICATION_DATACHANGED ) in IMPL_LINK()
600 DataChangedEvent* pData = (DataChangedEvent*)(pEvent->GetData()); in IMPL_LINK()
/aoo4110/main/vcl/aqua/source/window/
H A Dsalnsmenu.mm152 -(void)mouseUp: (NSEvent *)pEvent
160 NSPoint aMousePt = [pEvent locationInWindow];
/aoo4110/main/sd/source/ui/view/
H A Dviewoverlaymanager.cxx597 tools::EventMultiplexerEvent*,pEvent) in IMPL_LINK() argument
599 switch (pEvent->meEventId) in IMPL_LINK()
H A DToolBarManager.cxx1021 sd::tools::EventMultiplexerEvent*,pEvent) in IMPL_LINK() argument
1023 if (pEvent != NULL) in IMPL_LINK()
1025 switch (pEvent->meEventId) in IMPL_LINK()
/aoo4110/main/sd/source/ui/slideshow/
H A Dshowwin.cxx703 IMPL_LINK( ShowWindow, EventHdl, VclWindowEvent*, pEvent ) in IMPL_LINK() argument
707 if (pEvent->GetId() == VCLEVENT_WINDOW_SHOW) in IMPL_LINK()
/aoo4110/main/slideshow/source/engine/
H A Deventmultiplexer.cxx524 EventSharedPtr pEvent( in scheduleTick() local
533 mpTickEvent = pEvent; in scheduleTick()
537 mrEventQueue.addEventForNextRound( pEvent ); in scheduleTick()
/aoo4110/main/svx/source/accessibility/
H A DAccessibleTextHelper.cxx1135 void operator()( const SfxHint* pEvent ) in operator ()() argument
1137 if( pEvent && in operator ()()
1141 const TextHint* pTextHint = PTR_CAST( TextHint, pEvent ); in operator ()()
1142 const SvxEditSourceHint* pEditSourceHint = PTR_CAST( SvxEditSourceHint, pEvent ); in operator ()()
H A DAccessibleFrameSelector.cxx680 IMPL_LINK( AccFrameSelector, WindowEventListener, VclSimpleEvent*, pEvent ) in IMPL_LINK() argument
682 VclWindowEvent* pWinEvent = dynamic_cast< VclWindowEvent* >( pEvent ); in IMPL_LINK()
/aoo4110/main/vcl/source/control/
H A Dtabctrl.cxx998 IMPL_LINK( TabControl, ImplWindowEventListener, VclSimpleEvent*, pEvent ) in IMPL_LINK() argument
1000 if ( pEvent && pEvent->ISA( VclWindowEvent ) && (pEvent->GetId() == VCLEVENT_WINDOW_KEYINPUT) ) in IMPL_LINK()
1002 VclWindowEvent* pWindowEvent = static_cast< VclWindowEvent* >(pEvent); in IMPL_LINK()
/aoo4110/main/svtools/source/brwbox/
H A Deditbrowsebox.cxx114 DELETEZ(pEvent); in Clear()
120 if (pEvt == pEvent) in Set()
128 pEvent = new BrowserMouseEvent(pEvt->GetWindow(), in Set()
/aoo4110/main/sc/source/ui/Accessibility/
H A DAccessibleDocument.cxx1491 IMPL_LINK( ScAccessibleDocument, WindowChildEventListener, VclSimpleEvent*, pEvent ) in IMPL_LINK() argument
1493 DBG_ASSERT( pEvent && pEvent->ISA( VclWindowEvent ), "Unknown WindowEvent!" ); in IMPL_LINK()
1494 if ( pEvent && pEvent->ISA( VclWindowEvent ) ) in IMPL_LINK()
1496 VclWindowEvent *pVclEvent = static_cast< VclWindowEvent * >( pEvent ); in IMPL_LINK()
/aoo4110/main/forms/source/xforms/
H A Dbinding.cxx760 XFormsEvent_t *pEvent = new XFormsEvent_t; in distributeMIP() local
761 pEvent->initXFormsEvent(sEventName, sal_True, sal_False); in distributeMIP()
762 Reference<XEvent> xEvent(pEvent); in distributeMIP()
/aoo4110/main/vcl/inc/aqua/
H A Dsaltimer.h43 static void handleStartTimerEvent( NSEvent* pEvent );
/aoo4110/main/vcl/inc/vcl/
H A Devntpost.hxx51 void Post( UserEvent* pEvent );
/aoo4110/main/svx/inc/svx/sdr/contact/
H A Dviewobjectcontactofgraphic.hxx58 void forgetAsynchGraphicLoadingEvent(sdr::event::AsynchGraphicLoadingEvent* pEvent);
/aoo4110/main/soldep/source/
H A Dsoldep.cxx126 IMPL_LINK( SolDep, ChildWindowEventListener, VclSimpleEvent*, pEvent ) in IMPL_LINK() argument
129 if ( pEvent && pEvent->ISA( VclWindowEvent ) ) in IMPL_LINK()
131 ProcessChildWindowEvent( *static_cast< VclWindowEvent* >( pEvent ) ); in IMPL_LINK()

Completed in 193 milliseconds

1234567