Changeset 33386 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Oct 24, 2010 3:57:55 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 66973
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxVMInformationDlg.cpp
r31436 r33386 475 475 else 476 476 osType = vboxGlobal().vmGuestOSTypeDescription (osType); 477 int vrd pPort = console.GetRemoteDisplayInfo().GetPort();478 QString vrd pInfo = (vrdpPort == 0 || vrdpPort == -1)?479 tr ("Not Available", "details report (VRD Pserver port)") :480 QString ("%1").arg (vrd pPort);477 int vrdePort = console.GetVRDEServerInfo().GetPort(); 478 QString vrdeInfo = (vrdePort == 0 || vrdePort == -1)? 479 tr ("Not Available", "details report (VRDE server port)") : 480 QString ("%1").arg (vrdePort); 481 481 482 482 /* Searching for longest string */ 483 483 QStringList valuesList; 484 valuesList << resolution << virtualization << nested << addVersionStr << osType << vrd pInfo;484 valuesList << resolution << virtualization << nested << addVersionStr << osType << vrdeInfo; 485 485 int maxLength = 0; 486 486 foreach (const QString &value, valuesList) … … 494 494 result += formatValue (tr ("Guest Additions"), addVersionStr, maxLength); 495 495 result += formatValue (tr ("Guest OS Type"), osType, maxLength); 496 result += formatValue (VBoxGlobal::tr ("Remote D isplay Server Port", "details report (VRDP Server)"), vrdpInfo, maxLength);496 result += formatValue (VBoxGlobal::tr ("Remote Desktop Server Port", "details report (VRDE Server)"), vrdeInfo, maxLength); 497 497 result += paragraph; 498 498 } -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMainEventListener.cpp
r31813 r33386 172 172 /* Not used * 173 173 case KVBoxEventType_OnCPUChange: 174 case KVBoxEventType_OnVRD PServerChange:175 case KVBoxEventType_On RemoteDisplayInfoChange:174 case KVBoxEventType_OnVRDEServerChange: 175 case KVBoxEventType_OnVRDEServerInfoChange: 176 176 */ 177 177 case KVBoxEventType_OnUSBControllerChanged: -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r33294 r33386 1657 1657 1658 1658 /* VRDP tab */ 1659 CVRD PServer srv = aMachine.GetVRDPServer();1659 CVRDEServer srv = aMachine.GetVRDEServer(); 1660 1660 if (!srv.isNull()) 1661 1661 { 1662 1662 if (srv.GetEnabled()) 1663 1663 item += QString (sSectionItemTpl2) 1664 .arg (tr ("Remote D isplay Server Port", "details report (VRDPServer)"))1665 .arg (srv.Get Ports());1664 .arg (tr ("Remote Desktop Server Port", "details report (VRDE Server)")) 1665 .arg (srv.GetVRDEProperty("TCP/Ports")); 1666 1666 else 1667 1667 item += QString (sSectionItemTpl2) 1668 .arg (tr ("Remote D isplay Server", "details report (VRDPServer)"))1669 .arg (tr ("Disabled", "details report (VRD PServer)"));1668 .arg (tr ("Remote Desktop Server", "details report (VRDE Server)")) 1669 .arg (tr ("Disabled", "details report (VRDE Server)")); 1670 1670 ++ rows; 1671 1671 } … … 2702 2702 mDiskTypes_Differencing = tr ("Differencing", "DiskType"); 2703 2703 2704 m VRDPAuthTypes [KVRDPAuthType_Null] = tr ("Null", "VRDPAuthType");2705 m VRDPAuthTypes [KVRDPAuthType_External] = tr ("External", "VRDPAuthType");2706 m VRDPAuthTypes [KVRDPAuthType_Guest] = tr ("Guest", "VRDPAuthType");2704 mAuthTypes [KAuthType_Null] = tr ("Null", "AuthType"); 2705 mAuthTypes [KAuthType_External] = tr ("External", "AuthType"); 2706 mAuthTypes [KAuthType_Guest] = tr ("Guest", "AuthType"); 2707 2707 2708 2708 mPortModeTypes [KPortMode_Disconnected] = tr ("Disconnected", "PortMode"); -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h
r32741 r33386 317 317 } 318 318 319 QString toString (K VRDPAuthType t) const320 { 321 AssertMsg (!m VRDPAuthTypes.value (t).isNull(), ("No text for %d", t));322 return m VRDPAuthTypes.value (t);319 QString toString (KAuthType t) const 320 { 321 AssertMsg (!mAuthTypes.value (t).isNull(), ("No text for %d", t)); 322 return mAuthTypes.value (t); 323 323 } 324 324 … … 365 365 } 366 366 367 K VRDPAuthType toVRDPAuthType (const QString &s) const368 { 369 QULongStringHash::const_iterator it = 370 qFind (m VRDPAuthTypes.begin(), mVRDPAuthTypes.end(), s);371 AssertMsg (it != m VRDPAuthTypes.end(), ("No value for {%s}",367 KAuthType toAuthType (const QString &s) const 368 { 369 QULongStringHash::const_iterator it = 370 qFind (mAuthTypes.begin(), mAuthTypes.end(), s); 371 AssertMsg (it != mAuthTypes.end(), ("No value for {%s}", 372 372 s.toLatin1().constData())); 373 return K VRDPAuthType (it.key());373 return KAuthType (it.key()); 374 374 } 375 375 … … 797 797 QString mDiskTypes_Differencing; 798 798 799 QULongStringHash m VRDPAuthTypes;799 QULongStringHash mAuthTypes; 800 800 QULongStringHash mPortModeTypes; 801 801 QULongStringHash mUSBFilterActionTypes; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIActionsPool.cpp
r31286 r33386 796 796 }; 797 797 798 class ToggleVRD PAction : public UIToggleAction799 { 800 Q_OBJECT; 801 802 public: 803 804 ToggleVRD PAction(QObject *pParent)798 class ToggleVRDEServerAction : public UIToggleAction 799 { 800 Q_OBJECT; 801 802 public: 803 804 ToggleVRDEServerAction(QObject *pParent) 805 805 : UIToggleAction(pParent, 806 806 ":/vrdp_on_16px.png", ":/vrdp_16px.png", … … 1197 1197 m_actionsPool[UIActionIndex_Simple_NetworkAdaptersDialog] = new ShowNetworkAdaptersDialogAction(this); 1198 1198 m_actionsPool[UIActionIndex_Simple_SharedFoldersDialog] = new ShowSharedFoldersDialogAction(this); 1199 m_actionsPool[UIActionIndex_Toggle_VRD P] = new ToggleVRDPAction(this);1199 m_actionsPool[UIActionIndex_Toggle_VRDEServer] = new ToggleVRDEServerAction(this); 1200 1200 m_actionsPool[UIActionIndex_Simple_InstallGuestTools] = new PerformInstallGuestToolsAction(this); 1201 1201 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIActionsPool.h
r30753 r33386 82 82 UIActionIndex_Menu_SharedFolders, 83 83 UIActionIndex_Simple_SharedFoldersDialog, 84 UIActionIndex_Toggle_VRD P,84 UIActionIndex_Toggle_VRDEServer, 85 85 UIActionIndex_Simple_InstallGuestTools, 86 86 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIIndicatorsPool.cpp
r31698 r33386 479 479 }; 480 480 481 class UIIndicatorVRD PDisks : public QIWithRetranslateUI<QIStateIndicator>482 { 483 Q_OBJECT; 484 485 public: 486 487 UIIndicatorVRD PDisks(CSession &session)481 class UIIndicatorVRDEDisks : public QIWithRetranslateUI<QIStateIndicator> 482 { 483 Q_OBJECT; 484 485 public: 486 487 UIIndicatorVRDEDisks(CSession &session) 488 488 : QIWithRetranslateUI<QIStateIndicator>() 489 489 , m_session(session) … … 502 502 void updateAppearance() 503 503 { 504 const CVRDPServer &vrdpsrv = m_session.GetMachine().GetVRDPServer();505 if (! vrdpsrv.isNull())504 CVRDEServer &srv = m_session.GetMachine().GetVRDEServer(); 505 if (!srv.isNull()) 506 506 { 507 507 /* update menu&status icon state */ 508 bool f VRDPEnabled = vrdpsrv.GetEnabled();509 510 setState(f VRDPEnabled ? KDeviceActivity_Idle : KDeviceActivity_Null);511 512 QString tip = QApplication::translate("UIIndicatorsPool", "Indicates whether the Remote D isplay (VRDP Server)"508 bool fEnabled = srv.GetEnabled(); 509 510 setState(fEnabled ? KDeviceActivity_Idle : KDeviceActivity_Null); 511 512 QString tip = QApplication::translate("UIIndicatorsPool", "Indicates whether the Remote Desktop Server " 513 513 "is enabled (<img src=:/vrdp_16px.png/>) or not " 514 514 "(<img src=:/vrdp_disabled_16px.png/>)."); 515 if ( vrdpsrv.GetEnabled())516 tip += QApplication::translate("UIIndicatorsPool", "<hr>The VRDP Server is listening on port %1").arg(vrdpsrv.GetPorts());515 if (srv.GetEnabled()) 516 tip += QApplication::translate("UIIndicatorsPool", "<hr>The Remote Desktop Server is listening on port %1").arg(srv.GetVRDEProperty("TCP/Ports")); 517 517 setToolTip(tip); 518 518 } -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
r33300 r33386 497 497 connect(actionsPool()->action(UIActionIndex_Simple_SharedFoldersDialog), SIGNAL(triggered()), 498 498 this, SLOT(sltOpenSharedFoldersDialog())); 499 connect(actionsPool()->action(UIActionIndex_Toggle_VRD P), SIGNAL(toggled(bool)),500 this, SLOT(sltSwitchVrd p(bool)));499 connect(actionsPool()->action(UIActionIndex_Toggle_VRDEServer), SIGNAL(toggled(bool)), 500 this, SLOT(sltSwitchVrde(bool))); 501 501 connect(actionsPool()->action(UIActionIndex_Simple_InstallGuestTools), SIGNAL(triggered()), 502 502 this, SLOT(sltInstallGuestAdditions())); … … 562 562 m_pRunningOrPausedActions->addAction(actionsPool()->action(UIActionIndex_Menu_SharedFolders)); 563 563 m_pRunningOrPausedActions->addAction(actionsPool()->action(UIActionIndex_Simple_SharedFoldersDialog)); 564 m_pRunningOrPausedActions->addAction(actionsPool()->action(UIActionIndex_Toggle_VRD P));564 m_pRunningOrPausedActions->addAction(actionsPool()->action(UIActionIndex_Toggle_VRDEServer)); 565 565 m_pRunningOrPausedActions->addAction(actionsPool()->action(UIActionIndex_Simple_InstallGuestTools)); 566 566 } … … 1442 1442 } 1443 1443 1444 void UIMachineLogic::sltSwitchVrd p(bool fOn)1445 { 1446 /* Enable VRD Pserver if possible: */1447 CVRD PServer server = session().GetMachine().GetVRDPServer();1448 AssertMsg(!server.isNull(), ("VRD Pserver should not be null!\n"));1444 void UIMachineLogic::sltSwitchVrde(bool fOn) 1445 { 1446 /* Enable VRDE server if possible: */ 1447 CVRDEServer server = session().GetMachine().GetVRDEServer(); 1448 AssertMsg(!server.isNull(), ("VRDE server should not be null!\n")); 1449 1449 server.SetEnabled(fOn); 1450 1450 } -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.h
r30936 r33386 175 175 void sltOpenNetworkAdaptersDialog(); 176 176 void sltOpenSharedFoldersDialog(); 177 void sltSwitchVrd p(bool fOn);177 void sltSwitchVrde(bool fOn); 178 178 void sltInstallGuestAdditions(); 179 179 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineMenuBar.cpp
r32741 r33386 186 186 pMenu->addAction(pActionsPool->action(UIActionIndex_Simple_SharedFoldersDialog)); 187 187 pMenu->addSeparator(); 188 pMenu->addAction(pActionsPool->action(UIActionIndex_Toggle_VRD P));188 pMenu->addAction(pActionsPool->action(UIActionIndex_Toggle_VRDEServer)); 189 189 pMenu->addSeparator(); 190 190 pMenu->addAction(pActionsPool->action(UIActionIndex_Simple_InstallGuestTools)); -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r33140 r33386 582 582 /* Availability settings: */ 583 583 { 584 /* VRD PStuff: */585 CVRD PServer vrdpServer = machine.GetVRDPServer();586 if ( vrdpServer.isNull())587 { 588 /* Hide VRD PAction: */589 uimachine()->actionsPool()->action(UIActionIndex_Toggle_VRD P)->setVisible(false);584 /* VRDE Stuff: */ 585 CVRDEServer server = machine.GetVRDEServer(); 586 if (server.isNull()) 587 { 588 /* Hide VRDE Action: */ 589 uimachine()->actionsPool()->action(UIActionIndex_Toggle_VRDEServer)->setVisible(false); 590 590 } 591 591 else 592 592 { 593 /* Check/Uncheck VRD P action depending on VRDPserver status: */594 uimachine()->actionsPool()->action(UIActionIndex_Toggle_VRD P)->setChecked(vrdpServer.GetEnabled());593 /* Check/Uncheck VRDE action depending on VRDE server status: */ 594 uimachine()->actionsPool()->action(UIActionIndex_Toggle_VRDEServer)->setChecked(server.GetEnabled()); 595 595 } 596 596 } -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.h
r32086 r33386 53 53 UIConsoleEventType_MediumChange, 54 54 /* Not used: UIConsoleEventType_CPUChange, */ 55 UIConsoleEventType_VRD PServerChange,56 UIConsoleEventType_ RemoteDisplayInfoChange,55 UIConsoleEventType_VRDEServerChange, 56 UIConsoleEventType_VRDEServerInfoChange, 57 57 UIConsoleEventType_USBControllerChange, 58 58 UIConsoleEventType_USBDeviceStateChange, -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIVMDesktop.cpp
r32760 r33386 586 586 item += sSectionItemTpl2.arg(tr("Acceleration", "details report"), accel.join(", ")); 587 587 588 /* VRD Ptab */589 const CVRDPServer &srv = m_machine.GetVRDPServer();588 /* VRDE tab */ 589 CVRDEServer &srv = m_machine.GetVRDEServer(); 590 590 if (!srv.isNull()) 591 591 { 592 592 if (srv.GetEnabled()) 593 593 item += QString(sSectionItemTpl2) 594 .arg(tr("Remote D isplay Server Port", "details report (VRDPServer)"))595 .arg(srv.Get Ports());594 .arg(tr("Remote Desktop Server Port", "details report (VRDE Server)")) 595 .arg(srv.GetVRDEProperty("TCP/Ports")); 596 596 else 597 597 item += QString(sSectionItemTpl2) 598 .arg(tr("Remote D isplay Server", "details report (VRDPServer)"))599 .arg(tr("Disabled", "details report (VRD PServer)"));598 .arg(tr("Remote Desktop Server", "details report (VRDE Server)")) 599 .arg(tr("Disabled", "details report (VRDE Server)")); 600 600 } 601 601 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/VBoxGLSettingsGeneral.cpp
r33238 r33386 61 61 { 62 62 mPsMach->setPath (aProps.GetDefaultMachineFolder()); 63 mPsVRDP->setPath (aProps.Get RemoteDisplayAuthLibrary());63 mPsVRDP->setPath (aProps.GetVRDEAuthLibrary()); 64 64 mCbCheckTrayIcon->setChecked (aGs.trayIconEnabled()); 65 65 #ifdef Q_WS_MAC … … 75 75 aProps.SetDefaultMachineFolder (mPsMach->path()); 76 76 if (aProps.isOk() && mPsVRDP->isModified()) 77 aProps.Set RemoteDisplayAuthLibrary (mPsVRDP->path());77 aProps.SetVRDEAuthLibrary (mPsVRDP->path()); 78 78 aGs.setTrayIconEnabled (mCbCheckTrayIcon->isChecked()); 79 79 #ifdef Q_WS_MAC -
trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsDisplay.cpp
r32510 r33386 66 66 mLeMemory->setValidator (new QIntValidator (m_minVRAM, m_maxVRAMVisible, this)); 67 67 mLeMonitors->setValidator (new QIntValidator (MinMonitors, MaxMonitors, this)); 68 mLeVRD PPort->setValidator (new QRegExpValidator (QRegExp ("(([0-9]{1,5}(\\-[0-9]{1,5}){0,1}),)*([0-9]{1,5}(\\-[0-9]{1,5}){0,1})"), this));69 mLeVRD PTimeout->setValidator (new QIntValidator (this));68 mLeVRDEPort->setValidator (new QRegExpValidator (QRegExp ("(([0-9]{1,5}(\\-[0-9]{1,5}){0,1}),)*([0-9]{1,5}(\\-[0-9]{1,5}){0,1})"), this)); 69 mLeVRDETimeout->setValidator (new QIntValidator (this)); 70 70 71 71 /* Setup connections */ … … 101 101 valueChangedVRAM (mSlMemory->value()); 102 102 valueChangedMonitors (mSlMonitors->value()); 103 /* Setup VRD Pwidget */104 mCbVRD PMethod->insertItem (0, ""); /* KVRDPAuthType_Null */105 mCbVRD PMethod->insertItem (1, ""); /* KVRDPAuthType_External */106 mCbVRD PMethod->insertItem (2, ""); /* KVRDPAuthType_Guest */103 /* Setup VRDE widget */ 104 mCbVRDEMethod->insertItem (0, ""); /* KAuthType_Null */ 105 mCbVRDEMethod->insertItem (1, ""); /* KAuthType_External */ 106 mCbVRDEMethod->insertItem (2, ""); /* KAuthType_Guest */ 107 107 /* Initially disabled */ 108 mCbVRD P->setChecked (false);108 mCbVRDE->setChecked (false); 109 109 110 110 mCb3D->setEnabled (false); … … 153 153 #endif 154 154 155 /* VRDPSettings */156 CVRD PServer vrdp = mMachine.GetVRDPServer();157 if (!vrd p.isNull())158 { 159 mCbVRD P->setChecked (vrdp.GetEnabled());160 mLeVRD PPort->setText (vrdp.GetPorts());161 mCbVRD PMethod->setCurrentIndex (mCbVRDPMethod->162 findText (vboxGlobal().toString (vrd p.GetAuthType())));163 mLeVRD PTimeout->setText (QString::number (vrdp.GetAuthTimeout()));164 mCbMultipleConn->setChecked(vrd p.GetAllowMultiConnection());155 /* Remote Desktop Settings */ 156 CVRDEServer vrdeServer = mMachine.GetVRDEServer(); 157 if (!vrdeServer.isNull()) 158 { 159 mCbVRDE->setChecked (vrdeServer.GetEnabled()); 160 mLeVRDEPort->setText (vrdeServer.GetVRDEProperty("TCP/Ports")); 161 mCbVRDEMethod->setCurrentIndex (mCbVRDEMethod-> 162 findText (vboxGlobal().toString (vrdeServer.GetAuthType()))); 163 mLeVRDETimeout->setText (QString::number (vrdeServer.GetAuthTimeout())); 164 mCbMultipleConn->setChecked(vrdeServer.GetAllowMultiConnection()); 165 165 } 166 166 else … … 187 187 #endif 188 188 189 /* VRD PSettings */190 CVRD PServer vrdp = mMachine.GetVRDPServer();191 if (!vrd p.isNull())192 { 193 vrd p.SetEnabled (mCbVRDP->isChecked());194 vrd p.SetPorts (mLeVRDPPort->text());195 vrd p.SetAuthType (vboxGlobal().toVRDPAuthType (mCbVRDPMethod->currentText()));196 vrd p.SetAuthTimeout (mLeVRDPTimeout->text().toULong());197 vrd p.SetAllowMultiConnection(mCbMultipleConn->isChecked());189 /* VRDE Settings */ 190 CVRDEServer vrdeServer = mMachine.GetVRDEServer(); 191 if (!vrdeServer.isNull()) 192 { 193 vrdeServer.SetEnabled (mCbVRDE->isChecked()); 194 vrdeServer.SetVRDEProperty("TCP/Ports", mLeVRDEPort->text()); 195 vrdeServer.SetAuthType (vboxGlobal().toAuthType (mCbVRDEMethod->currentText())); 196 vrdeServer.SetAuthTimeout (mLeVRDETimeout->text().toULong()); 197 vrdeServer.SetAllowMultiConnection(mCbMultipleConn->isChecked()); 198 198 } 199 199 } … … 208 208 mValidator, SLOT (revalidate())); 209 209 #endif 210 connect (mCbVRD P, SIGNAL (toggled (bool)),211 mValidator, SLOT (revalidate())); 212 connect (mLeVRD PPort, SIGNAL (textChanged (const QString&)),213 mValidator, SLOT (revalidate())); 214 connect (mLeVRD PTimeout, SIGNAL (textChanged (const QString&)),210 connect (mCbVRDE, SIGNAL (toggled (bool)), 211 mValidator, SLOT (revalidate())); 212 connect (mLeVRDEPort, SIGNAL (textChanged (const QString&)), 213 mValidator, SLOT (revalidate())); 214 connect (mLeVRDETimeout, SIGNAL (textChanged (const QString&)), 215 215 mValidator, SLOT (revalidate())); 216 216 } … … 261 261 #ifdef VBOX_WITH_VIDEOHWACCEL 262 262 setTabOrder (mCb3D, mCb2DVideo); 263 setTabOrder (mCb2DVideo, mCbVRD P);263 setTabOrder (mCb2DVideo, mCbVRDE); 264 264 #else 265 setTabOrder (mCb3D, mCbVRD P);265 setTabOrder (mCb3D, mCbVRDE); 266 266 #endif 267 267 268 268 /* Remote display tab-order */ 269 setTabOrder (mCbVRD P, mLeVRDPPort);270 setTabOrder (mLeVRD PPort, mCbVRDPMethod);271 setTabOrder (mCbVRD PMethod, mLeVRDPTimeout);272 setTabOrder (mLeVRD PTimeout, mCbMultipleConn);269 setTabOrder (mCbVRDE, mLeVRDEPort); 270 setTabOrder (mLeVRDEPort, mCbVRDEMethod); 271 setTabOrder (mCbVRDEMethod, mLeVRDETimeout); 272 setTabOrder (mLeVRDETimeout, mCbMultipleConn); 273 273 } 274 274 … … 284 284 mLbMonitorsMax->setText (tr ("<qt>%1</qt>").arg (sys.GetMaxGuestMonitors())); 285 285 286 mCbVRD PMethod->setItemText (0,287 vboxGlobal().toString (K VRDPAuthType_Null));288 mCbVRD PMethod->setItemText (1,289 vboxGlobal().toString (K VRDPAuthType_External));290 mCbVRD PMethod->setItemText (2,291 vboxGlobal().toString (K VRDPAuthType_Guest));286 mCbVRDEMethod->setItemText (0, 287 vboxGlobal().toString (KAuthType_Null)); 288 mCbVRDEMethod->setItemText (1, 289 vboxGlobal().toString (KAuthType_External)); 290 mCbVRDEMethod->setItemText (2, 291 vboxGlobal().toString (KAuthType_Guest)); 292 292 } 293 293 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsDisplay.ui
r32242 r33386 324 324 </property> 325 325 <item> 326 <widget class="QCheckBox" name="mCbVRD P">326 <widget class="QCheckBox" name="mCbVRDE"> 327 327 <property name="whatsThis"> 328 328 <string>When checked, the VM will act as a Remote Desktop Protocol (RDP) server, allowing remote clients to connect and operate the VM (when it is running) using a standard RDP client.</string> … … 373 373 </property> 374 374 <property name="buddy"> 375 <cstring>mLeVRD PPort</cstring>375 <cstring>mLeVRDEPort</cstring> 376 376 </property> 377 377 </widget> 378 378 </item> 379 379 <item row="1" column="2"> 380 <widget class="QLineEdit" name="mLeVRD PPort">380 <widget class="QLineEdit" name="mLeVRDEPort"> 381 381 <property name="whatsThis"> 382 382 <string>The VRDP Server port number. You may specify <tt>0</tt> (zero), to select port 3389, the standard port for RDP.</string> … … 393 393 </property> 394 394 <property name="buddy"> 395 <cstring>mCbVRD PMethod</cstring>395 <cstring>mCbVRDEMethod</cstring> 396 396 </property> 397 397 </widget> 398 398 </item> 399 399 <item row="2" column="2"> 400 <widget class="QComboBox" name="mCbVRD PMethod">400 <widget class="QComboBox" name="mCbVRDEMethod"> 401 401 <property name="sizePolicy"> 402 402 <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> … … 419 419 </property> 420 420 <property name="buddy"> 421 <cstring>mLeVRD PTimeout</cstring>421 <cstring>mLeVRDETimeout</cstring> 422 422 </property> 423 423 </widget> 424 424 </item> 425 425 <item row="3" column="2"> 426 <widget class="QLineEdit" name="mLeVRD PTimeout">426 <widget class="QLineEdit" name="mLeVRDETimeout"> 427 427 <property name="whatsThis"> 428 428 <string>Specifies the timeout for guest authentication, in milliseconds.</string> … … 501 501 <connections> 502 502 <connection> 503 <sender>mCbVRD P</sender>503 <sender>mCbVRDE</sender> 504 504 <signal>toggled(bool)</signal> 505 505 <receiver>mWtVRDPServer</receiver>
Note:
See TracChangeset
for help on using the changeset viewer.