[b431d47] | 1 | /* |
---|
| 2 | * Copyright (C) 2010 Ixonos Plc. |
---|
[ffb6be7] | 3 | * Copyright (C) 2011-2021 Philipp Spitzer, gregor herrmann, Stefan Stahl |
---|
[b431d47] | 4 | * |
---|
[6df32f2] | 5 | * This file is part of ConfClerk. |
---|
[b431d47] | 6 | * |
---|
[6df32f2] | 7 | * ConfClerk is free software: you can redistribute it and/or modify it |
---|
[b431d47] | 8 | * under the terms of the GNU General Public License as published by the Free |
---|
| 9 | * Software Foundation, either version 2 of the License, or (at your option) |
---|
| 10 | * any later version. |
---|
| 11 | * |
---|
[6df32f2] | 12 | * ConfClerk is distributed in the hope that it will be useful, but |
---|
[b431d47] | 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
---|
| 14 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
---|
| 15 | * more details. |
---|
| 16 | * |
---|
| 17 | * You should have received a copy of the GNU General Public License along with |
---|
[6df32f2] | 18 | * ConfClerk. If not, see <http://www.gnu.org/licenses/>. |
---|
[b431d47] | 19 | */ |
---|
| 20 | #include "urlinputdialog.h" |
---|
| 21 | |
---|
| 22 | #include <QFileDialog> |
---|
| 23 | #include <QPushButton> |
---|
| 24 | |
---|
| 25 | UrlInputDialog::UrlInputDialog(QWidget* parent) |
---|
| 26 | : QDialog(parent) |
---|
| 27 | { |
---|
| 28 | setupUi(this); |
---|
| 29 | |
---|
[9dbc426] | 30 | QPushButton* openFile = buttons->addButton(tr("Open file ..."), QDialogButtonBox::ActionRole); |
---|
[841aad4] | 31 | textChanged(urlEntry->text()); |
---|
[b431d47] | 32 | |
---|
| 33 | connect(openFile, SIGNAL(clicked()), SLOT(openFileClicked())); |
---|
| 34 | connect(buttons, SIGNAL(accepted()), SLOT(acceptClicked())); |
---|
| 35 | connect(buttons, SIGNAL(rejected()), SLOT(rejectClicked())); |
---|
[841aad4] | 36 | connect(urlEntry, SIGNAL(textChanged(QString)), SLOT(textChanged(QString))); |
---|
[b431d47] | 37 | } |
---|
| 38 | |
---|
| 39 | void UrlInputDialog::openFileClicked() |
---|
| 40 | { |
---|
| 41 | QString file = QFileDialog::getOpenFileName(this, "Select Conference Schedule", QString(), "Schedule Files (*.xml);;All Files(*)"); |
---|
| 42 | |
---|
| 43 | if (file.isNull()) { |
---|
| 44 | return; |
---|
| 45 | } else { |
---|
| 46 | saved_result = file; |
---|
| 47 | done(HaveFile); |
---|
| 48 | } |
---|
| 49 | } |
---|
| 50 | |
---|
[841aad4] | 51 | void UrlInputDialog::textChanged(const QString& text) |
---|
| 52 | { |
---|
[4d0db91] | 53 | buttons->button(QDialogButtonBox::Open)->setEnabled(!text.isEmpty()); |
---|
[841aad4] | 54 | } |
---|
| 55 | |
---|
[b431d47] | 56 | void UrlInputDialog::acceptClicked() |
---|
| 57 | { |
---|
[a4d3f7b] | 58 | saved_result = urlEntry->text().trimmed(); |
---|
[b431d47] | 59 | setResult(HaveUrl); |
---|
| 60 | } |
---|
| 61 | |
---|
| 62 | void UrlInputDialog::rejectClicked() |
---|
| 63 | { |
---|
| 64 | setResult(Cancel); |
---|
| 65 | } |
---|