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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
/*
* Feature.h - declaration of the Feature class
*
* Copyright (c) 2017-2021 Tobias Junghans <tobydox@veyon.io>
*
* This file is part of Veyon - https://veyon.io
*
* 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.
*
* You should have received a copy of the GNU General Public
* License along with this program (see COPYING); if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
*/
#pragma once
#include <QIcon>
#include <QKeySequence>
#include <QString>
#include <QUuid>
#include "VeyonCore.h"
class VEYON_CORE_EXPORT Feature
{
Q_GADGET
public:
using Uid = QUuid;
enum FeatureFlag
{
NoFlags,
Mode = 0x0001,
Action = 0x0002,
Session = 0x0004,
Internal = 0x0008,
Option = 0x0010,
Checked = 0x0020,
Master = 0x0100,
Service = 0x0200,
Worker = 0x0400,
Builtin = 0x1000,
AllComponents = Master | Service | Worker
} ;
Q_DECLARE_FLAGS(Flags, FeatureFlag)
Q_FLAG(Flags)
explicit Feature( const QString& name,
Flags flags,
Uid uid,
Uid parentUid,
const QString& displayName,
const QString& displayNameActive,
const QString& description,
const QString& iconUrl = {},
const QKeySequence& shortcut = {} ) :
m_name( name ),
m_flags( flags ),
m_uid( uid ),
m_parentUid( parentUid ),
m_displayName( displayName ),
m_displayNameActive( displayNameActive ),
m_description( description ),
m_iconUrl( iconUrl ),
m_shortcut( shortcut )
{
}
explicit Feature( Uid uid = Uid() ) :
m_name(),
m_flags( NoFlags ),
m_uid( uid ),
m_parentUid( QUuid() ),
m_displayName(),
m_displayNameActive(),
m_description(),
m_iconUrl(),
m_shortcut()
{
}
Feature( const Feature& other ) :
m_name( other.name() ),
m_flags( other.flags() ),
m_uid( other.uid() ),
m_parentUid( other.parentUid() ),
m_displayName( other.displayName() ),
m_displayNameActive( other.displayNameActive() ),
m_description( other.description() ),
m_iconUrl( other.iconUrl() ),
m_shortcut( other.shortcut() )
{
}
~Feature() = default;
Feature& operator=( const Feature& other )
{
m_name = other.name();
m_flags = other.flags();
m_uid = other.uid();
m_parentUid = other.parentUid();
m_displayName = other.displayName();
m_displayNameActive = other.displayNameActive();
m_description = other.description();
m_iconUrl = other.iconUrl();
m_shortcut = other.shortcut();
return *this;
}
bool operator==( const Feature& other ) const
{
return other.uid() == uid();
}
bool operator!=( const Feature& other ) const
{
return other.uid() != uid();
}
bool isValid() const
{
return m_flags != NoFlags;
}
bool testFlag( FeatureFlag flag ) const
{
return m_flags.testFlag( flag );
}
const QString& name() const
{
return m_name;
}
const Uid& uid() const
{
return m_uid;
}
const Uid& parentUid() const
{
return m_parentUid;
}
void setParentUid( Uid uid )
{
m_parentUid = uid;
}
const QString& displayName() const
{
return m_displayName;
}
void setDisplayName( const QString& displayName )
{
m_displayName = displayName;
}
const QString& displayNameActive() const
{
return m_displayNameActive;
}
const QString& description() const
{
return m_description;
}
const QString& iconUrl() const
{
return m_iconUrl;
}
void setIconUrl( const QString& iconUrl )
{
m_iconUrl = iconUrl;
}
const QKeySequence& shortcut() const
{
return m_shortcut;
}
private:
Flags flags() const
{
return m_flags;
}
QString m_name;
Flags m_flags;
Uid m_uid;
Uid m_parentUid;
QString m_displayName;
QString m_displayNameActive;
QString m_description;
QString m_iconUrl;
QKeySequence m_shortcut;
};
Q_DECLARE_OPERATORS_FOR_FLAGS(Feature::Flags)
using FeatureList = QList<Feature>;
using FeatureUidList = QList<Feature::Uid>;
|