aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/squish/squishsettings.h
blob: 575b9ab8ea55944559761d9f0801d5f0ab128c97 (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
// Copyright (C) 2022 The Qt Company Ltd
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <coreplugin/dialogs/ioptionspage.h>

#include <utils/aspects.h>

#include <QDialog>
#include <QProcess>

QT_BEGIN_NAMESPACE
class QSettings;
QT_END_NAMESPACE

namespace Squish {
namespace Internal {

class SquishSettings : public Utils::AspectContainer
{
public:
    SquishSettings();

    Utils::StringAspect squishPath;
    Utils::StringAspect licensePath;
    Utils::StringAspect serverHost;
    Utils::IntegerAspect serverPort;
    Utils::BoolAspect local;
    Utils::BoolAspect verbose;
};

class SquishSettingsPage final : public Core::IOptionsPage
{
public:
    SquishSettingsPage(SquishSettings *settings);
};

class SquishServerSettingsDialog : public QDialog
{
public:
    explicit SquishServerSettingsDialog(QWidget *parent = nullptr);

private:
    void configWriteFailed(QProcess::ProcessError error);
};

} // namespace Internal
} // namespace Squish