- Timestamp:
- May 28, 2019 7:39:19 AM (6 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r78786 r78801 23161 23161 <enum 23162 23162 name="VBoxEventType" 23163 uuid=" 822087CA-4703-49E4-B20D-C6D794E67969"23163 uuid="d5d15e38-808d-11e9-aaac-4bc5d973ca37" 23164 23164 > 23165 23165 … … 23570 23570 </desc> 23571 23571 </const> 23572 <const name="OnGuestMonitorInfoChanged" value="101"> 23573 <desc> 23574 See <link to="IGuestMonitorInfoChangedEvent">IGuestMonitorInfoChangedEvent</link>. 23575 </desc> 23576 </const> 23572 23577 <!-- Last event marker --> 23573 <const name="Last" value="10 1">23578 <const name="Last" value="102"> 23574 23579 <desc> 23575 23580 Must be last event, used for iterations and structures relying on numerical event values. … … 25664 25669 <attribute name="y" readonly="yes" type="unsigned long"> 25665 25670 <desc>Reported Y position</desc> 25671 </attribute> 25672 </interface> 25673 25674 <interface 25675 name="IGuestMonitorInfoChangedEvent" extends="IEvent" 25676 uuid="0b3cdeb2-808e-11e9-b773-133d9330f849" 25677 wsmap="managed" autogen="VBoxEvent" id="OnGuestMonitorInfoChanged"> 25678 <desc>The guest reports cursor position data.</desc> 25679 25680 <attribute name="output" readonly="yes" type="unsigned long"> 25681 <desc>The virtual display output on which the monitor has changed.</desc> 25666 25682 </attribute> 25667 25683 </interface> -
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r78784 r78801 2026 2026 pVMMDevPort->pfnRequestDisplayChange(pVMMDevPort, 1, &d, false); 2027 2027 } 2028 /* Remember the monitor information . */2028 /* Remember the monitor information and notify listeners. */ 2029 2029 maFramebuffers[aDisplay].monitorDesc = d; 2030 fireGuestMonitorInfoChangedEvent(mParent->i_getEventSource(), aDisplay); 2030 2031 return S_OK; 2031 2032 }
Note:
See TracChangeset
for help on using the changeset viewer.