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 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 wxBookCtrlEvent in wx 2.8
31 #include "Types.h" // Needed for uint32
32 #include "OtherStructs.h"
34 class CSourceListCtrl
;
35 class CDownloadListCtrl
;
38 class wxSplitterEvent
;
45 * This class takes care of managing the lists and other controls contained
46 * in the transfer-window. It's primary function is to manage the user-defined
49 class CTransferWnd
: public wxPanel
55 CTransferWnd(wxWindow
* pParent
= NULL
);
64 * Adds the specified category to the end of the list.
66 * @param category A pointer to the new category.
68 * This function should be called after a category has been
69 * added to the lists of categories. The new category is assumed
70 * to be the last, and thus will be appended to the end of the tabs
71 * on the category-notebook.
73 void AddCategory( Category_Struct
* category
);
76 * Updates the title of the specified category.
78 * @param index The index of the category on the notebook.
79 * @param titleChanged Set to true if the actual title has changed.
81 * The second paramerter will make the UpdateCategory function signal
82 * to the searchdlg page that the lists of categories has been changed,
83 * and force it to refresh its list of categories.
85 * This however should only be done when the title has actually changed,
86 * since it will cause the user-selection to be reset.
88 void UpdateCategory( int index
, bool titleChanged
= false );
93 void RemoveCategory(int index
);
94 void RemoveCategoryPage(int index
);
97 * This functions updates the displayed client-numbers*
99 * @param number The number of clients on the upload queue.
101 * This function updates both the number of clients on the queue,
102 * as well as the number of banned clients.
104 void ShowQueueCount(uint32 number
);
107 * Helper-function which updates the displayed titles of all existing categories.
109 void UpdateCatTabTitles();
113 * Call this function before displaying the dialog.
115 * This functions does a few tasks to ensure that the dialog is looking the right way.
119 //! Pointer to the download-queue.
120 CDownloadListCtrl
* downloadlistctrl
;
121 //! Pointer to the list of clients.
122 CSourceListCtrl
* clientlistctrl
;
124 //! Contains the current (or last if the clientlist is hidden) position of the splitter.
129 * Event-handler for the set status by category menu-item.
131 void OnSetCatStatus( wxCommandEvent
& event
);
134 * Event-handler for the set priority by category menu-item.
136 void OnSetCatPriority( wxCommandEvent
& event
);
139 * Event-handler for the "Add Category" menu-item.
141 void OnAddCategory( wxCommandEvent
& event
);
144 * Event-handler for the "Delete Category" menu-item.
146 void OnDelCategory( wxCommandEvent
& event
);
149 * Event-handler for the "Edit Category" menu-item.
151 void OnEditCategory( wxCommandEvent
& event
);
154 * Event-handler for manipulating the default category.
156 void OnSetDefaultCat( wxCommandEvent
& event
);
159 * Event-handler for the "Clear Completed" button.
161 void OnBtnClearDownloads(wxCommandEvent
&evt
);
164 * Event-handler for changing categories.
166 void OnCategoryChanged(wxBookCtrlEvent
& evt
);
169 * Event-handler for displaying the category-popup menu.
171 void OnNMRclickDLtab(wxMouseEvent
& evt
);
174 * Event-handler for the list-toggle button.
176 void OnToggleClientList( wxCommandEvent
& event
);
179 * Event-handler for changes in the sash divider position.
181 void OnSashPositionChanging(wxSplitterEvent
& evt
);
184 //! Variable used to ensure that the category menu doesn't get displayed twice.
187 //! Pointer to the category tabs.
188 CMuleNotebook
* m_dlTab
;
191 DECLARE_EVENT_TABLE()
196 // File_checked_for_headers