1#ifndef _KVI_IDENTITY_PROFILE_H_
2#define _KVI_IDENTITY_PROFILE_H_
72 const QString &
name()
const {
return m_szName; };
78 const QString &
network()
const {
return m_szNetwork; };
84 const QString &
nick()
const {
return m_szNick; };
90 const QString &
altNick()
const {
return m_szAltNick; };
96 const QString &
userName()
const {
return m_szUserName; };
102 const QString &
realName()
const {
return m_szRealName; };
109 void setName(
const QString & szName) { m_szName = szName; };
116 void setNetwork(
const QString & szNetwork) { m_szNetwork = szNetwork; };
123 void setNick(
const QString & szNick) { m_szNick = szNick; };
130 void setAltNick(
const QString & szAltNick) { m_szAltNick = szAltNick; };
137 void setUserName(
const QString & szUserName) { m_szUserName = szUserName; };
144 void setRealName(
const QString & szRealName) { m_szRealName = szRealName; };
Definition KviConfigurationFile.h:50
Definition KviHeapObject.h:119
Class which manages the identity profile.
Definition KviIdentityProfile.h:45
const QString & nick() const
Returns the nickname of the profile.
Definition KviIdentityProfile.h:84
void setNick(const QString &szNick)
Sets the nickname of the profile.
Definition KviIdentityProfile.h:123
QString m_szUserName
Definition KviIdentityProfile.h:64
~KviIdentityProfile()
Destroys the identity profile object.
void setUserName(const QString &szUserName)
Sets the username of the profile.
Definition KviIdentityProfile.h:137
const QString & realName() const
Returns the realname of the profile.
Definition KviIdentityProfile.h:102
void setRealName(const QString &szRealName)
Sets the realname of the profile.
Definition KviIdentityProfile.h:144
QString m_szNetwork
Definition KviIdentityProfile.h:61
const QString & userName() const
Returns the username of the profile.
Definition KviIdentityProfile.h:96
void setNetwork(const QString &szNetwork)
Sets the network of the profile.
Definition KviIdentityProfile.h:116
const QString & name() const
Returns the name of the profile.
Definition KviIdentityProfile.h:72
const QString & altNick() const
Returns the alternative nickname of the profile.
Definition KviIdentityProfile.h:90
void setAltNick(const QString &szAltNick)
Sets the alternative nickname of the profile.
Definition KviIdentityProfile.h:130
QString m_szNick
Definition KviIdentityProfile.h:62
QString m_szAltNick
Definition KviIdentityProfile.h:63
const QString & network() const
Returns the network of the profile.
Definition KviIdentityProfile.h:78
QString m_szRealName
Definition KviIdentityProfile.h:65
QString m_szName
Definition KviIdentityProfile.h:60
void setName(const QString &szName)
Sets the name of the profile.
Definition KviIdentityProfile.h:109
This file contains compile time settings.
#define KVILIB_API
Definition kvi_settings.h:124