Upstream tarball 9445
[amule.git] / src / ChatWnd.h
blobd1facc4fa0e0bc3f18da2f241aaa6957e31c7bc9
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(const CMD4Hash& userhash, const wxString& name, uint32 lastUsedIP, uint32 lastUsedPort);
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);
61 protected:
62 void OnBnClickedCsend(wxCommandEvent& evt);
63 void OnBnClickedCclose(wxCommandEvent& evt);
64 void OnAllPagesClosed(wxNotebookEvent& evt);
65 void CheckNewButtonsState();
67 DECLARE_EVENT_TABLE()
69 CFriendListCtrl* friendlistctrl;
70 CChatSelector* chatselector;
73 #endif
74 // File_checked_for_headers