Changeset 105864 in vbox for trunk/src/VBox/Main/idl
- Timestamp:
- Aug 26, 2024 6:45:15 PM (9 months ago)
- svn:sync-xref-src-repo-rev:
- 164584
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r105576 r105864 5813 5813 <interface 5814 5814 name="IGraphicsAdapter" extends="$unknown" 5815 uuid=" f692806f-febe-4049-b476-1292a8e45b09"5815 uuid="13ee6eb4-06fe-406b-ad69-f6e08b0587a3" 5816 5816 wsmap="managed" 5817 5817 rest="managed" … … 5829 5829 <attribute name="VRAMSize" type="unsigned long"> 5830 5830 <desc>Video memory size in megabytes.</desc> 5831 </attribute>5832 5833 <attribute name="accelerate3DEnabled" type="boolean" default="false">5834 <desc>5835 This setting determines whether VirtualBox allows this machine to make5836 use of the 3D graphics support available on the host.</desc>5837 </attribute>5838 5839 <attribute name="accelerate2DVideoEnabled" type="boolean" default="false">5840 <desc>5841 This setting determines whether VirtualBox allows this machine to make5842 use of the 2D video acceleration support available on the host.</desc>5843 5831 </attribute> 5844 5832 … … 5852 5840 </desc> 5853 5841 </attribute> 5842 5843 <method name="setFeature"> 5844 <desc>Sets a graphics controller feature.</desc> 5845 <param name="feature" type="GraphicsFeature" dir="in"> 5846 <desc> 5847 Graphics controller feature to set. 5848 </desc> 5849 </param> 5850 <param name="enabled" type="boolean" dir="in"> 5851 <desc> 5852 Whether to enable or disable the feature. 5853 </desc> 5854 </param> 5855 </method> 5856 5857 <method name="isFeatureEnabled" const="yes"> 5858 <desc>Returns whether a particular feature is enabled for this adapter or not.</desc> 5859 <param name="feature" type="GraphicsFeature" dir="in"> 5860 <desc>Feature to check for.</desc> 5861 </param> 5862 <param name="enabled" type="boolean" dir="return"> 5863 <desc>@c true if the feature is enabled, @c false if not.</desc> 5864 </param> 5865 </method> 5854 5866 5855 5867 </interface> … … 6825 6837 <const name="QemuRamFB" value="4"> 6826 6838 <desc>QEMU RAM based framebuffer based device.</desc> 6839 </const> 6840 </enum> 6841 6842 <enum 6843 name="GraphicsFeature" 6844 uuid="5cd900a5-ec77-4a08-8f8d-c0a36f462a7c" 6845 > 6846 <desc>Graphics features.</desc> 6847 <const name="None" value="0"> 6848 <desc>No feature specified, invalid.</desc> 6849 </const> 6850 <const name="Acceleration2DVideo" value="1"> 6851 <desc>2D video acceleration.</desc> 6852 </const> 6853 <const name="Acceleration3D" value="2"> 6854 <desc>3D acceleration.</desc> 6827 6855 </const> 6828 6856 </enum> … … 12881 12909 name="IPlatformProperties" 12882 12910 extends="$unknown" 12883 uuid=" a23502e4-cc54-490f-a344-c8ca8813f906"12911 uuid="5bae19d0-ca40-4ca2-a485-c8065190bbe5" 12884 12912 wsmap="managed" 12885 12913 rest="managed" … … 12960 12988 </attribute> 12961 12989 12962 <attribute name="supportedG raphicsControllerTypes" type="GraphicsControllerType" safearray="yes" readonly="yes">12990 <attribute name="supportedGfxControllerTypes" type="GraphicsControllerType" safearray="yes" readonly="yes"> 12963 12991 <desc> 12964 12992 Returns an array of officially supported values for enum <link to="GraphicsControllerType"/>, … … 13169 13197 </method> 13170 13198 13199 <method name="getSupportedGfxFeaturesForType"> 13200 <desc> 13201 Returns the supported features of a given graphics controller. 13202 </desc> 13203 13204 <param name="graphicsControllerType" type="GraphicsControllerType" dir="in"> 13205 <desc>Graphics controller type to return features for.</desc> 13206 </param> 13207 13208 <param name="supportedControllerFeatures" type="GraphicsFeature" safearray="yes" dir="return"> 13209 <desc>The graphics controller features which are valid.</desc> 13210 </param> 13211 </method> 13212 13171 13213 <method name="getDeviceTypesForStorageBus"> 13172 13214 <desc>Returns list of all the supported device types … … 13265 13307 name="ISystemProperties" 13266 13308 extends="$unknown" 13267 uuid=" c61e666e-34ab-403a-8160-78bd4512ca86"13309 uuid="925084b0-625f-422f-a67d-0ede1880a56c" 13268 13310 wsmap="managed" 13269 13311 rest="managed" … … 13630 13672 <desc> 13631 13673 Returns an array of officially supported values for enum <link to="ExportOptions"/>, 13674 in the sense of what is e.g. worth offering in the VirtualBox GUI. 13675 </desc> 13676 </attribute> 13677 13678 <attribute name="supportedGraphicsFeatures" type="GraphicsFeature" safearray="yes" readonly="yes"> 13679 <desc> 13680 Returns an array of officially supported values for enum <link to="GraphicsFeature"/>, 13632 13681 in the sense of what is e.g. worth offering in the VirtualBox GUI. 13633 13682 </desc>
Note:
See TracChangeset
for help on using the changeset viewer.