Changeset 28932 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 30, 2010 12:43:58 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60902
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/vm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsSystem.cpp
r28800 r28932 171 171 mCbTCUseUTC->setChecked (rtcUseUTC); 172 172 173 /* USB tablet */ 174 KPointingHidType pointingHid = mMachine.GetPointingHidType (); 175 mCbUseAbsHID->setChecked (pointingHid == KPointingHidType_USBTablet); 176 173 177 /* CPU count */ 174 178 bool fVTxAMDVSupported = vboxGlobal().virtualBox().GetHost() … … 241 245 /* RTC */ 242 246 mMachine.SetRTCUseUTC (mCbTCUseUTC->isChecked()); 247 248 /* USB tablet */ 249 mMachine.SetPointingHidType (mCbUseAbsHID->isChecked() ? KPointingHidType_USBTablet : KPointingHidType_PS2Mouse ); 243 250 244 251 /* RAM size */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsSystem.ui
r28800 r28932 355 355 </widget> 356 356 </item> 357 <item row="7" column="0" colspan="3"> 357 <item row="7" column="1" > 358 <widget class="QCheckBox" name="mCbUseAbsHID" > 359 <property name="sizePolicy" > 360 <sizepolicy vsizetype="Fixed" hsizetype="MinimumExpanding" > 361 <horstretch>0</horstretch> 362 <verstretch>0</verstretch> 363 </sizepolicy> 364 </property> 365 <property name="whatsThis" > 366 <string>If checked, an absolute pointing device (a USB tablet) will be supported. Otherwise, only a standard PS/2 mouse will be emulated.</string> 367 </property> 368 <property name="text" > 369 <string>Enable &absolute pointing device</string> 370 </property> 371 </widget> 372 </item> 373 <item row="8" column="0" colspan="3"> 358 374 <spacer name="mSpVer1"> 359 375 <property name="orientation">
Note:
See TracChangeset
for help on using the changeset viewer.