Upstream tarball 9959
[amule.git] / src / SharedFilesWnd.h
blob9a80839914156588e37614994aac81343dca64a2
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 SHAREDFILESWND_H
27 #define SHAREDFILESWND_H
29 #include <wx/panel.h> // Needed for wxPanel
32 class CKnownFile;
33 class CSharedFilesCtrl;
34 class wxListEvent;
35 class wxGauge;
38 /**
39 * This class represents the window containing the list of shared files.
41 class CSharedFilesWnd : public wxPanel
43 public:
44 /**
45 * Constructor.
47 CSharedFilesWnd(wxWindow* pParent = NULL);
49 /**
50 * Destructor.
52 ~CSharedFilesWnd();
55 /**
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();
64 /**
65 * Deletes all files and updates widget
67 void RemoveAllSharedFiles();
69 //! Pointer to the widget containing the list of shared files.
70 CSharedFilesCtrl* sharedfilesctrl;
72 private:
73 /**
74 * Event-handler for reloading the list of shared files.
75 */
76 void OnBtnReloadShared(wxCommandEvent &evt);
78 /**
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;
92 DECLARE_EVENT_TABLE()
95 #endif
96 // File_checked_for_headers