2 // This file is part of the aMule Project.
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 )
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
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.
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
29 #include <wx/panel.h> // Needed for wxPanel
30 #include <wx/notebook.h> // Needed for wxNotebookEvent
36 class CFriendListCtrl
;
39 class CChatWnd
: public wxPanel
42 CChatWnd(wxWindow
* pParent
= NULL
);
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
);
64 * Event-handler for displaying the chat-popup menu.
66 void OnNMRclickChatTab(wxMouseEvent
& evt
);
68 * Event-handler fo the Close item on the popup-menu.
70 void OnPopupClose(wxCommandEvent
& evt
);
73 * Event-handler fo the CloseAll item on the popup-menu.
75 void OnPopupCloseAll(wxCommandEvent
& evt
);
78 * Event-handler fo the CloseOthers item on the popup-menu.
80 void OnPopupCloseOthers(wxCommandEvent
& evt
);
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();
94 //! Variable used to ensure that the popup menu doesn't get displayed twice.
96 //! Pointer to the control serving as the friend list
97 CFriendListCtrl
* friendlistctrl
;
98 //! Pointer to the chat tabs.
99 CChatSelector
* chatselector
;
103 // File_checked_for_headers