summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/oscar/aim/aimchatsession.h
blob: 9ce3ce1fe074e1c026a8d0d17d97b3ea3aa5dd4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// aimchatsession.h
// Copyright (C)  2005  Matt Rogers <mattr@kde.org>

// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Steet, Fifth Floor, Boston, MA
// 02110-1301, USA.

#ifndef AIMCHATSESSION_H
#define AIMCHATSESSION_H

#include "kopetechatsession.h"
#include "oscartypes.h"

class Client;

class AIMChatSession : public Kopete::ChatSession
{
Q_OBJECT
public:
    AIMChatSession( const Kopete::Contact* contact, Kopete::ContactPtrList others,
                    Kopete::Protocol* protocol, Oscar::WORD exchange = 0,
                    const TQString& room = TQString::null );
    virtual ~AIMChatSession();

    /**
     * Set the engine to use so that we can disconnect from the chat service
     * properly
     */
    void setEngine( Client* engine );

    /**
     * Get the name of the AIM chat room represented by
     * this ChatSession object
     * @return the name of the chat room
     */
    TQString roomName() const;

    /**
     * Set the name of the AIM chat room represented by
     * this ChatSession object
     * @param room the name of the AIM chat room
     */
    void setRoomName( const TQString& room );

    /**
     * Get the exchange of the AIM chat room represented by
     * this ChatSession object
     * @return the exchange of the chat room
     */
    Oscar::WORD exchange() const;

    /**
     * Set the exchange of the AIM chat room represented by
     * this ChatSession object
     * @param exchange the exchange of the AIM chat room
     */
    void setExchange( Oscar::WORD exchange );

private:
    TQString m_roomName;
    Oscar::WORD m_exchange;
    Client* m_engine;
};


#endif