From: Flavio Tordini Date: Mon, 12 Oct 2009 18:33:31 +0000 (+0200) Subject: Commented out useless code X-Git-Tag: 0.7~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=578fa38cd7eda7bfc243edb70e340518c5b968c9;p=minitube Commented out useless code --- diff --git a/src/SettingsView.cpp b/src/SettingsView.cpp index 4dc3c3c..2543ef0 100644 --- a/src/SettingsView.cpp +++ b/src/SettingsView.cpp @@ -2,8 +2,57 @@ SettingsView::SettingsView( QWidget *parent ) : QWidget(parent) { + /* QSettings settings; + QBoxLayout *layout = new QVBoxLayout(this); + layout->setAlignment(Qt::AlignCenter); + // layout->setSpacing(30); + + QFormLayout *formLayout = new QFormLayout; + formLayout->setFormAlignment(Qt::AlignHCenter | Qt::AlignTop); + formLayout->setFieldGrowthPolicy(QFormLayout::FieldsStayAtSizeHint); + + QGroupBox *videoGroup = new QGroupBox(tr("&Video options"), this); + + contrastSlider = new QSlider(Qt::Horizontal, this); + contrastSlider->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); + formLayout->addRow("&Contrast", contrastSlider); + + brightnessSlider = new QSlider(Qt::Horizontal, this); + brightnessSlider->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); + formLayout->addRow("&Brightness", brightnessSlider); + + saturationSlider = new QSlider(Qt::Horizontal, this); + saturationSlider->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); + formLayout->addRow("&Saturation", saturationSlider); + + hueSlider = new QSlider(Qt::Horizontal, this); + hueSlider->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); + formLayout->addRow("&Hue", hueSlider); + + hdVideoCheckBox = new QCheckBox(tr("Use high quality video when available"), this); + formLayout->addRow("", hdVideoCheckBox); + + maxRecentKeywordsSpinBox = new QSpinBox(this); + maxRecentKeywordsSpinBox->setMinimum(1); + maxRecentKeywordsSpinBox->setMaximum(30); + // maxRecentKeywordsSpinBox->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); + formLayout->addRow(tr("&Saved recent keywords"), maxRecentKeywordsSpinBox); + layout->addLayout(formLayout); + + clearRecentKeywordsButton = new QPushButton(tr("&Clear recent keywords"), this); + // clearRecentKeywordsButton->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); + formLayout->addRow("", clearRecentKeywordsButton); + + QPushButton *closeButton = new QPushButton(tr("&Close"), this); + // closeButton->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum); + closeButton->setDefault(true); + closeButton->setFocus(Qt::OtherFocusReason); + connect(closeButton, SIGNAL(clicked()), parent, SLOT(goBack())); + formLayout->addRow("", closeButton); + */ + } void SettingsView::storeSettings() { diff --git a/src/SettingsView.h b/src/SettingsView.h index 1e1a661..d728d5d 100644 --- a/src/SettingsView.h +++ b/src/SettingsView.h @@ -23,8 +23,15 @@ private slots: void storeSettings(); private: - QLineEdit *urlEdit; - QLabel *urlLabel; + + QSlider *contrastSlider; + QSlider *brightnessSlider; + QSlider *saturationSlider; + QSlider *hueSlider; + + QCheckBox *hdVideoCheckBox; + QSpinBox *maxRecentKeywordsSpinBox; + QPushButton *clearRecentKeywordsButton; }; #endif