Upstream tarball 10143
[amule.git] / src / ChatWnd.h
blob8a4577582fe6ce642ae8aa60b7ae611a9aeb6571
1 //
2 // This file is part of the aMule Project.
3 //
4 // Copyright (c) 2003-2008 aMule Team ( admin@amule.org / http://www.amule.org )
5 // Copyright (c) 2002-2008 Merkur ( devs@emule-project.net / http://www.emule-project.net )
6 //
7 // Any parts of this program derived from the xMule, lMule or eMule project,
8 // or contributed by third-party developers are copyrighted by their
9 // respective authors.
11 // This program is free software; you can redistribute it and/or modify
12 // it under the terms of the GNU General Public License as published by
13 // the Free Software Foundation; either version 2 of the License, or
14 // (at your option) any later version.
16 // This program is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 // GNU General Public License for more details.
20 //
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #ifndef CHATWND_H
27 #define CHATWND_H
29 #include <wx/panel.h> // Needed for wxPanel
30 #include <wx/notebook.h> // Needed for wxNotebookEvent
31 #include "Types.h"
33 class CDlgFriend;
34 class CUpDownClient;
35 class CChatSelector;
36 class CFriendListCtrl;
37 class CMD4Hash;
39 class CChatWnd : public wxPanel
41 public:
42 CChatWnd(wxWindow* pParent = NULL);
43 ~CChatWnd() {};
45 void StartSession(CDlgFriend* friend_client, bool setfocus = true);
47 CDlgFriend* FindFriend(const CMD4Hash& userhash, uint32 dwIP, uint16 nPort);
48 void AddFriend(CUpDownClient* toadd);
49 void AddFriend(const CMD4Hash& userhash, const wxString& name, uint32 lastUsedIP, uint32 lastUsedPort);
50 void RemoveFriend(const CMD4Hash& userhash, uint32 lastUsedIP, uint32 lastUsedPort);
51 void RefreshFriend(class CFriend* Friend, bool connected);
53 void ProcessMessage(uint64 sender, const wxString& message);
54 void ConnectionResult(bool success, const wxString& message, uint64 id);
56 void SendMessage(const wxString& message, const wxString& client_name = wxEmptyString, uint64 to_id = 0);
58 bool IsIdValid(uint64 id);
59 void ShowCaptchaResult(uint64 id, bool ok);
60 void EndSession(uint64 id);
62 protected:
63 /**
64 * Event-handler for displaying the chat-popup menu.
66 void OnNMRclickChatTab(wxMouseEvent& evt);
67 /**
68 * Event-handler fo the Close item on the popup-menu.
70 void OnPopupClose(wxCommandEvent& evt);
72 /**
73 * Event-handler fo the CloseAll item on the popup-menu.
75 void OnPopupCloseAll(wxCommandEvent& evt);
77 /**
78 * Event-handler fo the CloseOthers item on the popup-menu.
80 void OnPopupCloseOthers(wxCommandEvent& evt);
82 /**
83 * Event-handler fo the AddFriend item on the popup-menu.
85 void OnAddFriend(wxCommandEvent& evt);
87 void OnBnClickedCsend(wxCommandEvent& evt);
88 void OnBnClickedCclose(wxCommandEvent& evt);
89 void OnAllPagesClosed(wxNotebookEvent& evt);
90 void CheckNewButtonsState();
92 DECLARE_EVENT_TABLE()
94 //! Variable used to ensure that the popup menu doesn't get displayed twice.
95 wxMenu* m_menu;
96 //! Pointer to the control serving as the friend list
97 CFriendListCtrl* friendlistctrl;
98 //! Pointer to the chat tabs.
99 CChatSelector* chatselector;
102 #endif
103 // File_checked_for_headers