Welcome to mirror list, hosted at ThFree Co, Russian Federation.

updateurldialog.cpp « gui « src - github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0891f94cbd46bf25cee161a23178b0937576884f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
* Copyright (C) by Fabian Müller <fmueller@owncloud.com>
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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.
*/

#include "updateurldialog.h"

#include <QMessageBox>
#include <QPushButton>
#include <QTimer>

namespace OCC {

UpdateUrlDialog::UpdateUrlDialog(const QString &title, const QString &content, const QUrl &oldUrl, const QUrl &newUrl, QWidget *parent)
    : QMessageBox(QMessageBox::Warning, title, content, QMessageBox::NoButton, parent)
    , _oldUrl(oldUrl)
    , _newUrl(newUrl)
{
    // this special dialog deletes itself after use
    setAttribute(Qt::WA_DeleteOnClose);

    if (Utility::urlEqual(_oldUrl, _newUrl)) {
        // need to show the dialog before accepting the change
        // hence using a timer to run the code on the main loop
        QTimer::singleShot(0, [this]() {
            accept();
        });
        return;
    }

    addButton(tr("Change url permanently to %1").arg(_newUrl.toString()), QMessageBox::AcceptRole);
    addButton(tr("Reject"), QMessageBox::RejectRole);
}

UpdateUrlDialog *UpdateUrlDialog::fromAccount(AccountPtr account, const QUrl &newUrl, QWidget *parent)
{
    return new UpdateUrlDialog(
        tr("Url update requested for %1").arg(account->displayName()),
        tr("The url for %1 changed from %2 to %3, do you want to accept the changed url?").arg(account->displayName(), account->url().toString(), newUrl.toString()),
        account->url(),
        newUrl,
        parent);
}
}