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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
/*
SPDX-FileCopyrightText: 2016-2025 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "viewerpluginexternalscriptinfo.h"
ViewerPluginExternalScriptInfo::ViewerPluginExternalScriptInfo() = default;
QString ViewerPluginExternalScriptInfo::name() const
{
return mName;
}
void ViewerPluginExternalScriptInfo::setName(const QString &name)
{
mName = name;
}
QString ViewerPluginExternalScriptInfo::commandLine() const
{
return mCommandLine;
}
void ViewerPluginExternalScriptInfo::setCommandLine(const QString &commandLine)
{
mCommandLine = commandLine;
}
QString ViewerPluginExternalScriptInfo::executable() const
{
return mExecutable;
}
void ViewerPluginExternalScriptInfo::setExecutable(const QString &executable)
{
mExecutable = executable;
}
QString ViewerPluginExternalScriptInfo::description() const
{
return mDescription;
}
void ViewerPluginExternalScriptInfo::setDescription(const QString &description)
{
mDescription = description;
}
QString ViewerPluginExternalScriptInfo::icon() const
{
return mIcon;
}
void ViewerPluginExternalScriptInfo::setIcon(const QString &icon)
{
mIcon = icon;
}
bool ViewerPluginExternalScriptInfo::isValid() const
{
return !mName.trimmed().isEmpty() && !mExecutable.trimmed().isEmpty();
}
bool ViewerPluginExternalScriptInfo::isReadOnly() const
{
return mIsReadOnly;
}
void ViewerPluginExternalScriptInfo::setIsReadOnly(bool isReadOnly)
{
mIsReadOnly = isReadOnly;
}
QString ViewerPluginExternalScriptInfo::fileName() const
{
return mFileName;
}
void ViewerPluginExternalScriptInfo::setFileName(const QString &fileName)
{
mFileName = fileName;
}
bool ViewerPluginExternalScriptInfo::operator==(const ViewerPluginExternalScriptInfo &other) const
{
return (name() == other.name()) && (commandLine() == other.commandLine()) && (executable() == other.executable()) && (description() == other.description())
&& (icon() == other.icon()) && (isReadOnly() == other.isReadOnly()) && (fileName() == other.fileName());
}
|