- Timestamp:
- Jun 8, 2016 9:16:07 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107903
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r61560 r61564 16765 16765 <interface 16766 16766 name="IDisplay" extends="$unknown" 16767 uuid=" 92d9349f-59fd-4eb1-b565-1ba51beb1c9c"16767 uuid="02326f63-bcb3-4481-96e0-30d1c2ee97f6" 16768 16768 wsmap="managed" 16769 16769 wrap-hint-server-addinterfaces="IEventListener" … … 16781 16781 the host computer or an RDP session's display on a remote computer. 16782 16782 </desc> 16783 16784 <attribute name="guestScreenLayout" type="IGuestScreenInfo" safearray="yes" readonly="yes"> 16785 <desc> 16786 Layout of the guest screens. 16787 </desc> 16788 </attribute> 16783 16789 16784 16790 <method name="getScreenResolution"> … … 17084 17090 </desc> 17085 17091 <param name="fUnscaledHiDPI" type="boolean" dir="in"/> 17086 </method>17087 17088 <method name="queryScreenLayout">17089 <desc>17090 Queries layout of the guest screens.17091 </desc>17092 <param name="guestScreenInfo" type="IGuestScreenInfo" safearray="yes" dir="return"/>17093 17092 </method> 17094 17093 -
trunk/src/VBox/Main/include/DisplayImpl.h
r61560 r61564 217 217 private: 218 218 // Wrapped IDisplay properties 219 virtual HRESULT getGuestScreenLayout(std::vector<ComPtr<IGuestScreenInfo> > &aGuestScreenLayout); 219 220 220 221 // Wrapped IDisplay methods … … 272 273 ULONG aScaleFactorHMultiplied); 273 274 virtual HRESULT notifyHiDPIOutputPolicyChange(BOOL fUnscaledHiDPI); 274 virtual HRESULT queryScreenLayout(std::vector<ComPtr<IGuestScreenInfo> > &aGuestScreenInfo);275 275 virtual HRESULT setScreenLayout(ScreenLayoutMode_T aScreenLayoutMode, 276 276 const std::vector<ComPtr<IGuestScreenInfo> > &aGuestScreenInfo); -
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r61560 r61564 2804 2804 } 2805 2805 2806 HRESULT Display:: queryScreenLayout(std::vector<ComPtr<IGuestScreenInfo> > &aGuestScreenInfo)2807 { 2808 NOREF(aGuestScreen Info);2806 HRESULT Display::getGuestScreenLayout(std::vector<ComPtr<IGuestScreenInfo> > &aGuestScreenLayout) 2807 { 2808 NOREF(aGuestScreenLayout); 2809 2809 return E_NOTIMPL; 2810 2810 }
Note:
See TracChangeset
for help on using the changeset viewer.