VirtualBox

Changeset 85800 in vbox


Ignore:
Timestamp:
Aug 17, 2020 1:04:27 PM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
139957
Message:

FE/Qt: bugref:9812. Removing UIGlobalSettingsUpdate.ui

Location:
trunk/src/VBox/Frontends/VirtualBox
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/VBoxUI.pro

    r85796 r85800  
    2424    src/settings/UISettingsDialog.ui \
    2525    src/settings/global/UIGlobalSettingsGeneral.ui \
    26     src/settings/global/UIGlobalSettingsUpdate.ui \
    2726    src/settings/global/UIGlobalSettingsLanguage.ui \
    2827    src/settings/global/UIGlobalSettingsDisplay.ui \
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp

    r82968 r85800  
    1616 */
    1717
     18/* Qt includes: */
     19#include <QCheckBox>
     20#include <QComboBox>
     21#include <QGridLayout>
     22#include <QLabel>
     23#include <QRadioButton>
     24
    1825/* GUI includes: */
    1926#include "UIGlobalSettingsUpdate.h"
     
    6471    : m_pLastChosenRadio(0)
    6572    , 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)
    6683{
    6784    /* Prepare: */
     
    158175void UIGlobalSettingsUpdate::retranslateUi()
    159176{
    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"));
    162196
    163197    /* Retranslate m_pComboBoxUpdatePeriod combobox: */
     
    197231void UIGlobalSettingsUpdate::prepare()
    198232{
    199     /* Apply UI decorations: */
    200     Ui::UIGlobalSettingsUpdate::setupUi(this);
     233    prepareWidgets();
    201234
    202235    /* Prepare cache: */
     
    216249    /* Apply language settings: */
    217250    retranslateUi();
     251}
     252
     253void 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);
    218326}
    219327
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.h

    r82968 r85800  
    2424/* GUI includes: */
    2525#include "UISettingsPage.h"
    26 #include "UIGlobalSettingsUpdate.gen.h"
    2726#include "UIUpdateDefs.h"
    2827
    2928/* Forward declarations: */
     29class QCheckBox;
     30class QComboBox;
     31class QLabel;
     32class QRadioButton;
    3033struct UIDataSettingsGlobalUpdate;
    3134typedef UISettingsCache<UIDataSettingsGlobalUpdate> UISettingsCacheGlobalUpdate;
    3235
    3336/** Global settings: Update page. */
    34 class SHARED_LIBRARY_STUFF UIGlobalSettingsUpdate : public UISettingsPageGlobal,
    35                                                     public Ui::UIGlobalSettingsUpdate
     37class SHARED_LIBRARY_STUFF UIGlobalSettingsUpdate : public UISettingsPageGlobal
    3638{
    3739    Q_OBJECT;
     
    7779    /** Prepares all. */
    7880    void prepare();
     81    /** Prepares widgets. */
     82    void prepareWidgets();
    7983    /** Cleanups all. */
    8084    void cleanup();
     
    9397    /** Holds the page data cache instance. */
    9498    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    /** @} */
    95113};
    96114
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette