KCalendarCore::Conference Class
class KCalendarCore::ConferenceRepresents information related to a conference information of an Calendar Incidence, typically a meeting or task (to-do). More...
Header: | #include <KCalendarCore/Conference> |
CMake: | find_package(KF6 REQUIRED COMPONENTS CalendarCore) target_link_libraries(mytarget PRIVATE KF6::CalendarCore) |
Since: | 5.77 |
In QML: | conference |
Properties
Public Functions
Conference() | |
Conference(const QUrl &uri, const QString &label, const QStringList &features = {}, const QString &language = {}) | |
Conference(const KCalendarCore::Conference &conference) | |
~Conference() | |
void | addFeature(const QString &feature) |
KCalendarCore::CustomProperties & | customProperties() |
const KCalendarCore::CustomProperties & | customProperties() const |
QStringList | features() const |
bool | isNull() const |
QString | label() const |
QString | language() const |
void | removeFeature(const QString &feature) |
void | setCustomProperty(const QByteArray &xname, const QString &xvalue) |
void | setFeatures(const QStringList &features) |
void | setLabel(const QString &label) |
void | setLanguage(const QString &language) |
void | setUri(const QUrl &uri) |
QUrl | uri() const |
bool | operator!=(const KCalendarCore::Conference &other) const |
KCalendarCore::Conference & | operator=(const KCalendarCore::Conference &conference) |
bool | operator==(const KCalendarCore::Conference &conference) const |
Detailed Description
Conference contains information needed to join a remote conference system (e.g. phone call, audio/video meeting etc.)
Property Documentation
features : QStringList
Access functions:
QStringList | features() const |
void | setFeatures(const QStringList &features) |
[read-only]
isNull : const bool
Access functions:
bool | isNull() const |
label : QString
Access functions:
language : QString
Access functions:
QString | language() const |
void | setLanguage(const QString &language) |
uri : QUrl
Access functions:
Member Function Documentation
[explicit]
Conference::Conference()
Create a null Conference.
Conference::Conference(const QUrl &uri, const QString &label, const QStringList &features = {}, const QString &language = {})
Constructs a conference consisting of a uri, description of the URI (label), list of features of the conference (features) and language.
uri is the URI to join the conference.
label is the label of the URI.
features is the features of this particular conference method.
language is the language of the information present in other fields.
Conference::Conference(const KCalendarCore::Conference &conference)
Constructs a conference by copying another conference.
conference is the conference to be copied.
[noexcept]
Conference::~Conference()
Destroys the conference.
void Conference::addFeature(const QString &feature)
Adds feature to the list of features.
feature Feature to add.
KCalendarCore::CustomProperties &Conference::customProperties()
Returns a reference to the CustomProperties object
const KCalendarCore::CustomProperties &Conference::customProperties() const
Returns a const reference to the CustomProperties object
QStringList Conference::features() const
Returns the list of features of the conferencing system at given URI.
This can be e.g. CHAT, AUDIO, VIDEO, PHONE, etc.
Note: Getter function for property features.
See also setFeatures().
bool Conference::isNull() const
Returns true
if this is a default-constructed Conference instance.
Note: Getter function for property isNull.
QString Conference::label() const
Returns label with additional details regarding further use of the URI.
Note: Getter function for property label.
See also setLabel().
QString Conference::language() const
Returns the language of the text present in other properties of this object.
Note: Getter function for property language.
See also setLanguage().
void Conference::removeFeature(const QString &feature)
Removes feature from the list of features.
feature Feature to remove.
void Conference::setCustomProperty(const QByteArray &xname, const QString &xvalue)
Adds a custom property. If the property already exists it will be overwritten.
xname is the name of the property.
xvalue is its value.
void Conference::setFeatures(const QStringList &features)
Sets the list of features to features.
Note: Setter function for property features.
See also features().
void Conference::setLabel(const QString &label)
Sets the URI label to label.
Note: Setter function for property label.
See also label().
void Conference::setLanguage(const QString &language)
Sets the language to language.
Note: Setter function for property language.
See also language().
void Conference::setUri(const QUrl &uri)
Sets the URI to uri.
Note: Setter function for property uri.
See also uri().
QUrl Conference::uri() const
Returns the URI to join the conference, with access code included.
Note: Getter function for property uri.
See also setUri().
bool Conference::operator!=(const KCalendarCore::Conference &other) const
Compares this with another conference for inequality.
other is the conference to compare.
Returns true if other is not equal to this object, or false if they are equal.
KCalendarCore::Conference &Conference::operator=(const KCalendarCore::Conference &conference)
Sets this conference equal to conference.
conference is the conference to copy.
bool Conference::operator==(const KCalendarCore::Conference &conference) const
Compares this with conference for equality.
conference the conference to compare.
Returns true if conference is equal to this object, or false if they are different.