accounts-qt
1.16
|
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 | description () const |
Get the description 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 69 of file service.cpp.
QString description | ( | ) | const |
Get the description of the service.
Definition at line 124 of file service.cpp.
QString displayName | ( | ) | const |
Get the display name of the service, untranslated.
Definition at line 133 of file service.cpp.
const QDomDocument domDocument | ( | ) | const |
Get the contents of the service XML file.
Definition at line 210 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 180 of file service.cpp.
QString iconName | ( | ) | const |
Get the icon name for this service.
Definition at line 168 of file service.cpp.
bool isValid | ( | ) | const |
Check whether this object represents a Service.
Definition at line 104 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 114 of file service.cpp.
References Service::isValid().
QString provider | ( | ) | const |
Get the provider ID of the service.
Definition at line 159 of file service.cpp.
QString serviceType | ( | ) | const |
Get the service type ID of the service.
Definition at line 142 of file service.cpp.
QSet< QString > tags | ( | ) | const |
Return all tags of the service as a set.
Definition at line 190 of file service.cpp.
QString trCatalog | ( | ) | const |
Definition at line 150 of file service.cpp.