blob: 7f8fd680ea981fc3f2b0a43442fedd109017643f (
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
54
55
56
57
58
59
|
// Copyright (C) 2022 The Qt Company Ltd
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <utils/aspects.h>
#include <QDialog>
#include <QProcess>
namespace Squish::Internal {
enum class Language;
class SquishServerSettings : public Utils::AspectContainer
{
public:
SquishServerSettings();
void setFromXmlOutput(const QString &output);
QMap<QString, QString> mappedAuts; // name, path
QMap<QString, QString> attachableAuts; // name, host:port
QStringList autPaths; // absolute path
QStringList licensedToolkits;
Utils::IntegerAspect autTimeout{this};
Utils::IntegerAspect responseTimeout{this};
Utils::IntegerAspect postMortemWaitTime{this};
Utils::BoolAspect animatedCursor{this};
};
class SquishSettings : public Utils::AspectContainer
{
public:
SquishSettings();
Utils::FilePath scriptsPath(Language language) const;
Utils::FilePathAspect squishPath{this};
Utils::FilePathAspect licensePath{this};
Utils::StringAspect serverHost{this};
Utils::IntegerAspect serverPort{this};
Utils::BoolAspect local{this};
Utils::BoolAspect verbose{this};
Utils::BoolAspect minimizeIDE{this};
};
SquishSettings &settings();
class SquishServerSettingsDialog : public QDialog
{
public:
explicit SquishServerSettingsDialog(QWidget *parent = nullptr);
private:
void configWriteFailed(QProcess::ProcessError error);
};
} // Squish::Internal
|