Remove do-nothing command and add warning about it
[amule.git] / src / TransferWnd.h
bloba2cd39c8e3b81e5f6613afddf2a22afa4358a603
1 //
2 // This file is part of the aMule Project.
3 //
4 // Copyright (c) 2003-2011 aMule Team ( admin@amule.org / http://www.amule.org )
5 // Copyright (c) 2002 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.
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 TRANSFERWND_H
27 #define TRANSFERWND_H
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;
36 class CMuleNotebook;
37 class wxListCtrl;
38 class wxSplitterEvent;
39 class wxCommandEvent;
40 class wxMouseEvent;
41 class wxEvent;
42 class wxMenu;
44 /**
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
47 * categories.
49 class CTransferWnd : public wxPanel
51 public:
52 /**
53 * Constructor.
55 CTransferWnd(wxWindow* pParent = NULL);
57 /**
58 * Destructor.
60 ~CTransferWnd();
63 /**
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 );
75 /**
76 * Updates the title of the specified category.
78 * @param index The index of the category on the notebook. -1 will update all categories.
80 void UpdateCategory(int index);
82 /**
83 * Remove category
85 void RemoveCategory(int index);
86 void RemoveCategoryPage(int index);
88 /**
89 * Helper-function which updates the displayed titles of all existing categories.
91 void UpdateCatTabTitles() { UpdateCategory(-1); }
94 /**
95 * Call this function before displaying the dialog.
97 * This functions does a few tasks to ensure that the dialog is looking the right way.
99 void Prepare();
101 //! Pointer to the download-queue.
102 CDownloadListCtrl* downloadlistctrl;
103 //! Pointer to the list of clients.
104 CSourceListCtrl* clientlistctrl;
106 private:
107 //! Contains the current (or last if the clientlist is hidden) position of the splitter.
108 int m_splitter;
109 //! Minimum position of splitter bar
110 static const int s_splitterMin = 90;
113 * Event-handler for the set status by category menu-item.
115 void OnSetCatStatus( wxCommandEvent& event );
118 * Event-handler for the set priority by category menu-item.
120 void OnSetCatPriority( wxCommandEvent& event );
123 * Event-handler for the "Add Category" menu-item.
125 void OnAddCategory( wxCommandEvent& event );
128 * Event-handler for the "Delete Category" menu-item.
130 void OnDelCategory( wxCommandEvent& event );
133 * Event-handler for the "Edit Category" menu-item.
135 void OnEditCategory( wxCommandEvent& event );
138 * Event-handler for manipulating the default category.
140 void OnSetDefaultCat( wxCommandEvent& event );
143 * Event-handler for the "Clear Completed" button.
145 void OnBtnClearDownloads(wxCommandEvent &evt);
148 * Event-handler for changing categories.
150 void OnCategoryChanged(wxBookCtrlEvent& evt);
153 * Event-handler for displaying the category-popup menu.
155 void OnNMRclickDLtab(wxMouseEvent& evt);
158 * Event-handler for the list-toggle button.
160 void OnToggleClientList( wxCommandEvent& event );
163 * Event-handler for changes in the sash divider position.
165 void OnSashPositionChanging(wxSplitterEvent& evt);
168 //! Variable used to ensure that the category menu doesn't get displayed twice.
169 wxMenu* m_menu;
171 //! Pointer to the category tabs.
172 CMuleNotebook* m_dlTab;
175 DECLARE_EVENT_TABLE()
178 #endif
180 // File_checked_for_headers