Home
last modified time | relevance | path

Searched refs:rEvent (Results 1 – 25 of 372) sorted by relevance

12345678910>>...15

/AOO41X/main/vcl/source/window/
H A Dmouseevent.cxx34 MouseEvent::MouseEvent( const ::com::sun::star::awt::MouseEvent& rEvent ) in MouseEvent() argument
35 : maPos( rEvent.X, rEvent.Y ) in MouseEvent()
37 , mnClicks( static_cast< sal_uInt16 >( rEvent.ClickCount ) ) in MouseEvent()
40 if( rEvent.Modifiers ) in MouseEvent()
42 if( (rEvent.Modifiers & ::com::sun::star::awt::KeyModifier::SHIFT) != 0 ) in MouseEvent()
44 if( (rEvent.Modifiers & ::com::sun::star::awt::KeyModifier::MOD1) != 0 ) in MouseEvent()
46 if( (rEvent.Modifiers & ::com::sun::star::awt::KeyModifier::MOD2) != 0 ) in MouseEvent()
48 if( (rEvent.Modifiers & ::com::sun::star::awt::KeyModifier::MOD3) != 0 ) in MouseEvent()
52 if( rEvent.Buttons ) in MouseEvent()
54 if( (rEvent.Buttons & ::com::sun::star::awt::MouseButton::LEFT) != 0 ) in MouseEvent()
[all …]
H A Dkeyevent.cxx39 KeyEvent::KeyEvent( const ::com::sun::star::awt::KeyEvent& rEvent ) in KeyEvent() argument
42 rEvent.KeyCode, in KeyEvent()
43 (rEvent.Modifiers & ::com::sun::star::awt::KeyModifier::SHIFT) != 0, in KeyEvent()
44 (rEvent.Modifiers & ::com::sun::star::awt::KeyModifier::MOD1) != 0, in KeyEvent()
45 (rEvent.Modifiers & ::com::sun::star::awt::KeyModifier::MOD2) != 0, in KeyEvent()
46 (rEvent.Modifiers & ::com::sun::star::awt::KeyModifier::MOD3) != 0); in KeyEvent()
48 mnCharCode = rEvent.KeyChar; in KeyEvent()
52 void KeyEvent::InitKeyEvent( ::com::sun::star::awt::KeyEvent& rEvent ) const in InitKeyEvent()
54 rEvent.Modifiers = 0; in InitKeyEvent()
56 rEvent.Modifiers |= ::com::sun::star::awt::KeyModifier::SHIFT; in InitKeyEvent()
[all …]
/AOO41X/main/slideshow/source/engine/
H A Dusereventqueue.cxx125 void addEvent( const EventSharedPtr& rEvent ) in addEvent() argument
127 maEvents.push( rEvent ); in addEvent()
202 void addEvent( const EventSharedPtr& rEvent, in addEvent() argument
216 aIter->second.push_back( rEvent ); in addEvent()
397 void addEvent( const EventSharedPtr& rEvent, in addEvent() argument
410 aIter->second.push( rEvent ); in addEvent()
615 const EventSharedPtr& rEvent, in registerEvent() argument
618 ENSURE_OR_THROW( rEvent, in registerEvent()
628 rHandler->addEvent( rEvent ); in registerEvent()
634 const EventSharedPtr& rEvent, in registerEvent() argument
[all …]
H A Deventqueue.cxx50 bool EventQueue::EventEntry::operator<( const EventEntry& rEvent ) const in operator <()
54 return this->nTime > rEvent.nTime; in operator <()
97 bool EventQueue::addEvent( const EventSharedPtr& rEvent ) in addEvent() argument
104 OUStringToOString(rEvent->GetDescription(), RTL_TEXTENCODING_UTF8).getStr(), in addEvent()
105 rEvent.get(), in addEvent()
106 rEvent->getActivationTime(0.0)); in addEvent()
108 ENSURE_OR_RETURN_FALSE( rEvent, in addEvent()
120 maEvents.push( EventEntry( rEvent, rEvent->getActivationTime( in addEvent()
125 bool EventQueue::addEventForNextRound( EventSharedPtr const& rEvent ) in addEventForNextRound() argument
132 OUStringToOString(rEvent->GetDescription(), RTL_TEXTENCODING_UTF8).getStr(), in addEventForNextRound()
[all …]
/AOO41X/main/sdext/source/presenter/
H A DPresenterController.cxx741 void PresenterController::HandleMouseClick (const awt::MouseEvent& rEvent) in HandleMouseClick() argument
745 switch (rEvent.Buttons) in HandleMouseClick()
748 if (rEvent.Modifiers == awt::KeyModifier::MOD2) in HandleMouseClick()
814 const ConfigurationChangeEvent& rEvent) in notifyConfigurationChange() argument
820 if ( ! (rEvent.UserData >>= nType)) in notifyConfigurationChange()
826 if (rEvent.ResourceId->compareTo(mxMainPaneId) == 0) in notifyConfigurationChange()
828 InitializeMainPane(Reference<XPane>(rEvent.ResourceObject,UNO_QUERY)); in notifyConfigurationChange()
830 else if (rEvent.ResourceId->isBoundTo(mxMainPaneId,AnchorBindingMode_DIRECT)) in notifyConfigurationChange()
834 Reference<XPane> xPane (rEvent.ResourceObject,UNO_QUERY); in notifyConfigurationChange()
847 else if (rEvent.ResourceId->isBoundTo(mxMainPaneId,AnchorBindingMode_INDIRECT)) in notifyConfigurationChange()
[all …]
H A DPresenterSpritePane.cxx107 void SAL_CALL PresenterSpritePane::windowResized (const awt::WindowEvent& rEvent) in windowResized() argument
110 (void)rEvent; in windowResized()
111 PresenterPaneBase::windowResized(rEvent); in windowResized()
113 mpSprite->Resize(geometry::RealSize2D(rEvent.Width, rEvent.Height)); in windowResized()
122 void SAL_CALL PresenterSpritePane::windowMoved (const awt::WindowEvent& rEvent) in windowMoved() argument
125 (void)rEvent; in windowMoved()
126 PresenterPaneBase::windowMoved(rEvent); in windowMoved()
137 void SAL_CALL PresenterSpritePane::windowShown (const lang::EventObject& rEvent) in windowShown() argument
140 (void)rEvent; in windowShown()
141 PresenterPaneBase::windowShown(rEvent); in windowShown()
[all …]
H A DPresenterPane.cxx94 void SAL_CALL PresenterPane::windowResized (const awt::WindowEvent& rEvent) in windowResized() argument
97 (void)rEvent; in windowResized()
98 PresenterPaneBase::windowResized(rEvent); in windowResized()
113 void SAL_CALL PresenterPane::windowMoved (const awt::WindowEvent& rEvent) in windowMoved() argument
116 (void)rEvent; in windowMoved()
117 PresenterPaneBase::windowMoved(rEvent); in windowMoved()
130 void SAL_CALL PresenterPane::windowShown (const lang::EventObject& rEvent) in windowShown() argument
133 (void)rEvent; in windowShown()
134 PresenterPaneBase::windowShown(rEvent); in windowShown()
151 void SAL_CALL PresenterPane::windowHidden (const lang::EventObject& rEvent) in windowHidden() argument
[all …]
H A DPresenterButton.cxx266 void SAL_CALL PresenterButton::windowResized (const css::awt::WindowEvent& rEvent) in windowResized() argument
269 (void)rEvent; in windowResized()
277 void SAL_CALL PresenterButton::windowMoved (const css::awt::WindowEvent& rEvent) in windowMoved() argument
280 (void)rEvent; in windowMoved()
287 void SAL_CALL PresenterButton::windowShown (const css::lang::EventObject& rEvent) in windowShown() argument
290 (void)rEvent; in windowShown()
297 void SAL_CALL PresenterButton::windowHidden (const css::lang::EventObject& rEvent) in windowHidden() argument
300 (void)rEvent; in windowHidden()
309 void SAL_CALL PresenterButton::windowPaint (const css::awt::PaintEvent& rEvent) in windowPaint() argument
328 PresenterGeometryHelper::CreatePolygon(rEvent.UpdateRect, mxCanvas->getDevice()), in windowPaint()
[all …]
H A DPresenterWindowManager.cxx97 const com::sun::star::drawing::framework::ConfigurationChangeEvent& rEvent)
104 const com::sun::star::lang::EventObject& rEvent)
364 void SAL_CALL PresenterWindowManager::windowResized (const awt::WindowEvent& rEvent) in windowResized() argument
368 if (rEvent.Source == mxParentWindow) in windowResized()
374 Reference<awt::XWindow> xWindow (rEvent.Source,UNO_QUERY); in windowResized()
388 void SAL_CALL PresenterWindowManager::windowMoved (const awt::WindowEvent& rEvent) in windowMoved() argument
392 if (rEvent.Source != mxParentWindow) in windowMoved()
394 Reference<awt::XWindow> xWindow (rEvent.Source,UNO_QUERY); in windowMoved()
405 void SAL_CALL PresenterWindowManager::windowShown (const lang::EventObject& rEvent) in windowShown() argument
408 (void)rEvent; in windowShown()
[all …]
H A DPresenterSlideShowView.cxx575 void SAL_CALL PresenterSlideShowView::disposing (const lang::EventObject& rEvent) in disposing() argument
578 if (rEvent.Source == mxViewWindow) in disposing()
580 else if (rEvent.Source == mxSlideShow) in disposing()
589 void SAL_CALL PresenterSlideShowView::windowPaint (const awt::PaintEvent& rEvent) in windowPaint() argument
600 if (rEvent.Source == mxWindow) in windowPaint()
601 PaintOuterWindow(rEvent.UpdateRect); in windowPaint()
603 PaintEndSlide(rEvent.UpdateRect); in windowPaint()
605 PaintInnerWindow(rEvent); in windowPaint()
613 void SAL_CALL PresenterSlideShowView::mousePressed (const awt::MouseEvent& rEvent) in mousePressed() argument
616 awt::MouseEvent aEvent (rEvent); in mousePressed()
[all …]
H A DPresenterPaneBorderManager.cxx290 void SAL_CALL PresenterPaneBorderManager::mousePressed (const css::awt::MouseEvent& rEvent) in mousePressed() argument
299 if (iDescriptor->first == rEvent.Source) in mousePressed()
309 maDragAnchor.X = rEvent.X + aOuterBox.X; in mousePressed()
310 maDragAnchor.Y = rEvent.Y + aOuterBox.Y; in mousePressed()
314 awt::Point(rEvent.X, rEvent.Y)); in mousePressed()
321 void SAL_CALL PresenterPaneBorderManager::mouseReleased (const css::awt::MouseEvent& rEvent) in mouseReleased() argument
324 (void)rEvent; in mouseReleased()
337 void SAL_CALL PresenterPaneBorderManager::mouseEntered (const css::awt::MouseEvent& rEvent) in mouseEntered() argument
340 (void)rEvent; in mouseEntered()
346 void SAL_CALL PresenterPaneBorderManager::mouseExited (const css::awt::MouseEvent& rEvent) in mouseExited() argument
[all …]
H A DPresenterToolBar.cxx179 virtual void SAL_CALL disposing (const css::lang::EventObject& rEvent)
184 virtual void SAL_CALL notifyEvent (const css::document::EventObject& rEvent)
189 virtual void SAL_CALL statusChanged (const css::frame::FeatureStateEvent& rEvent)
245 virtual void SAL_CALL disposing (const css::lang::EventObject& rEvent)
611 void SAL_CALL PresenterToolBar::windowResized (const awt::WindowEvent& rEvent) in windowResized() argument
614 (void)rEvent; in windowResized()
621 void SAL_CALL PresenterToolBar::windowMoved (const awt::WindowEvent& rEvent) in windowMoved() argument
624 (void)rEvent; in windowMoved()
630 void SAL_CALL PresenterToolBar::windowShown (const lang::EventObject& rEvent) in windowShown() argument
633 (void)rEvent; in windowShown()
[all …]
H A DPresenterScrollBar.cxx419 void SAL_CALL PresenterScrollBar::windowResized (const css::awt::WindowEvent& rEvent) in windowResized() argument
422 (void)rEvent; in windowResized()
429 void SAL_CALL PresenterScrollBar::windowMoved (const css::awt::WindowEvent& rEvent) in windowMoved() argument
432 (void)rEvent; in windowMoved()
438 void SAL_CALL PresenterScrollBar::windowShown (const css::lang::EventObject& rEvent) in windowShown() argument
441 (void)rEvent; in windowShown()
447 void SAL_CALL PresenterScrollBar::windowHidden (const css::lang::EventObject& rEvent) in windowHidden() argument
450 (void)rEvent; in windowHidden()
458 void SAL_CALL PresenterScrollBar::windowPaint (const css::awt::PaintEvent& rEvent) in windowPaint() argument
463 awt::Rectangle aRepaintBox (rEvent.UpdateRect); in windowPaint()
[all …]
H A DPresenterSlidePreview.cxx161 void SAL_CALL PresenterSlidePreview::windowResized (const awt::WindowEvent& rEvent) in windowResized() argument
164 (void)rEvent; in windowResized()
174 void SAL_CALL PresenterSlidePreview::windowMoved (const awt::WindowEvent& rEvent) in windowMoved() argument
177 (void)rEvent; in windowMoved()
183 void SAL_CALL PresenterSlidePreview::windowShown (const lang::EventObject& rEvent) in windowShown() argument
186 (void)rEvent; in windowShown()
195 void SAL_CALL PresenterSlidePreview::windowHidden (const lang::EventObject& rEvent) in windowHidden() argument
198 (void)rEvent; in windowHidden()
206 void SAL_CALL PresenterSlidePreview::windowPaint (const awt::PaintEvent& rEvent) in windowPaint() argument
214 rEvent.UpdateRect.X, in windowPaint()
[all …]
H A DPresenterController.hxx136 void HandleMouseClick (const css::awt::MouseEvent& rEvent);
150 const com::sun::star::drawing::framework::ConfigurationChangeEvent& rEvent)
157 const com::sun::star::lang::EventObject& rEvent)
164 const css::frame::FrameActionEvent& rEvent)
170 virtual void SAL_CALL keyPressed (const css::awt::KeyEvent& rEvent)
172 virtual void SAL_CALL keyReleased (const css::awt::KeyEvent& rEvent)
178 virtual void SAL_CALL focusGained (const css::awt::FocusEvent& rEvent)
180 virtual void SAL_CALL focusLost (const css::awt::FocusEvent& rEvent)
186 virtual void SAL_CALL mousePressed (const css::awt::MouseEvent& rEvent)
189 virtual void SAL_CALL mouseReleased (const css::awt::MouseEvent& rEvent)
[all …]
H A DPresenterWindowManager.hxx139 virtual void SAL_CALL windowResized (const css::awt::WindowEvent& rEvent)
142 virtual void SAL_CALL windowMoved (const css::awt::WindowEvent& rEvent)
145 virtual void SAL_CALL windowShown (const css::lang::EventObject& rEvent)
148 virtual void SAL_CALL windowHidden (const css::lang::EventObject& rEvent)
154 virtual void SAL_CALL windowPaint (const css::awt::PaintEvent& rEvent)
160 virtual void SAL_CALL mousePressed (const css::awt::MouseEvent& rEvent)
163 virtual void SAL_CALL mouseReleased (const css::awt::MouseEvent& rEvent)
166 virtual void SAL_CALL mouseEntered (const css::awt::MouseEvent& rEvent)
169 virtual void SAL_CALL mouseExited (const css::awt::MouseEvent& rEvent)
175 virtual void SAL_CALL focusGained (const css::awt::FocusEvent& rEvent)
[all …]
H A DPresenterButton.hxx85 virtual void SAL_CALL windowResized (const css::awt::WindowEvent& rEvent)
88 virtual void SAL_CALL windowMoved (const css::awt::WindowEvent& rEvent)
91 virtual void SAL_CALL windowShown (const css::lang::EventObject& rEvent)
94 virtual void SAL_CALL windowHidden (const css::lang::EventObject& rEvent)
100 virtual void SAL_CALL windowPaint (const css::awt::PaintEvent& rEvent)
106 virtual void SAL_CALL mousePressed (const css::awt::MouseEvent& rEvent)
109 virtual void SAL_CALL mouseReleased (const css::awt::MouseEvent& rEvent)
112 virtual void SAL_CALL mouseEntered (const css::awt::MouseEvent& rEvent)
115 virtual void SAL_CALL mouseExited (const css::awt::MouseEvent& rEvent)
121 virtual void SAL_CALL mouseMoved (const css::awt::MouseEvent& rEvent)
[all …]
/AOO41X/main/sc/source/ui/vba/
H A Dvbaeventshelper.cxx136 …virtual void SAL_CALL windowOpened( const lang::EventObject& rEvent ) throw (uno::RuntimeException…
137 …virtual void SAL_CALL windowClosing( const lang::EventObject& rEvent ) throw (uno::RuntimeExceptio…
138 …virtual void SAL_CALL windowClosed( const lang::EventObject& rEvent ) throw (uno::RuntimeException…
139 …virtual void SAL_CALL windowMinimized( const lang::EventObject& rEvent ) throw (uno::RuntimeExcept…
140 …virtual void SAL_CALL windowNormalized( const lang::EventObject& rEvent ) throw (uno::RuntimeExcep…
141 …virtual void SAL_CALL windowActivated( const lang::EventObject& rEvent ) throw (uno::RuntimeExcept…
142 …virtual void SAL_CALL windowDeactivated( const lang::EventObject& rEvent ) throw (uno::RuntimeExce…
145 …virtual void SAL_CALL windowResized( const awt::WindowEvent& rEvent ) throw (uno::RuntimeException…
146 … virtual void SAL_CALL windowMoved( const awt::WindowEvent& rEvent ) throw (uno::RuntimeException);
147 …virtual void SAL_CALL windowShown( const lang::EventObject& rEvent ) throw (uno::RuntimeException);
[all …]
/AOO41X/main/vcl/unx/generic/app/
H A Di18n_im.cxx83 XKeyEventOp& operator= (const XKeyEvent &rEvent);
85 Bool match (const XKeyEvent &rEvent) const;
111 XKeyEventOp::operator= (const XKeyEvent &rEvent) in operator =() argument
113 type = rEvent.type; /* serial = rEvent.serial; */ in operator =()
114 send_event = rEvent.send_event; display = rEvent.display; in operator =()
115 window = rEvent.window; root = rEvent.root; in operator =()
116 subwindow = rEvent.subwindow;/* time = rEvent.time; */ in operator =()
119 state = rEvent.state; keycode = rEvent.keycode; in operator =()
120 same_screen = rEvent.same_screen; in operator =()
132 XKeyEventOp::match (const XKeyEvent &rEvent) const in match()
[all …]
/AOO41X/main/sd/source/ui/slidesorter/controller/
H A DSlsSelectionFunction.cxx133 const MouseEvent& rEvent,
137 const AcceptDropEvent& rEvent,
141 const KeyEvent& rEvent,
150 sal_uInt32 EncodeMouseEvent (const MouseEvent& rEvent) const;
155 sal_uInt32 EncodeKeyEvent (const KeyEvent& rEvent) const;
397 sal_Bool SelectionFunction::MouseButtonDown (const MouseEvent& rEvent) in MouseButtonDown() argument
400 SetMouseButtonCode (rEvent.GetButtons()); in MouseButtonDown()
401 aMDPos = rEvent.GetPosPixel(); in MouseButtonDown()
406 ProcessMouseEvent(BUTTON_DOWN, rEvent); in MouseButtonDown()
414 sal_Bool SelectionFunction::MouseMove (const MouseEvent& rEvent) in MouseMove() argument
[all …]
/AOO41X/main/sd/source/ui/tools/
H A DEventMultiplexer.cxx86 void CallListeners (EventMultiplexerEvent& rEvent);
99 const com::sun::star::beans::PropertyChangeEvent& rEvent)
105 const com::sun::star::lang::EventObject& rEvent)
114 frameAction (const ::com::sun::star::frame::FrameActionEvent& rEvent)
120 const ::com::sun::star::drawing::framework::ConfigurationChangeEvent& rEvent)
555 const beans::PropertyChangeEvent& rEvent) in propertyChange() argument
560 if (rEvent.PropertyName.equals(msCurrentPagePropertyName)) in propertyChange()
564 else if (rEvent.PropertyName.equals(msEditModePropertyName)) in propertyChange()
567 rEvent.NewValue >>= bIsMasterPageMode; in propertyChange()
581 const frame::FrameActionEvent& rEvent) in frameAction() argument
[all …]
/AOO41X/main/sd/source/ui/framework/module/
H A DResourceManager.cxx145 const ConfigurationChangeEvent& rEvent) in notifyConfigurationChange() argument
148 OSL_ASSERT(rEvent.ResourceId.is()); in notifyConfigurationChange()
151 rEvent.UserData >>= nEventType; in notifyConfigurationChange()
155 if (rEvent.ResourceId->isBoundToURL( in notifyConfigurationChange()
161 if (rEvent.ResourceId->getResourceTypePrefix().equals( in notifyConfigurationChange()
167 rEvent.ResourceId->getResourceURL(), in notifyConfigurationChange()
168 rEvent.Configuration, in notifyConfigurationChange()
172 else if (rEvent.ResourceId->compareTo(mxResourceId) == 0) in notifyConfigurationChange()
177 HandleResourceRequest(true, rEvent.Configuration); in notifyConfigurationChange()
182 if (rEvent.ResourceId->compareTo(mxMainViewAnchorId) == 0) in notifyConfigurationChange()
[all …]
/AOO41X/main/slideshow/source/inc/
H A Dusereventqueue.hxx121 void registerSlideStartEvent( const EventSharedPtr& rEvent );
130 void registerSlideEndEvent( const EventSharedPtr& rEvent );
140 const EventSharedPtr& rEvent,
152 const EventSharedPtr& rEvent,
164 const EventSharedPtr& rEvent,
176 void registerShapeClickEvent( const EventSharedPtr& rEvent,
200 void registerRewindEffectEvent( EventSharedPtr const& rEvent );
215 void registerNextEffectEvent( const EventSharedPtr& rEvent );
228 void registerShapeDoubleClickEvent( const EventSharedPtr& rEvent,
241 void registerDoubleClickEvent( const EventSharedPtr& rEvent );
[all …]
/AOO41X/main/sfx2/source/view/
H A Duserinputinterception.cxx97 void lcl_initKeyEvent( KeyEvent& rEvent, const ::KeyEvent& rEvt ) in lcl_initKeyEvent() argument
99 lcl_initModifiers( rEvent, rEvt.GetKeyCode() ); in lcl_initKeyEvent()
101 rEvent.KeyCode = rEvt.GetKeyCode().GetCode(); in lcl_initKeyEvent()
102 rEvent.KeyChar = rEvt.GetCharCode(); in lcl_initKeyEvent()
103 rEvent.KeyFunc = sal::static_int_cast< sal_Int16 >( rEvt.GetKeyCode().GetFunction()); in lcl_initKeyEvent()
106 void lcl_initMouseEvent( MouseEvent& rEvent, const ::MouseEvent& rEvt ) in lcl_initMouseEvent() argument
108 lcl_initModifiers( rEvent, rEvt ); in lcl_initMouseEvent()
110 rEvent.Buttons = 0; in lcl_initMouseEvent()
112 rEvent.Buttons |= MouseButton::LEFT; in lcl_initMouseEvent()
114 rEvent.Buttons |= MouseButton::RIGHT; in lcl_initMouseEvent()
[all …]
/AOO41X/main/sd/source/ui/slidesorter/shell/
H A DSlideSorter.cxx64 virtual void KeyInput (const KeyEvent& rEvent);
65 virtual void MouseMove (const MouseEvent& rEvent);
66 virtual void MouseButtonUp (const MouseEvent& rEvent);
67 virtual void MouseButtonDown (const MouseEvent& rEvent);
68 virtual void Command (const CommandEvent& rEvent);
69 virtual long Notify (NotifyEvent& rEvent);
637 void ContentWindow::KeyInput (const KeyEvent& rEvent) in KeyInput() argument
640 mpCurrentFunction->KeyInput(rEvent); in KeyInput()
646 void ContentWindow::MouseMove (const MouseEvent& rEvent) in MouseMove() argument
649 mpCurrentFunction->MouseMove(rEvent); in MouseMove()
[all …]

12345678910>>...15