| /trunk/main/vcl/source/window/ |
| H A D | mouseevent.cxx | 34 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 D | keyevent.cxx | 39 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 …]
|
| /trunk/main/slideshow/source/engine/ |
| H A D | usereventqueue.cxx | 125 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 D | eventqueue.cxx | 50 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 …]
|
| /trunk/main/sdext/source/presenter/ |
| H A D | PresenterController.cxx | 741 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 819 if ( ! (rEvent.UserData >>= nType)) in notifyConfigurationChange() 825 if (rEvent.ResourceId->compareTo(mxMainPaneId) == 0) in notifyConfigurationChange() 827 InitializeMainPane(Reference<XPane>(rEvent.ResourceObject,UNO_QUERY)); in notifyConfigurationChange() 829 else if (rEvent.ResourceId->isBoundTo(mxMainPaneId,AnchorBindingMode_DIRECT)) in notifyConfigurationChange() 833 Reference<XPane> xPane (rEvent.ResourceObject,UNO_QUERY); in notifyConfigurationChange() 846 else if (rEvent.ResourceId->isBoundTo(mxMainPaneId,AnchorBindingMode_INDIRECT)) in notifyConfigurationChange() [all …]
|
| H A D | PresenterButton.cxx | 266 void SAL_CALL PresenterButton::windowResized (const css::awt::WindowEvent& rEvent) in windowResized() argument 268 (void)rEvent; in windowResized() 276 void SAL_CALL PresenterButton::windowMoved (const css::awt::WindowEvent& rEvent) in windowMoved() argument 278 (void)rEvent; in windowMoved() 285 void SAL_CALL PresenterButton::windowShown (const css::lang::EventObject& rEvent) in windowShown() argument 287 (void)rEvent; in windowShown() 294 void SAL_CALL PresenterButton::windowHidden (const css::lang::EventObject& rEvent) in windowHidden() argument 296 (void)rEvent; in windowHidden() 305 void SAL_CALL PresenterButton::windowPaint (const css::awt::PaintEvent& rEvent) in windowPaint() argument 323 PresenterGeometryHelper::CreatePolygon(rEvent.UpdateRect, mxCanvas->getDevice()), in windowPaint() [all …]
|
| H A D | PresenterWindowManager.cxx | 97 const com::sun::star::drawing::framework::ConfigurationChangeEvent& rEvent); 103 const com::sun::star::lang::EventObject& rEvent); 362 void SAL_CALL PresenterWindowManager::windowResized (const awt::WindowEvent& rEvent) in windowResized() argument 365 if (rEvent.Source == mxParentWindow) in windowResized() 371 Reference<awt::XWindow> xWindow (rEvent.Source,UNO_QUERY); in windowResized() 385 void SAL_CALL PresenterWindowManager::windowMoved (const awt::WindowEvent& rEvent) in windowMoved() argument 388 if (rEvent.Source != mxParentWindow) in windowMoved() 390 Reference<awt::XWindow> xWindow (rEvent.Source,UNO_QUERY); in windowMoved() 401 void SAL_CALL PresenterWindowManager::windowShown (const lang::EventObject& rEvent) in windowShown() argument 403 (void)rEvent; in windowShown() [all …]
|
| H A D | PresenterSpritePane.cxx | 105 void SAL_CALL PresenterSpritePane::windowResized (const awt::WindowEvent& rEvent) in windowResized() argument 107 (void)rEvent; in windowResized() 108 PresenterPaneBase::windowResized(rEvent); in windowResized() 110 mpSprite->Resize(geometry::RealSize2D(rEvent.Width, rEvent.Height)); in windowResized() 119 void SAL_CALL PresenterSpritePane::windowMoved (const awt::WindowEvent& rEvent) in windowMoved() argument 121 (void)rEvent; in windowMoved() 122 PresenterPaneBase::windowMoved(rEvent); in windowMoved() 133 void SAL_CALL PresenterSpritePane::windowShown (const lang::EventObject& rEvent) in windowShown() argument 135 (void)rEvent; in windowShown() 136 PresenterPaneBase::windowShown(rEvent); in windowShown() [all …]
|
| H A D | PresenterSlideShowView.cxx | 561 void SAL_CALL PresenterSlideShowView::disposing (const lang::EventObject& rEvent) in disposing() argument 563 if (rEvent.Source == mxViewWindow) in disposing() 565 else if (rEvent.Source == mxSlideShow) in disposing() 574 void SAL_CALL PresenterSlideShowView::windowPaint (const awt::PaintEvent& rEvent) in windowPaint() argument 584 if (rEvent.Source == mxWindow) in windowPaint() 585 PaintOuterWindow(rEvent.UpdateRect); in windowPaint() 587 PaintEndSlide(rEvent.UpdateRect); in windowPaint() 589 PaintInnerWindow(rEvent); in windowPaint() 597 void SAL_CALL PresenterSlideShowView::mousePressed (const awt::MouseEvent& rEvent) in mousePressed() argument 599 awt::MouseEvent aEvent (rEvent); in mousePressed() [all …]
|
| H A D | PresenterPane.cxx | 92 void SAL_CALL PresenterPane::windowResized (const awt::WindowEvent& rEvent) in windowResized() argument 94 (void)rEvent; in windowResized() 95 PresenterPaneBase::windowResized(rEvent); in windowResized() 110 void SAL_CALL PresenterPane::windowMoved (const awt::WindowEvent& rEvent) in windowMoved() argument 112 (void)rEvent; in windowMoved() 113 PresenterPaneBase::windowMoved(rEvent); in windowMoved() 126 void SAL_CALL PresenterPane::windowShown (const lang::EventObject& rEvent) in windowShown() argument 128 (void)rEvent; in windowShown() 129 PresenterPaneBase::windowShown(rEvent); in windowShown() 146 void SAL_CALL PresenterPane::windowHidden (const lang::EventObject& rEvent) in windowHidden() argument [all …]
|
| H A D | PresenterPaneBorderManager.cxx | 288 void SAL_CALL PresenterPaneBorderManager::mousePressed (const css::awt::MouseEvent& rEvent) in mousePressed() argument 296 if (iDescriptor->first == rEvent.Source) in mousePressed() 306 maDragAnchor.X = rEvent.X + aOuterBox.X; in mousePressed() 307 maDragAnchor.Y = rEvent.Y + aOuterBox.Y; in mousePressed() 311 awt::Point(rEvent.X, rEvent.Y)); in mousePressed() 318 void SAL_CALL PresenterPaneBorderManager::mouseReleased (const css::awt::MouseEvent& rEvent) in mouseReleased() argument 320 (void)rEvent; in mouseReleased() 333 void SAL_CALL PresenterPaneBorderManager::mouseEntered (const css::awt::MouseEvent& rEvent) in mouseEntered() argument 335 (void)rEvent; in mouseEntered() 341 void SAL_CALL PresenterPaneBorderManager::mouseExited (const css::awt::MouseEvent& rEvent) in mouseExited() argument [all …]
|
| H A D | PresenterToolBar.cxx | 179 virtual void SAL_CALL disposing (const css::lang::EventObject& rEvent); 183 virtual void SAL_CALL notifyEvent (const css::document::EventObject& rEvent); 187 virtual void SAL_CALL statusChanged (const css::frame::FeatureStateEvent& rEvent); 242 virtual void SAL_CALL disposing (const css::lang::EventObject& rEvent); 606 void SAL_CALL PresenterToolBar::windowResized (const awt::WindowEvent& rEvent) in windowResized() argument 608 (void)rEvent; in windowResized() 615 void SAL_CALL PresenterToolBar::windowMoved (const awt::WindowEvent& rEvent) in windowMoved() argument 617 (void)rEvent; in windowMoved() 623 void SAL_CALL PresenterToolBar::windowShown (const lang::EventObject& rEvent) in windowShown() argument 625 (void)rEvent; in windowShown() [all …]
|
| H A D | PresenterScrollBar.cxx | 419 void SAL_CALL PresenterScrollBar::windowResized (const css::awt::WindowEvent& rEvent) in windowResized() argument 421 (void)rEvent; in windowResized() 428 void SAL_CALL PresenterScrollBar::windowMoved (const css::awt::WindowEvent& rEvent) in windowMoved() argument 430 (void)rEvent; in windowMoved() 436 void SAL_CALL PresenterScrollBar::windowShown (const css::lang::EventObject& rEvent) in windowShown() argument 438 (void)rEvent; in windowShown() 444 void SAL_CALL PresenterScrollBar::windowHidden (const css::lang::EventObject& rEvent) in windowHidden() argument 446 (void)rEvent; in windowHidden() 454 void SAL_CALL PresenterScrollBar::windowPaint (const css::awt::PaintEvent& rEvent) in windowPaint() argument 458 awt::Rectangle aRepaintBox (rEvent.UpdateRect); in windowPaint() [all …]
|
| H A D | PresenterSlidePreview.cxx | 159 void SAL_CALL PresenterSlidePreview::windowResized (const awt::WindowEvent& rEvent) in windowResized() argument 161 (void)rEvent; in windowResized() 171 void SAL_CALL PresenterSlidePreview::windowMoved (const awt::WindowEvent& rEvent) in windowMoved() argument 173 (void)rEvent; in windowMoved() 179 void SAL_CALL PresenterSlidePreview::windowShown (const lang::EventObject& rEvent) in windowShown() argument 181 (void)rEvent; in windowShown() 190 void SAL_CALL PresenterSlidePreview::windowHidden (const lang::EventObject& rEvent) in windowHidden() argument 192 (void)rEvent; in windowHidden() 200 void SAL_CALL PresenterSlidePreview::windowPaint (const awt::PaintEvent& rEvent) in windowPaint() argument 207 rEvent.UpdateRect.X, in windowPaint() [all …]
|
| H A D | PresenterController.hxx | 136 void HandleMouseClick (const css::awt::MouseEvent& rEvent); 150 const com::sun::star::drawing::framework::ConfigurationChangeEvent& rEvent); 156 const com::sun::star::lang::EventObject& rEvent); 162 const css::frame::FrameActionEvent& rEvent); 167 virtual void SAL_CALL keyPressed (const css::awt::KeyEvent& rEvent); 168 virtual void SAL_CALL keyReleased (const css::awt::KeyEvent& rEvent); 173 virtual void SAL_CALL focusGained (const css::awt::FocusEvent& rEvent); 174 virtual void SAL_CALL focusLost (const css::awt::FocusEvent& rEvent); 179 virtual void SAL_CALL mousePressed (const css::awt::MouseEvent& rEvent); 181 virtual void SAL_CALL mouseReleased (const css::awt::MouseEvent& rEvent); [all …]
|
| H A D | PresenterWindowManager.hxx | 139 virtual void SAL_CALL windowResized (const css::awt::WindowEvent& rEvent); 141 virtual void SAL_CALL windowMoved (const css::awt::WindowEvent& rEvent); 143 virtual void SAL_CALL windowShown (const css::lang::EventObject& rEvent); 145 virtual void SAL_CALL windowHidden (const css::lang::EventObject& rEvent); 150 virtual void SAL_CALL windowPaint (const css::awt::PaintEvent& rEvent); 155 virtual void SAL_CALL mousePressed (const css::awt::MouseEvent& rEvent); 157 virtual void SAL_CALL mouseReleased (const css::awt::MouseEvent& rEvent); 159 virtual void SAL_CALL mouseEntered (const css::awt::MouseEvent& rEvent); 161 virtual void SAL_CALL mouseExited (const css::awt::MouseEvent& rEvent); 166 virtual void SAL_CALL focusGained (const css::awt::FocusEvent& rEvent); [all …]
|
| H A D | PresenterButton.hxx | 85 virtual void SAL_CALL windowResized (const css::awt::WindowEvent& rEvent); 87 virtual void SAL_CALL windowMoved (const css::awt::WindowEvent& rEvent); 89 virtual void SAL_CALL windowShown (const css::lang::EventObject& rEvent); 91 virtual void SAL_CALL windowHidden (const css::lang::EventObject& rEvent); 96 virtual void SAL_CALL windowPaint (const css::awt::PaintEvent& rEvent); 101 virtual void SAL_CALL mousePressed (const css::awt::MouseEvent& rEvent); 103 virtual void SAL_CALL mouseReleased (const css::awt::MouseEvent& rEvent); 105 virtual void SAL_CALL mouseEntered (const css::awt::MouseEvent& rEvent); 107 virtual void SAL_CALL mouseExited (const css::awt::MouseEvent& rEvent); 112 virtual void SAL_CALL mouseMoved (const css::awt::MouseEvent& rEvent); [all …]
|
| /trunk/main/sc/source/ui/vba/ |
| H A D | vbaeventshelper.cxx | 136 virtual void SAL_CALL windowOpened( const lang::EventObject& rEvent ); 137 virtual void SAL_CALL windowClosing( const lang::EventObject& rEvent ); 138 virtual void SAL_CALL windowClosed( const lang::EventObject& rEvent ); 139 virtual void SAL_CALL windowMinimized( const lang::EventObject& rEvent ); 140 virtual void SAL_CALL windowNormalized( const lang::EventObject& rEvent ); 141 virtual void SAL_CALL windowActivated( const lang::EventObject& rEvent ); 142 virtual void SAL_CALL windowDeactivated( const lang::EventObject& rEvent ); 145 virtual void SAL_CALL windowResized( const awt::WindowEvent& rEvent ); 146 virtual void SAL_CALL windowMoved( const awt::WindowEvent& rEvent ); 147 virtual void SAL_CALL windowShown( const lang::EventObject& rEvent ); [all …]
|
| /trunk/main/vcl/unx/generic/app/ |
| H A D | i18n_im.cxx | 83 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 …]
|
| /trunk/main/sd/source/ui/slidesorter/controller/ |
| H A D | SlsSelectionFunction.cxx | 128 const MouseEvent& rEvent, 132 const AcceptDropEvent& rEvent, 136 const KeyEvent& rEvent, 145 sal_uInt32 EncodeMouseEvent (const MouseEvent& rEvent) const; 150 sal_uInt32 EncodeKeyEvent (const KeyEvent& rEvent) const; 372 sal_Bool SelectionFunction::MouseButtonDown (const MouseEvent& rEvent) in MouseButtonDown() argument 375 SetMouseButtonCode (rEvent.GetButtons()); in MouseButtonDown() 376 aMDPos = rEvent.GetPosPixel(); in MouseButtonDown() 381 ProcessMouseEvent(BUTTON_DOWN, rEvent); in MouseButtonDown() 386 sal_Bool SelectionFunction::MouseMove (const MouseEvent& rEvent) in MouseMove() argument [all …]
|
| /trunk/main/sd/source/ui/tools/ |
| H A D | EventMultiplexer.cxx | 86 void CallListeners (EventMultiplexerEvent& rEvent); 98 const com::sun::star::beans::PropertyChangeEvent& rEvent); 103 const com::sun::star::lang::EventObject& rEvent); 111 frameAction (const ::com::sun::star::frame::FrameActionEvent& rEvent); 116 const ::com::sun::star::drawing::framework::ConfigurationChangeEvent& rEvent); 548 const beans::PropertyChangeEvent& rEvent) in propertyChange() argument 552 if (rEvent.PropertyName.equals(msCurrentPagePropertyName)) in propertyChange() 556 else if (rEvent.PropertyName.equals(msEditModePropertyName)) in propertyChange() 559 rEvent.NewValue >>= bIsMasterPageMode; in propertyChange() 573 const frame::FrameActionEvent& rEvent) in frameAction() argument [all …]
|
| /trunk/main/sd/source/ui/framework/module/ |
| H A D | ResourceManager.cxx | 145 const ConfigurationChangeEvent& rEvent) in notifyConfigurationChange() argument 147 OSL_ASSERT(rEvent.ResourceId.is()); in notifyConfigurationChange() 150 rEvent.UserData >>= nEventType; in notifyConfigurationChange() 154 if (rEvent.ResourceId->isBoundToURL( in notifyConfigurationChange() 160 if (rEvent.ResourceId->getResourceTypePrefix().equals( in notifyConfigurationChange() 166 rEvent.ResourceId->getResourceURL(), in notifyConfigurationChange() 167 rEvent.Configuration, in notifyConfigurationChange() 171 else if (rEvent.ResourceId->compareTo(mxResourceId) == 0) in notifyConfigurationChange() 176 HandleResourceRequest(true, rEvent.Configuration); in notifyConfigurationChange() 181 if (rEvent.ResourceId->compareTo(mxMainViewAnchorId) == 0) in notifyConfigurationChange() [all …]
|
| /trunk/main/slideshow/source/inc/ |
| H A D | usereventqueue.hxx | 121 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 …]
|
| /trunk/main/sfx2/source/view/ |
| H A D | userinputinterception.cxx | 97 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 …]
|
| /trunk/main/sd/source/ui/slidesorter/shell/ |
| H A D | SlideSorter.cxx | 63 virtual void KeyInput (const KeyEvent& rEvent); 64 virtual void MouseMove (const MouseEvent& rEvent); 65 virtual void MouseButtonUp (const MouseEvent& rEvent); 66 virtual void MouseButtonDown (const MouseEvent& rEvent); 67 virtual void Command (const CommandEvent& rEvent); 68 virtual long Notify (NotifyEvent& rEvent); 636 void ContentWindow::KeyInput (const KeyEvent& rEvent) in KeyInput() argument 639 mpCurrentFunction->KeyInput(rEvent); in KeyInput() 645 void ContentWindow::MouseMove (const MouseEvent& rEvent) in MouseMove() argument 648 mpCurrentFunction->MouseMove(rEvent); in MouseMove() [all …]
|