~ubuntu-branches/ubuntu/hardy/kdenetwork-kde4/hardy-backports

« back to all changes in this revision

Viewing changes to kopete/protocols/oscar/liboscar/userdetails.h

  • Committer: Bazaar Package Importer
  • Author(s): Terence Simpson
  • Date: 2008-05-02 19:16:55 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080502191655-urlvhon23z2apnqr
Tags: 4:4.0.4-0ubuntu1~hardy1
* New upstream release (LP: #226323)
* Updated descriptions of packges to reflect KDE 4 (LP: #220655)
* Removed reference to IRC from kopete-kde4

+++ Richard Johnson
* Updated install files to bump sonames from 4.0.0 to 4.0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
        Oscar::DWORD dcPort() const; //! DC port number    
45
45
    Oscar::WORD dcProtoVersion() const;
46
46
        QDateTime onlineSinceTime() const; //! Online since accessor
 
47
        QDateTime awaySinceTime() const; //! Away since accessor
47
48
        QDateTime memberSinceTime() const; //! Member since accessor
48
49
        int userClass() const; //! User class accessor
49
50
        Oscar::DWORD extendedStatus() const; //!User status accessor
69
70
        bool userClassSpecified() const { return m_userClassSpecified; }
70
71
        bool memberSinceSpecified() const { return m_memberSinceSpecified; }
71
72
        bool onlineSinceSpecified() const { return m_onlineSinceSpecified; }
 
73
        bool awaySinceSpecified() const { return m_awaySinceSpecified; }
72
74
        bool numSecondsOnlineSpecified() const { return m_numSecondsOnlineSpecified; }
73
75
        bool idleTimeSpecified() const { return m_idleTimeSpecified; }
74
76
        bool extendedStatusSpecified() const { return m_extendedStatusSpecified; }
103
105
        int m_userClass; /// the class of the user - TLV 0x01
104
106
        QDateTime m_memberSince; /// how long the user's been a member - TLV 0x05
105
107
        QDateTime m_onlineSince; /// how long the contact's been online - TLV 0x03
 
108
        QDateTime m_awaySince; /// how long the contact's been away - TLV 0x29
106
109
        Oscar::DWORD m_numSecondsOnline; /// how long the contact's been online in seconds
107
110
        Oscar::WORD m_idleTime; /// the idle time of the contact - TLV 0x0F
108
111
        Oscar::DWORD m_extendedStatus; /// the extended status of the contact - TLV 0x06
130
133
        bool m_userClassSpecified;
131
134
        bool m_memberSinceSpecified;
132
135
        bool m_onlineSinceSpecified;
 
136
        bool m_awaySinceSpecified;
133
137
        bool m_numSecondsOnlineSpecified;
134
138
        bool m_idleTimeSpecified;
135
139
        bool m_extendedStatusSpecified;