Changeset 9234 in vbox for trunk/src/VBox/Frontends/VirtualBox4
- Timestamp:
- May 29, 2008 6:43:04 PM (17 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/Makefile.kmk
r9227 r9234 314 314 VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMSettingsUSB.ui,$(VirtualBox_QT_UISRCS3)) 315 315 VirtualBox_QT_UISRCS4 += ui/VBoxVMSettingsUSB.ui 316 317 VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMSettingsVRDP.ui,$(VirtualBox_QT_UISRCS3)) 318 VirtualBox_QT_UISRCS4 += ui/VBoxVMSettingsVRDP.ui 316 319 317 320 VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMSettingsDlg.ui,$(VirtualBox_QT_UISRCS3)) … … 473 476 include/VBoxVMSettingsParallel.h \ 474 477 include/VBoxVMSettingsUSB.h \ 478 include/VBoxVMSettingsVRDP.h \ 475 479 include/VBoxVMSettingsDlg.h 476 480 … … 558 562 src/VBoxVMSettingsParallel.cpp \ 559 563 src/VBoxVMSettingsUSB.cpp \ 564 src/VBoxVMSettingsVRDP.cpp \ 560 565 src/VBoxVMSettingsDlg.cpp 561 566 -
trunk/src/VBox/Frontends/VirtualBox4/ui/VBoxVMSettingsDlg.ui
r9227 r9234 574 574 <widget class="QWidget" name="mPageUSB" /> 575 575 <widget class="QWidget" name="mPageShared" /> 576 <widget class="QWidget" name="mPageVrdp" > 577 <layout class="QVBoxLayout" > 578 <property name="leftMargin" > 579 <number>0</number> 580 </property> 581 <property name="topMargin" > 582 <number>5</number> 583 </property> 584 <property name="rightMargin" > 585 <number>0</number> 586 </property> 587 <property name="bottomMargin" > 588 <number>0</number> 589 </property> 590 <item> 591 <widget class="QGroupBox" name="mGbVRDP" > 592 <property name="whatsThis" > 593 <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> 594 </property> 595 <property name="title" > 596 <string>&Enable VRDP Server</string> 597 </property> 598 <property name="checkable" > 599 <bool>true</bool> 600 </property> 601 <property name="checked" > 602 <bool>false</bool> 603 </property> 604 <layout class="QGridLayout" > 605 <property name="topMargin" > 606 <number>5</number> 607 </property> 608 <item row="0" column="0" > 609 <widget class="QLabel" name="mLbVRDPPort" > 610 <property name="text" > 611 <string>Server &Port</string> 612 </property> 613 <property name="buddy" > 614 <cstring>mLeVRDPPort</cstring> 615 </property> 616 </widget> 617 </item> 618 <item row="0" column="1" > 619 <widget class="QLineEdit" name="mLeVRDPPort" > 620 <property name="whatsThis" > 621 <string>Displays the VRDP Server port number. You may specify <tt>0</tt> (zero) to reset the port to the default value.</string> 622 </property> 623 </widget> 624 </item> 625 <item row="0" column="2" > 626 <spacer> 627 <property name="orientation" > 628 <enum>Qt::Horizontal</enum> 629 </property> 630 <property name="sizeHint" > 631 <size> 632 <width>40</width> 633 <height>20</height> 634 </size> 635 </property> 636 </spacer> 637 </item> 638 <item row="1" column="0" > 639 <widget class="QLabel" name="mLbVRDPMethod" > 640 <property name="text" > 641 <string>Authentication &Method</string> 642 </property> 643 <property name="buddy" > 644 <cstring>mLeVRDPPort</cstring> 645 </property> 646 </widget> 647 </item> 648 <item row="1" column="1" > 649 <widget class="QComboBox" name="mCbVRDPMethod" > 650 <property name="whatsThis" > 651 <string>Defines the VRDP authentication method.</string> 652 </property> 653 </widget> 654 </item> 655 <item row="1" column="2" > 656 <spacer> 657 <property name="orientation" > 658 <enum>Qt::Horizontal</enum> 659 </property> 660 <property name="sizeHint" > 661 <size> 662 <width>40</width> 663 <height>20</height> 664 </size> 665 </property> 666 </spacer> 667 </item> 668 <item row="2" column="0" > 669 <widget class="QLabel" name="mLbVRDPTimeout" > 670 <property name="text" > 671 <string>Authentication &Timeout</string> 672 </property> 673 <property name="buddy" > 674 <cstring>mLeVRDPTimeout</cstring> 675 </property> 676 </widget> 677 </item> 678 <item row="2" column="1" > 679 <widget class="QLineEdit" name="mLeVRDPTimeout" > 680 <property name="whatsThis" > 681 <string>Specifies the timeout for guest authentication, in milliseconds.</string> 682 </property> 683 </widget> 684 </item> 685 <item row="2" column="2" > 686 <spacer> 687 <property name="orientation" > 688 <enum>Qt::Horizontal</enum> 689 </property> 690 <property name="sizeHint" > 691 <size> 692 <width>40</width> 693 <height>20</height> 694 </size> 695 </property> 696 </spacer> 697 </item> 698 </layout> 699 </widget> 700 </item> 701 <item> 702 <spacer> 703 <property name="orientation" > 704 <enum>Qt::Vertical</enum> 705 </property> 706 <property name="sizeHint" > 707 <size> 708 <width>20</width> 709 <height>40</height> 710 </size> 711 </property> 712 </spacer> 713 </item> 714 </layout> 715 </widget> 576 <widget class="QWidget" name="mPageVrdp" /> 716 577 </widget> 717 578 </item>
Note:
See TracChangeset
for help on using the changeset viewer.