Changeset 85800 in vbox
- Timestamp:
- Aug 17, 2020 1:04:27 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139957
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/VBoxUI.pro
r85796 r85800 24 24 src/settings/UISettingsDialog.ui \ 25 25 src/settings/global/UIGlobalSettingsGeneral.ui \ 26 src/settings/global/UIGlobalSettingsUpdate.ui \27 26 src/settings/global/UIGlobalSettingsLanguage.ui \ 28 27 src/settings/global/UIGlobalSettingsDisplay.ui \ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
r82968 r85800 16 16 */ 17 17 18 /* Qt includes: */ 19 #include <QCheckBox> 20 #include <QComboBox> 21 #include <QGridLayout> 22 #include <QLabel> 23 #include <QRadioButton> 24 18 25 /* GUI includes: */ 19 26 #include "UIGlobalSettingsUpdate.h" … … 64 71 : m_pLastChosenRadio(0) 65 72 , m_pCache(0) 73 , m_pUpdateDateText(0) 74 , m_pUpdateDateLabel(0) 75 , m_pUpdatePeriodLabel(0) 76 , m_pUpdateFilterLabel(0) 77 , m_pCheckBoxUpdate(0) 78 , m_pComboBoxUpdatePeriod(0) 79 , m_pRadioUpdateFilterBetas(0) 80 , m_pRadioUpdateFilterEvery(0) 81 , m_pRadioUpdateFilterStable(0) 82 , m_pContainerUpdate(0) 66 83 { 67 84 /* Prepare: */ … … 158 175 void UIGlobalSettingsUpdate::retranslateUi() 159 176 { 160 /* Translate uic generated strings: */ 161 Ui::UIGlobalSettingsUpdate::retranslateUi(this); 177 m_pCheckBoxUpdate->setWhatsThis(tr("When checked, the application will " 178 "periodically connect to the VirtualBox website and check whether a " 179 "new VirtualBox version is available.")); 180 m_pCheckBoxUpdate->setText(tr("&Check for Updates")); 181 m_pUpdatePeriodLabel->setText(tr("&Once per:")); 182 m_pComboBoxUpdatePeriod->setWhatsThis(tr("Selects how often the new version " 183 "check should be performed. Note that if you want to completely " 184 "disable this check, just clear the above check box.")); 185 m_pUpdateDateLabel->setText(tr("Next Check:")); 186 m_pUpdateFilterLabel->setText(tr("Check for:")); 187 m_pRadioUpdateFilterStable->setWhatsThis(tr("<p>Choose this if you only wish to " 188 "be notified about stable updates to VirtualBox.</p>")); 189 m_pRadioUpdateFilterStable->setText(tr("&Stable Release Versions")); 190 m_pRadioUpdateFilterEvery->setWhatsThis(tr("<p>Choose this if you wish to be " 191 "notified about all new VirtualBox releases.</p>")); 192 m_pRadioUpdateFilterEvery->setText(tr("&All New Releases")); 193 m_pRadioUpdateFilterBetas->setWhatsThis(tr("<p>Choose this to be notified about " 194 "all new VirtualBox releases and pre-release versions of VirtualBox.</p>")); 195 m_pRadioUpdateFilterBetas->setText(tr("All New Releases and &Pre-Releases")); 162 196 163 197 /* Retranslate m_pComboBoxUpdatePeriod combobox: */ … … 197 231 void UIGlobalSettingsUpdate::prepare() 198 232 { 199 /* Apply UI decorations: */ 200 Ui::UIGlobalSettingsUpdate::setupUi(this); 233 prepareWidgets(); 201 234 202 235 /* Prepare cache: */ … … 216 249 /* Apply language settings: */ 217 250 retranslateUi(); 251 } 252 253 void UIGlobalSettingsUpdate::prepareWidgets() 254 { 255 if (objectName().isEmpty()) 256 setObjectName(QStringLiteral("UIGlobalSettingsUpdate")); 257 QGridLayout *pMainLayout = new QGridLayout(this); 258 pMainLayout->setContentsMargins(0, 0, 0, 0); 259 pMainLayout->setObjectName(QStringLiteral("gridLayout")); 260 m_pCheckBoxUpdate = new QCheckBox(); 261 m_pCheckBoxUpdate->setObjectName(QStringLiteral("m_pCheckBoxUpdate")); 262 pMainLayout->addWidget(m_pCheckBoxUpdate, 0, 0, 1, 2); 263 264 QSpacerItem *pSpacerItem = new QSpacerItem(20, 0, QSizePolicy::Fixed, QSizePolicy::Minimum); 265 pMainLayout->addItem(pSpacerItem, 1, 0, 1, 1); 266 267 m_pContainerUpdate = new QWidget(); 268 m_pContainerUpdate->setObjectName(QStringLiteral("m_pContainerUpdate")); 269 QGridLayout *pContainerLayoutUpdate = new QGridLayout(m_pContainerUpdate); 270 pContainerLayoutUpdate->setContentsMargins(0, 0, 0, 0); 271 pContainerLayoutUpdate->setObjectName(QStringLiteral("pContainerLayoutUpdate")); 272 pContainerLayoutUpdate->setContentsMargins(0, 0, 0, 0); 273 m_pUpdatePeriodLabel = new QLabel(m_pContainerUpdate); 274 m_pUpdatePeriodLabel->setObjectName(QStringLiteral("m_pUpdatePeriodLabel")); 275 m_pUpdatePeriodLabel->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); 276 pContainerLayoutUpdate->addWidget(m_pUpdatePeriodLabel, 0, 0, 1, 1); 277 278 QHBoxLayout *pHBoxLayout = new QHBoxLayout(); 279 pHBoxLayout->setObjectName(QStringLiteral("pHBoxLayout")); 280 m_pComboBoxUpdatePeriod = new QComboBox(m_pContainerUpdate); 281 m_pComboBoxUpdatePeriod->setObjectName(QStringLiteral("m_pComboBoxUpdatePeriod")); 282 QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Fixed); 283 sizePolicy.setHorizontalStretch(0); 284 sizePolicy.setVerticalStretch(0); 285 sizePolicy.setHeightForWidth(m_pComboBoxUpdatePeriod->sizePolicy().hasHeightForWidth()); 286 m_pComboBoxUpdatePeriod->setSizePolicy(sizePolicy); 287 pHBoxLayout->addWidget(m_pComboBoxUpdatePeriod); 288 289 QSpacerItem *pSpacerItem1 = new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum); 290 pHBoxLayout->addItem(pSpacerItem1); 291 292 pContainerLayoutUpdate->addLayout(pHBoxLayout, 0, 1, 1, 1); 293 294 m_pUpdateDateLabel = new QLabel(m_pContainerUpdate); 295 m_pUpdateDateLabel->setObjectName(QStringLiteral("m_pUpdateDateLabel")); 296 m_pUpdateDateLabel->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); 297 pContainerLayoutUpdate->addWidget(m_pUpdateDateLabel, 1, 0, 1, 1); 298 299 m_pUpdateDateText = new QLabel(m_pContainerUpdate); 300 m_pUpdateDateText->setObjectName(QStringLiteral("m_pUpdateDateText")); 301 pContainerLayoutUpdate->addWidget(m_pUpdateDateText, 1, 1, 1, 1); 302 303 m_pUpdateFilterLabel = new QLabel(m_pContainerUpdate); 304 m_pUpdateFilterLabel->setObjectName(QStringLiteral("m_pUpdateFilterLabel")); 305 m_pUpdateFilterLabel->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); 306 pContainerLayoutUpdate->addWidget(m_pUpdateFilterLabel, 2, 0, 1, 1); 307 308 m_pRadioUpdateFilterStable = new QRadioButton(m_pContainerUpdate); 309 m_pRadioUpdateFilterStable->setObjectName(QStringLiteral("m_pRadioUpdateFilterStable")); 310 pContainerLayoutUpdate->addWidget(m_pRadioUpdateFilterStable, 2, 1, 1, 1); 311 312 m_pRadioUpdateFilterEvery = new QRadioButton(m_pContainerUpdate); 313 m_pRadioUpdateFilterEvery->setObjectName(QStringLiteral("m_pRadioUpdateFilterEvery")); 314 pContainerLayoutUpdate->addWidget(m_pRadioUpdateFilterEvery, 3, 1, 1, 1); 315 316 m_pRadioUpdateFilterBetas = new QRadioButton(m_pContainerUpdate); 317 m_pRadioUpdateFilterBetas->setObjectName(QStringLiteral("m_pRadioUpdateFilterBetas")); 318 pContainerLayoutUpdate->addWidget(m_pRadioUpdateFilterBetas, 4, 1, 1, 1); 319 320 pMainLayout->addWidget(m_pContainerUpdate, 1, 1, 1, 1); 321 322 QSpacerItem *pSpacerItem2 = new QSpacerItem(0, 0, QSizePolicy::Minimum, QSizePolicy::Expanding); 323 pMainLayout->addItem(pSpacerItem2, 2, 0, 1, 2); 324 325 m_pUpdatePeriodLabel->setBuddy(m_pComboBoxUpdatePeriod); 218 326 } 219 327 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.h
r82968 r85800 24 24 /* GUI includes: */ 25 25 #include "UISettingsPage.h" 26 #include "UIGlobalSettingsUpdate.gen.h"27 26 #include "UIUpdateDefs.h" 28 27 29 28 /* Forward declarations: */ 29 class QCheckBox; 30 class QComboBox; 31 class QLabel; 32 class QRadioButton; 30 33 struct UIDataSettingsGlobalUpdate; 31 34 typedef UISettingsCache<UIDataSettingsGlobalUpdate> UISettingsCacheGlobalUpdate; 32 35 33 36 /** Global settings: Update page. */ 34 class SHARED_LIBRARY_STUFF UIGlobalSettingsUpdate : public UISettingsPageGlobal, 35 public Ui::UIGlobalSettingsUpdate 37 class SHARED_LIBRARY_STUFF UIGlobalSettingsUpdate : public UISettingsPageGlobal 36 38 { 37 39 Q_OBJECT; … … 77 79 /** Prepares all. */ 78 80 void prepare(); 81 /** Prepares widgets. */ 82 void prepareWidgets(); 79 83 /** Cleanups all. */ 80 84 void cleanup(); … … 93 97 /** Holds the page data cache instance. */ 94 98 UISettingsCacheGlobalUpdate *m_pCache; 99 100 /** @name Widgets 101 * @{ */ 102 QLabel *m_pUpdateDateText; 103 QLabel *m_pUpdateDateLabel; 104 QLabel *m_pUpdatePeriodLabel; 105 QLabel *m_pUpdateFilterLabel; 106 QCheckBox *m_pCheckBoxUpdate; 107 QComboBox *m_pComboBoxUpdatePeriod; 108 QRadioButton *m_pRadioUpdateFilterBetas; 109 QRadioButton *m_pRadioUpdateFilterEvery; 110 QRadioButton *m_pRadioUpdateFilterStable; 111 QWidget *m_pContainerUpdate; 112 /** @} */ 95 113 }; 96 114
Note:
See TracChangeset
for help on using the changeset viewer.