Home
last modified time | relevance | path

Searched refs:pEvent (Results 1 – 25 of 160) sorted by relevance

1234567

/trunk/main/vcl/unx/generic/window/
H A Dsalframe.cxx2866 switch (pEvent->type) in HandleMouseEvent()
2897 if( LeaveNotify == pEvent->type || EnterNotify == pEvent->type ) in HandleMouseEvent()
2942 if( pEvent->xmotion.x >= 0 && pEvent->xmotion.x < (int)maGeometry.nWidth && in HandleMouseEvent()
2943 pEvent->xmotion.y >= 0 && pEvent->xmotion.y < (int)maGeometry.nHeight ) in HandleMouseEvent()
3583 if ( pEvent->mode == NotifyNormal || pEvent->mode == NotifyWhileGrabbed || in HandleFocusEvent()
3759 &pEvent->x, &pEvent->y, in HandleSizeEvent()
3764 if( maGeometry.nX != pEvent->x || maGeometry.nY != pEvent->y ) in HandleSizeEvent()
3780 bool bMoved = ( pEvent->x != maGeometry.nX || pEvent->y != maGeometry.nY ); in HandleSizeEvent()
4201 if( pEvent->xany.window == GetShellWindow() || pEvent->xany.window == GetWindow() ) in Dispatch()
4203 switch( pEvent->type ) in Dispatch()
[all …]
H A Dsalobj.cxx475 long X11SalObject::Dispatch( XEvent* pEvent ) in Dispatch() argument
482 if( pEvent->xany.window == pObject->maPrimary || in Dispatch()
483 pEvent->xany.window == pObject->maSecondary ) in Dispatch()
486 pEvent->type == ButtonPress || in Dispatch()
487 pEvent->type == ButtonRelease || in Dispatch()
488 pEvent->type == EnterNotify || in Dispatch()
490 pEvent->type == MotionNotify in Dispatch()
511 if( pEvent->type == ButtonPress || in Dispatch()
512 pEvent->type == ButtonRelease ) in Dispatch()
514 switch( pEvent->xbutton.button ) in Dispatch()
[all …]
/trunk/main/vcl/source/window/
H A Dwinproc.cxx2012 if ( !pEvent->mnCode ) in ImplGetMouseMoveMode()
2014 if ( (pEvent->mnCode & MOUSE_LEFT) && !(pEvent->mnCode & KEY_MOD1) ) in ImplGetMouseMoveMode()
2016 if ( (pEvent->mnCode & MOUSE_LEFT) && (pEvent->mnCode & KEY_MOD1) ) in ImplGetMouseMoveMode()
2030 if ( (pEvent->mnButton == MOUSE_LEFT) && (pEvent->mnCode & KEY_MOD1) && in ImplGetMouseButtonMode()
2033 if ( (pEvent->mnButton == MOUSE_LEFT) && (pEvent->mnCode & KEY_SHIFT) && in ImplGetMouseButtonMode()
2044 pEvent->mnX, pEvent->mnY, in ImplHandleSalMouseLeave()
2045 pEvent->mnTime, pEvent->mnCode, in ImplHandleSalMouseLeave()
2054 pEvent->mnX, pEvent->mnY, in ImplHandleSalMouseMove()
2055 pEvent->mnTime, pEvent->mnCode, in ImplHandleSalMouseMove()
2064 pEvent->mnX, pEvent->mnY, in ImplHandleSalMouseButtonDown()
[all …]
/trunk/main/vcl/unx/generic/app/
H A Dsaldisp.cxx1675 || (pEvent->type == KeyRelease) in GetKeySym()
2264 if( pEvent->type == XLIB_KeyPress || pEvent->type == KeyRelease ) in Dispatch()
2291 switch( pEvent->type ) in Dispatch()
2356 return pFrame->Dispatch( pEvent ); in Dispatch()
2358 if( pEvent->type == ConfigureNotify && pEvent->xconfigure.window == pFrame->GetStackingWindow() ) in Dispatch()
2360 return pFrame->Dispatch( pEvent ); in Dispatch()
2365 X11SalObject::Dispatch( pEvent ); in Dispatch()
2368 processRandREvent( pEvent ); in Dispatch()
2377 if( pEvent->type <= MappingNotify ) in PrintEvent()
2385 switch( pEvent->type ) in PrintEvent()
[all …]
H A Dsaldata.cxx231 GetX11SalData()->XError( pDisplay, pEvent ); in XErrorHdl()
487 static void PrintXError( Display *pDisplay, XErrorEvent *pEvent ) in PrintXError() argument
494 if( pEvent->request_code < capacityof( XRequest ) ) in PrintXError()
496 const char* pName = XRequest[pEvent->request_code]; in PrintXError()
509 pEvent->resourceid ); in PrintXError()
523 void SalXLib::XError( Display *pDisplay, XErrorEvent *pEvent ) in XError() argument
530 if ( (pEvent->error_code == BadAlloc) in XError()
531 && (pEvent->request_code == X_OpenFont) ) in XError()
548 else if( pEvent->request_code == X_SetInputFocus || in XError()
549 pEvent->request_code == X_GetProperty in XError()
[all …]
/trunk/main/vcl/unx/gtk/window/
H A Dgtkframe.cxx2695 int frame_x = (int)(pEvent->x_root - pEvent->x); in signalButton()
2696 int frame_y = (int)(pEvent->y_root - pEvent->y); in signalButton()
2769 int frame_x = (int)(pEvent->x_root - pEvent->x); in signalMotion()
2770 int frame_y = (int)(pEvent->y_root - pEvent->y); in signalMotion()
2811 …struct SalPaintEvent aEvent( pEvent->area.x, pEvent->area.y, pEvent->area.width, pEvent->area.heig… in signalExpose()
2828 if( !pEvent->in ) in signalFocus()
2839 if( pEvent->in ) in signalFocus()
2942 int x = pEvent->x, y = pEvent->y; in signalConfigure()
3045 pEvent->keyval == GDK_Alt_L || pEvent->keyval == GDK_Alt_R || in signalKey()
3046 pEvent->keyval == GDK_Meta_L || pEvent->keyval == GDK_Meta_R || in signalKey()
[all …]
/trunk/main/slideshow/source/engine/animationnodes/
H A Dgenerateevent.cxx55 EventSharedPtr pEvent; in generateEvent() local
58 return pEvent; in generateEvent()
111 pEvent, xNode ); in generateEvent()
125 pEvent, xNode ); in generateEvent()
141 pEvent, pShape ); in generateEvent()
157 pEvent, pShape ); in generateEvent()
173 pEvent, pShape ); in generateEvent()
189 pEvent, pShape ); in generateEvent()
213 pEvent, xNode ); in generateEvent()
230 pEvent = makeDelay( rFunctor, in generateEvent()
[all …]
/trunk/main/vcl/inc/aqua/
H A Dsalframeview.h92 -(void)mouseDown: (NSEvent*)pEvent; in mouseDown:()
93 -(void)mouseDragged: (NSEvent*)pEvent; in mouseDragged:()
94 -(void)mouseUp: (NSEvent*)pEvent; in mouseUp:()
95 -(void)mouseMoved: (NSEvent*)pEvent; in mouseMoved:()
96 -(void)mouseEntered: (NSEvent*)pEvent; in mouseEntered:()
97 -(void)mouseExited: (NSEvent*)pEvent; in mouseExited:()
100 -(void)rightMouseUp: (NSEvent*)pEvent; in rightMouseUp:()
103 -(void)otherMouseUp: (NSEvent*)pEvent; in otherMouseUp:()
104 -(void)scrollWheel: (NSEvent*)pEvent; in scrollWheel:()
108 -(void)keyDown: (NSEvent*)pEvent; in keyDown:()
[all …]
/trunk/main/unoxml/source/events/
H A Deventdispatcher.cxx127 pEvent = pMEvent; in dispatchEvent()
138 pEvent = pUIEvent; in dispatchEvent()
158 pEvent = pMouseEvent; in dispatchEvent()
162 pEvent = new CEvent; in dispatchEvent()
163 pEvent->initEvent( in dispatchEvent()
166 pEvent->m_target.set(xNode, UNO_QUERY_THROW); in dispatchEvent()
168 pEvent->m_time = i_xEvent->getTimeStamp(); in dispatchEvent()
172 Reference< XEvent > const xEvent(pEvent); in dispatchEvent()
219 pEvent->m_phase = PhaseType_AT_TARGET; in dispatchEvent()
220 pEvent->m_currentTarget = inode->first; in dispatchEvent()
[all …]
/trunk/main/vcl/aqua/source/window/
H A Dsalframeview.mm468 (void)pEvent;
611 -(void)mouseDown: (NSEvent*)pEvent
634 -(void)mouseUp: (NSEvent*)pEvent
785 (void)pEvent;
802 dX += [pEvent deltaX];
803 dY += [pEvent deltaY];
808 pEvent = pNextEvent;
863 dY += [pEvent deltaY];
868 pEvent = pNextEvent;
915 -(void)keyDown: (NSEvent*)pEvent
[all …]
/trunk/main/vcl/aqua/source/app/
H A Dvclnsapp.mm69 if( pEvent )
70 [NSApp postEvent: pEvent atStart: NO];
73 -(void)sendEvent:(NSEvent*)pEvent
75 NSEventType eType = [pEvent type];
149 [[pKeyWin contentView] keyDown: pEvent];
160 [[pKeyWin contentView] keyDown: pEvent];
204 NSWindow* pWin = [pEvent window];
209 [[pWin contentView] scrollWheel: pEvent];
213 [super sendEvent: pEvent];
216 -(void)sendSuperEvent:(NSEvent*)pEvent
[all …]
H A Dsalinst.cxx485 if( pEvent ) in wakeupYield()
486 [NSApp postEvent: pEvent atStart: NO]; in wakeupYield()
570 switch( [pEvent subtype] ) in handleAppDefinedEvent()
605 switch ([pEvent data1]) in handleAppDefinedEvent()
726 NSEvent* pEvent = nil; in Yield() local
734 if( pEvent ) in Yield()
736 [NSApp sendEvent: pEvent]; in Yield()
742 } while( bHandleAllCurrentEvents && pEvent ); in Yield()
752 if( pEvent ) in Yield()
753 [NSApp sendEvent: pEvent]; in Yield()
[all …]
H A Dsaltimer.cxx74 NSEvent* pEvent = [NSEvent otherEventWithType: NSApplicationDefined in ImplSalStartTimer() local
83 if( pEvent ) in ImplSalStartTimer()
84 [NSApp postEvent: pEvent atStart: YES]; in ImplSalStartTimer()
93 void AquaSalTimer::handleStartTimerEvent( NSEvent* pEvent ) in handleStartTimerEvent() argument
98 NSTimeInterval posted = [pEvent timestamp] + NSTimeInterval([pEvent data1])/1000.0; in handleStartTimerEvent()
106 ImplSalStartTimer( sal_uLong( [pEvent data1] ) ); in handleStartTimerEvent()
/trunk/main/vcl/aqua/source/a11y/
H A Daqua11yfocustracker.cxx48 getWindow(const ::VclSimpleEvent *pEvent) in getWindow() argument
50 return static_cast< const ::VclWindowEvent *> (pEvent)->GetWindow(); in getWindow()
60 switch (pEvent->GetId()) in WindowEventHandler()
63 pFocusTracker-> toolbox_open_floater( getWindow(pEvent) ); in WindowEventHandler()
66 pFocusTracker->window_got_focus( getWindow(pEvent) ); in WindowEventHandler()
69 pFocusTracker->m_aDocumentWindowList.erase( getWindow(pEvent) ); in WindowEventHandler()
72 pFocusTracker->toolbox_highlight_off( getWindow(pEvent) ); in WindowEventHandler()
75 pFocusTracker->toolbox_highlight_on( getWindow(pEvent) ); in WindowEventHandler()
78 pFocusTracker->tabpage_activated( getWindow(pEvent) ); in WindowEventHandler()
210 void AquaA11yFocusTracker::menu_highlighted(const VclMenuEvent *pEvent) in menu_highlighted() argument
[all …]
/trunk/main/vcl/unx/gtk/a11y/
H A Datkutil.cxx483 static void handle_toolbox_buttonchange(VclWindowEvent const *pEvent) in handle_toolbox_buttonchange() argument
485 Window* pWindow = pEvent->GetWindow(); in handle_toolbox_buttonchange()
486 sal_Int32 index = (sal_Int32)(sal_IntPtr) pEvent->GetData(); in handle_toolbox_buttonchange()
524 static void handle_get_focus(::VclWindowEvent const * pEvent) in handle_get_focus() argument
529 Window *pWindow = pEvent->GetWindow(); in handle_get_focus()
594 static void handle_menu_highlighted(::VclMenuEvent const * pEvent) in handle_menu_highlighted() argument
598 Menu* pMenu = pEvent->GetMenu(); in handle_menu_highlighted()
599 sal_uInt16 nPos = pEvent->GetItemPos(); in handle_menu_highlighted()
622 long WindowEventHandler(void *, ::VclSimpleEvent const * pEvent) in WindowEventHandler() argument
624 switch (pEvent->GetId()) in WindowEventHandler()
[all …]
/trunk/main/vcl/inc/unx/
H A Dsalframe.h151 long HandleKeyEvent ( XKeyEvent *pEvent );
152 long HandleMouseEvent ( XEvent *pEvent );
153 long HandleFocusEvent ( XFocusChangeEvent *pEvent );
154 long HandleExposeEvent ( XEvent *pEvent );
155 long HandleSizeEvent ( XConfigureEvent *pEvent );
156 long HandleColormapEvent ( XColormapEvent *pEvent );
157 long HandleMapUnmapEvent ( XEvent *pEvent );
158 long HandleStateEvent ( XPropertyEvent *pEvent );
159 long HandleReparentEvent ( XReparentEvent *pEvent );
175 long Dispatch( XEvent *pEvent );
[all …]
/trunk/main/toolkit/source/awt/
H A Dvclxaccessiblecomponent.cxx131 IMPL_LINK( VCLXAccessibleComponent, WindowEventListener, VclSimpleEvent*, pEvent ) in IMPL_LINK() argument
135 DBG_ASSERT( pEvent && pEvent->ISA( VclWindowEvent ), "Unknown WindowEvent!" ); in IMPL_LINK()
141 …if ( pEvent && pEvent->ISA( VclWindowEvent ) && mxWindow.is() /* #122218# */ && (pEvent->GetId() !… in IMPL_LINK()
143 DBG_ASSERT( ((VclWindowEvent*)pEvent)->GetWindow(), "Window???" ); in IMPL_LINK()
144 …if( !((VclWindowEvent*)pEvent)->GetWindow()->IsAccessibilityEventsSuppressed() || ( pEvent->GetId(… in IMPL_LINK()
146 ProcessWindowEvent( *(VclWindowEvent*)pEvent ); in IMPL_LINK()
152 IMPL_LINK( VCLXAccessibleComponent, WindowChildEventListener, VclSimpleEvent*, pEvent ) in IMPL_LINK() argument
156 DBG_ASSERT( pEvent && pEvent->ISA( VclWindowEvent ), "Unknown WindowEvent!" ); in IMPL_LINK()
157 if ( pEvent && pEvent->ISA( VclWindowEvent ) && mxWindow.is() /* #i68079# */ ) in IMPL_LINK()
159 DBG_ASSERT( ((VclWindowEvent*)pEvent)->GetWindow(), "Window???" ); in IMPL_LINK()
[all …]
H A Dvclxtoolkit.cxx1580 switch (pEvent->GetId()) in IMPL_LINK()
1584 pEvent, &::css::awt::XTopWindowListener::windowOpened); in IMPL_LINK()
1588 pEvent, &::css::awt::XTopWindowListener::windowClosed); in IMPL_LINK()
1600 pEvent, &::css::awt::XTopWindowListener::windowClosing); in IMPL_LINK()
1603 callFocusListeners(pEvent, true); in IMPL_LINK()
1606 callFocusListeners(pEvent, false); in IMPL_LINK()
1622 switch (pEvent->GetId()) in IMPL_LINK()
1625 return callKeyHandlers(pEvent, true); in IMPL_LINK()
1627 return callKeyHandlers(pEvent, false); in IMPL_LINK()
1633 ::VclSimpleEvent const * pEvent, in callTopWindowListeners() argument
[all …]
/trunk/main/accessibility/source/standard/
H A Dvclxaccessiblemenubar.cxx78 IMPL_LINK( VCLXAccessibleMenuBar, WindowEventListener, VclSimpleEvent*, pEvent ) in IMPL_LINK() argument
80 …DBG_ASSERT( pEvent && pEvent->ISA( VclWindowEvent ), "VCLXAccessibleMenuBar::WindowEventListener: … in IMPL_LINK()
81 if ( pEvent && pEvent->ISA( VclWindowEvent ) ) in IMPL_LINK()
83 …DBG_ASSERT( ((VclWindowEvent*)pEvent)->GetWindow(), "VCLXAccessibleMenuBar::WindowEventListener: n… in IMPL_LINK()
84 …if ( !((VclWindowEvent*)pEvent)->GetWindow()->IsAccessibilityEventsSuppressed() || ( pEvent->GetId… in IMPL_LINK()
86 ProcessWindowEvent( *(VclWindowEvent*)pEvent ); in IMPL_LINK()
/trunk/main/slideshow/source/engine/
H A Deventqueue.cxx84 maEvents.top().pEvent->dispose(); in ~EventQueue()
228 if( event.pEvent->isCharged() ) in process_()
234 event.pEvent.get(), in process_()
235 event.pEvent->getActivationTime(0.0) ); in process_()
240 OUStringToOString(event.pEvent->GetDescription(), in process_()
242 event.pEvent.get(), in process_()
243 event.pEvent->getActivationTime(0.0)); in process_()
246 event.pEvent->fire(); in process_()
288 event.pEvent.get(), in process_()
289 event.pEvent->getActivationTime(0.0) ); in process_()
/trunk/main/accessibility/source/extended/
H A Dlistboxaccessible.cxx57 IMPL_LINK( ListBoxAccessibleBase, WindowEventListener, VclSimpleEvent*, pEvent ) in IMPL_LINK() argument
59 …DBG_ASSERT( pEvent && pEvent->ISA( VclWindowEvent ), "ListBoxAccessibleBase::WindowEventListener: … in IMPL_LINK()
60 if ( pEvent && pEvent->ISA( VclWindowEvent ) ) in IMPL_LINK()
62 …DBG_ASSERT( static_cast< VclWindowEvent* >( pEvent )->GetWindow() , "ListBoxAccessibleBase::Window… in IMPL_LINK()
63 …DBG_ASSERT( static_cast< VclWindowEvent* >( pEvent )->GetWindow() == m_pWindow, "ListBoxAccessible… in IMPL_LINK()
65 ProcessWindowEvent( *static_cast< VclWindowEvent* >( pEvent ) ); in IMPL_LINK()
/trunk/main/svtools/source/control/
H A Dvclxaccessibleheaderbaritem.cxx98 IMPL_LINK( VCLXAccessibleHeaderBarItem, WindowEventListener, VclSimpleEvent*, pEvent ) in IMPL_LINK() argument
101 …DBG_ASSERT( pEvent && pEvent->ISA( VclWindowEvent ), "VCLXAccessibleHeaderBarItem::WindowEventList… in IMPL_LINK()
103 if ( pEvent && pEvent->ISA( VclWindowEvent ) ) in IMPL_LINK()
105 …DBG_ASSERT( ((VclWindowEvent*)pEvent)->GetWindow(), "VCLXAccessibleHeaderBarItem::WindowEventListe… in IMPL_LINK()
106 …if ( !((VclWindowEvent*)pEvent)->GetWindow()->IsAccessibilityEventsSuppressed() || ( pEvent->GetId… in IMPL_LINK()
108 ProcessWindowEvent( *(VclWindowEvent*)pEvent ); in IMPL_LINK()
/trunk/main/vcl/source/app/
H A Dvclevent.cxx55 void VclEventListeners::Call( VclSimpleEvent* pEvent ) const in Call()
60 if( pEvent->IsA( VclWindowEvent::StaticType() ) ) in Call()
62 VclWindowEvent* pWinEvent = static_cast<VclWindowEvent*>(pEvent); in Call()
66 (*aIter).Call( pEvent ); in Call()
74 (*aIter).Call( pEvent ); in Call()
80 sal_Bool VclEventListeners::Process( VclSimpleEvent* pEvent ) const in Process()
88 if( (*aIter).Call( pEvent ) != 0 ) in Process()
/trunk/main/vcl/unx/gtk/app/
H A Dgtkdata.cxx136 XEvent *pEvent = (XEvent *)sys_event; in filterGdkEvent() local
141 CallEventCallback( pEvent, sizeof( XEvent ) ) ) in filterGdkEvent()
146 if (pDisplay->GetDisplay() == pEvent->xany.display ) in filterGdkEvent()
153 if( pEvent->type == PropertyNotify && in filterGdkEvent()
166 if( (GdkNativeWindow)pFrame->GetSystemData()->aWindow == pEvent->xany.window || in filterGdkEvent()
171 if( ! pFrame->Dispatch( pEvent ) ) in filterGdkEvent()
176 X11SalObject::Dispatch( pEvent ); in filterGdkEvent()
313 long GtkSalDisplay::Dispatch( XEvent* pEvent ) in Dispatch() argument
315 if( GetDisplay() == pEvent->xany.display ) in Dispatch()
322 if( (GdkNativeWindow)(*it)->GetSystemData()->aWindow == pEvent->xany.window ) in Dispatch()
[all …]
/trunk/main/svx/source/sdr/animation/
H A Dscheduler.cxx252 Event* pEvent = maList.GetFirst(); in SetTime() local
254 if(pEvent) in SetTime()
257 while(pEvent) in SetTime()
259 pEvent->SetTime(nTime); in SetTime()
260 pEvent = pEvent->GetNext(); in SetTime()

Completed in 159 milliseconds

1234567