Changeset 47189 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jul 16, 2013 1:33:00 PM (12 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/global
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsDisplay.cpp
r43459 r47189 7 7 8 8 /* 9 * Copyright (C) 2012 Oracle Corporation9 * Copyright (C) 2012-2013 Oracle Corporation 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 124 124 } 125 125 126 /* Navigation stuff: */ 127 void UIGlobalSettingsDisplay::setOrderAfter(QWidget* /* pWidget */) 126 void UIGlobalSettingsDisplay::setOrderAfter(QWidget*) 128 127 { 129 128 } 130 129 131 /* Translation stuff: */132 130 void UIGlobalSettingsDisplay::retranslateUi() 133 131 { -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsDisplay.h
r43459 r47189 6 6 7 7 /* 8 * Copyright (C) 2012 Oracle Corporation8 * Copyright (C) 2012-2013 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 56 56 void saveFromCacheTo(QVariant &data); 57 57 58 /* Navigation stuff: */58 /* Helper: Navigation stuff: */ 59 59 void setOrderAfter(QWidget *pWidget); 60 60 61 /* Translation stuff: */61 /* Helper: Translation stuff: */ 62 62 void retranslateUi(); 63 63 64 64 protected slots: 65 65 66 /* Max resolution combo activation handler: */66 /* Handler: Resolution-combo stuff: */ 67 67 void sltMaxResolutionComboActivated(); 68 68 69 69 private: 70 70 71 /* Populate combo-box: */71 /* Helper: Resolution-combo stuff: */ 72 72 void populate(); 73 73 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsDisplay.ui
r43106 r47189 3 3 VBox frontends: Qt4 GUI ("VirtualBox"): 4 4 5 Copyright (C) 2012 Oracle Corporation5 Copyright (C) 2012-2013 Oracle Corporation 6 6 7 7 This file is part of VirtualBox Open Source Edition (OSE), as … … 15 15 <class>UIGlobalSettingsDisplay</class> 16 16 <widget class="QWidget" name="UIGlobalSettingsDisplay"> 17 <property name="geometry">18 <rect>19 <x>0</x>20 <y>0</y>21 <width>350</width>22 <height>250</height>23 </rect>24 </property>25 17 <layout class="QGridLayout"> 26 18 <property name="margin"> … … 28 20 </property> 29 21 <item row="0" column="0"> 30 <spacer>31 <property name="orientation">32 <enum>Qt::Horizontal</enum>33 </property>34 <property name="sizeType">35 <enum>QSizePolicy::Fixed</enum>36 </property>37 <property name="sizeHint">38 <size>39 <width>40</width>40 <height>20</height>41 </size>42 </property>43 </spacer>44 </item>45 <item row="0" column="1">46 22 <widget class="QLabel" name="m_pMaxResolutionLabel"> 47 <property name="sizePolicy">48 <sizepolicy vsizetype="Minimum" hsizetype="Minimum">49 <horstretch>0</horstretch>50 <verstretch>0</verstretch>51 </sizepolicy>52 </property>53 23 <property name="text"> 54 24 <string>Maximum Guest Screen &Size:</string> … … 62 32 </widget> 63 33 </item> 64 <item row="0" column=" 2">34 <item row="0" column="1"> 65 35 <widget class="QComboBox" name="m_pMaxResolutionCombo"> 66 36 <property name="sizePolicy"> 67 <sizepolicy vsizetype=" Minimum" hsizetype="MinimumExpanding">37 <sizepolicy vsizetype="Fixed" hsizetype="MinimumExpanding"> 68 38 <horstretch>1</horstretch> 69 39 <verstretch>0</verstretch> … … 72 42 </widget> 73 43 </item> 74 <item row="1" column=" 1">44 <item row="1" column="0"> 75 45 <widget class="QLabel" name="m_pResolutionWidthLabel"> 76 <property name="sizePolicy">77 <sizepolicy vsizetype="Minimum" hsizetype="Minimum">78 <horstretch>0</horstretch>79 <verstretch>0</verstretch>80 </sizepolicy>81 </property>82 46 <property name="text"> 83 47 <string>&Width:</string> … … 91 55 </widget> 92 56 </item> 93 <item row="1" column=" 2">57 <item row="1" column="1"> 94 58 <widget class="QSpinBox" name="m_pResolutionWidthSpin"> 95 59 <property name="sizePolicy"> … … 104 68 </widget> 105 69 </item> 106 <item row="2" column=" 1">70 <item row="2" column="0"> 107 71 <widget class="QLabel" name="m_pResolutionHeightLabel"> 108 <property name="sizePolicy">109 <sizepolicy vsizetype="Minimum" hsizetype="Minimum">110 <horstretch>0</horstretch>111 <verstretch>0</verstretch>112 </sizepolicy>113 </property>114 72 <property name="text"> 115 73 <string>&Height:</string> … … 123 81 </widget> 124 82 </item> 125 <item row="2" column=" 2">83 <item row="2" column="1"> 126 84 <widget class="QSpinBox" name="m_pResolutionHeightSpin"> 127 85 <property name="sizePolicy"> … … 136 94 </widget> 137 95 </item> 138 <item row="3" column=" 1" colspan="2">96 <item row="3" column="0" colspan="2"> 139 97 <spacer> 140 98 <property name="orientation"> -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsGeneral.h
r47130 r47189 61 61 void saveFromCacheTo(QVariant &data); 62 62 63 /* Navigation stuff: */63 /* Helper: Navigation stuff: */ 64 64 void setOrderAfter(QWidget *pWidget); 65 65 66 /* Translation stuff: */66 /* Helper: Translation stuff: */ 67 67 void retranslateUi(); 68 68 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.h
r44754 r47189 139 139 void saveFromCacheTo(QVariant &data); 140 140 141 /* Validation stuff: */141 /* Helpers: Validation stuff: */ 142 142 void setValidator(QIWidgetValidator *pValidator); 143 143 bool revalidate(QString &strWarning, QString &strTitle); 144 144 145 /* Navigation stuff: */145 /* Helper: Navigation stuff: */ 146 146 void setOrderAfter(QWidget *pWidget); 147 147 148 /* Translation stuff: */148 /* Helper: Translation stuff: */ 149 149 void retranslateUi(); 150 150
Note:
See TracChangeset
for help on using the changeset viewer.