2020-04-20 18:03:18 +02:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
2021-03-20 21:14:47 +01:00
|
|
|
* Copyright 2020-2021, Jonas Kvinge <jonas@jkvinge.net>
|
2020-04-20 18:03:18 +02:00
|
|
|
*
|
|
|
|
* Strawberry is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Strawberry is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "addstreamdialog.h"
|
|
|
|
#include "ui_addstreamdialog.h"
|
|
|
|
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QDialogButtonBox>
|
|
|
|
#include <QShowEvent>
|
|
|
|
|
2021-06-12 20:53:23 +02:00
|
|
|
AddStreamDialog::AddStreamDialog(QWidget *parent) : QDialog(parent), ui_(new Ui_AddStreamDialog) {
|
2020-04-20 18:03:18 +02:00
|
|
|
|
|
|
|
ui_->setupUi(this);
|
|
|
|
|
2021-01-26 16:48:04 +01:00
|
|
|
QObject::connect(ui_->url, &QLineEdit::textChanged, this, &AddStreamDialog::TextChanged);
|
2020-04-20 18:03:18 +02:00
|
|
|
TextChanged(QString());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
AddStreamDialog::~AddStreamDialog() { delete ui_; }
|
|
|
|
|
2021-01-26 16:48:04 +01:00
|
|
|
void AddStreamDialog::showEvent(QShowEvent *e) {
|
2020-04-20 18:03:18 +02:00
|
|
|
|
2021-02-26 21:03:51 +01:00
|
|
|
if (!e->spontaneous()) {
|
|
|
|
ui_->url->setFocus();
|
|
|
|
ui_->url->selectAll();
|
|
|
|
}
|
2020-04-20 18:03:18 +02:00
|
|
|
|
2021-01-26 16:48:04 +01:00
|
|
|
QDialog::showEvent(e);
|
|
|
|
|
2020-04-20 18:03:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void AddStreamDialog::TextChanged(const QString &text) {
|
|
|
|
|
|
|
|
QUrl url(text);
|
|
|
|
ui_->button_box->button(QDialogButtonBox::Ok)->setEnabled(url.isValid() && !url.scheme().isEmpty() && !url.host().isEmpty());
|
|
|
|
|
|
|
|
}
|