Squish: Make server settings class accessible

These settings should be usable for more than just the
settings page.

Change-Id: I5150601405163327290808127d761438e57794a3
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Christian Stenger
2022-09-20 10:00:32 +02:00
parent 9dcf2bd2c4
commit 63de537505
2 changed files with 16 additions and 16 deletions

View File

@@ -17,6 +17,22 @@ QT_END_NAMESPACE
namespace Squish {
namespace Internal {
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
Utils::IntegerAspect autTimeout;
Utils::IntegerAspect responseTimeout;
Utils::IntegerAspect postMortemWaitTime;
Utils::BoolAspect animatedCursor;
};
class SquishSettings : public Utils::AspectContainer
{
public: