accounts-qt
1.14
|
Representation of an account service. More...
#include <Accounts/Service>
Public Member Functions | |
Service () | |
Construct an invalid service. | |
Service (const Service &other) | |
Copy constructor. More... | |
Service & | operator= (const Service &other) |
bool | isValid () const |
Check whether this object represents a Service. More... | |
QString | name () const |
Get the name of the service. More... | |
QString | displayName () const |
Get the display name of the service, untranslated. More... | |
QString | trCatalog () const |
QString | serviceType () const |
Get the service type ID of the service. More... | |
QString | provider () const |
Get the provider ID of the service. More... | |
QString | iconName () const |
Get the icon name for this service. More... | |
bool | hasTag (const QString &tag) const |
Check if this service has a tag. More... | |
QSet< QString > | tags () const |
Return all tags of the service as a set. More... | |
const QDomDocument | domDocument () const |
Get the contents of the service XML file. More... | |
Friends | |
bool | operator== (const Accounts::Service &s1, const Accounts::Service &s2) |
Representation of an account service.
The Service object represents an account service. It can be used to retrieve some basic properties of the service (such as name, type and provider) and to get access to the contents of the XML file which defines it.
Copy constructor.
Copying a Service object is very cheap, because the data is shared among copies.
Definition at line 73 of file service.cpp.
QString displayName | ( | ) | const |
Get the display name of the service, untranslated.
Definition at line 128 of file service.cpp.
const QDomDocument domDocument | ( | ) | const |
Get the contents of the service XML file.
Definition at line 205 of file service.cpp.
bool hasTag | ( | const QString & | tag | ) | const |
Check if this service has a tag.
tag | Tag to look for |
Definition at line 175 of file service.cpp.
QString iconName | ( | ) | const |
Get the icon name for this service.
Definition at line 163 of file service.cpp.
bool isValid | ( | ) | const |
Check whether this object represents a Service.
Definition at line 108 of file service.cpp.
Referenced by Service::name().
QString name | ( | ) | const |
Get the name of the service.
This can be used as a unique identifier for this service.
Definition at line 118 of file service.cpp.
References Service::isValid().
QString provider | ( | ) | const |
Get the provider ID of the service.
Definition at line 154 of file service.cpp.
QString serviceType | ( | ) | const |
Get the service type ID of the service.
Definition at line 137 of file service.cpp.
QSet< QString > tags | ( | ) | const |
Return all tags of the service as a set.
Definition at line 185 of file service.cpp.
QString trCatalog | ( | ) | const |
Definition at line 145 of file service.cpp.