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
26 #ifndef SHAREDFILESWND_H
27 #define SHAREDFILESWND_H
29 #include <wx/panel.h> // Needed for wxPanel
33 class CSharedFilesCtrl
;
39 * This class represents the window containing the list of shared files.
41 class CSharedFilesWnd
: public wxPanel
47 CSharedFilesWnd(wxWindow
* pParent
= NULL
);
56 * This function updates the statistics of the selected items.
58 * Call this function when an item has been selected, or when a
59 * selected item changes. It
61 void SelectionUpdated();
65 * Deletes all files and updates widget
67 void RemoveAllSharedFiles();
69 //! Pointer to the widget containing the list of shared files.
70 CSharedFilesCtrl
* sharedfilesctrl
;
74 * Event-handler for reloading the list of shared files.
76 void OnBtnReloadShared(wxCommandEvent
&evt
);
79 * Event-handler for showing details about a shared file.
81 void OnItemActivated(wxListEvent
& evt
);
84 //! Pointer to the gauge used for showing requests ratio.
85 wxGauge
* m_bar_requests
;
86 //! Pointer to the gauge used for showing accepted-requests ratio.
87 wxGauge
* m_bar_accepted
;
88 //! Pointer to the gauge used for showing the transferred ratio.
89 wxGauge
* m_bar_transfer
;
96 // File_checked_for_headers