Searched refs:CMuleListCtrl (Results 1 - 21 of 21) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DFileDetailListCtrl.cpp31 BEGIN_EVENT_TABLE(CFileDetailListCtrl, CMuleListCtrl)
36 CFileDetailListCtrl::CFileDetailListCtrl(wxWindow * &parent, int id, const wxPoint & pos, wxSize siz, int flags):CMuleListCtrl(parent, id, pos, siz, flags)
45 SetSorting(1, CMuleListCtrl::SORT_DES);
56 int mod = (sortData & CMuleListCtrl::SORT_DES) ? -1 : 1;
58 switch (sortData & CMuleListCtrl::COLUMN_MASK) {
H A DCommentDialogLst.h32 class CMuleListCtrl;
46 * Sorter function for the CMuleListCtrl used to contain the lists.
68 CMuleListCtrl* m_list;
H A DMuleListCtrl.cpp58 BEGIN_EVENT_TABLE(CMuleListCtrl, MuleExtern::wxGenericListCtrl)
59 EVT_LIST_COL_CLICK( -1, CMuleListCtrl::OnColumnLClick)
60 EVT_LIST_COL_RIGHT_CLICK( -1, CMuleListCtrl::OnColumnRClick)
61 EVT_LIST_ITEM_SELECTED(-1, CMuleListCtrl::OnItemSelected)
62 EVT_LIST_ITEM_DESELECTED(-1, CMuleListCtrl::OnItemSelected)
63 EVT_LIST_DELETE_ITEM(-1, CMuleListCtrl::OnItemDeleted)
64 EVT_LIST_DELETE_ALL_ITEMS(-1, CMuleListCtrl::OnAllItemsDeleted)
65 EVT_CHAR( CMuleListCtrl::OnChar)
66 EVT_MENU_RANGE(MP_LISTCOL_1, MP_LISTCOL_15, CMuleListCtrl::OnMenuSelected)
67 EVT_MOUSEWHEEL(CMuleListCtrl
75 CMuleListCtrl::CMuleListCtrl(wxWindow *parent, wxWindowID winid, const wxPoint& pos, const wxSize& size, long style, const wxValidator& validator, const wxString& name) function in class:CMuleListCtrl
[all...]
H A DFileDetailListCtrl.h29 #include "MuleListCtrl.h" // Needed for CMuleListCtrl
31 class CFileDetailListCtrl : public CMuleListCtrl
H A DSharedFilePeersListCtrl.cpp66 return CGenericClientListCtrl::SortProc(param1, param2, s_sources_column_info[sortData & CMuleListCtrl::COLUMN_MASK].cid | (sortData & CMuleListCtrl::SORT_DES));
H A DSourceListCtrl.cpp65 return CGenericClientListCtrl::SortProc(param1, param2, s_sources_column_info[sortData & CMuleListCtrl::COLUMN_MASK].cid | (sortData & CMuleListCtrl::SORT_DES));
H A DCommentDialogLst.cpp30 #include "MuleListCtrl.h" // Needed for CMuleListCtrl
54 m_list = CastChild(IDC_LST, CMuleListCtrl);
131 int mod = (sortData & CMuleListCtrl::SORT_DES) ? -1 : 1;
133 switch (sortData & CMuleListCtrl::COLUMN_MASK) {
H A DFriendListCtrl.h35 class CFriendListCtrl : public CMuleListCtrl
H A DMuleListCtrl.h50 class CMuleListCtrl : public MuleExtern::wxGenericListCtrl class in inherits:MuleExtern::wxGenericListCtrl
81 CMuleListCtrl(
96 virtual ~CMuleListCtrl();
236 * Subclasses of CMuleListCtrl can allow alternative sorting
260 * make use of the LoadSettings/SaveSettings functions. CMuleListCtrl
H A DServerListCtrl.h29 #include "MuleListCtrl.h" // Needed for CMuleListCtrl
56 class CServerListCtrl : public CMuleListCtrl
62 * @see CMuleListCtrl::CMuleListCtrl
H A DSharedFilesCtrl.h29 #include "MuleListCtrl.h" // Needed for CMuleListCtrl
40 class CSharedFilesCtrl : public CMuleListCtrl
46 * @see CMuleListCtrl::CMuleListCtrl
122 * @see CMuleListCtrl::GetTTSText
137 * @see CMuleListCtrl::AltSortAllowed
H A DSearchListCtrl.h33 #include "MuleListCtrl.h" // Needed for CMuleListCtrl
52 class CSearchListCtrl : public CMuleListCtrl
58 * @see CMuleListCtrl::CMuleListCtrl for documentation of parameters.
199 * @see CMuleListCtrl::SetSortFunc
204 /** @see CMuleListCtrl::AltSortAllowed */
207 /** @see CMuleListCtrl::GetTTSText */
H A DDownloadListCtrl.h34 #include "MuleListCtrl.h" // Needed for CMuleListCtrl
52 class CDownloadListCtrl : public CMuleListCtrl
58 * @see CMuleListCtrl::CMuleListCtrl for documentation of parameters.
150 * @see CMuleListCtrl::GetTTSText
H A DFriendListCtrl.cpp42 BEGIN_EVENT_TABLE(CFriendListCtrl, CMuleListCtrl)
58 : CMuleListCtrl(parent, id, pos, siz, flags)
H A DSearchListCtrl.cpp40 BEGIN_EVENT_TABLE(CSearchListCtrl, CMuleListCtrl)
79 CMuleListCtrl(parent, winid, pos, size, style | wxLC_OWNERDRAW, validator, name),
475 int modifier = (sortData & CMuleListCtrl::SORT_DES) ? -1 : 1;
476 bool alternate = (sortData & CMuleListCtrl::SORT_ALT) != 0;
502 switch (sortData & CMuleListCtrl::COLUMN_MASK) {
580 CMuleListCtrl::SetSorting(column, order);
669 CMuleListCtrl::OnColumnLClick( event );
H A DServerListCtrl.cpp51 BEGIN_EVENT_TABLE(CServerListCtrl,CMuleListCtrl)
76 : CMuleListCtrl( parent, winid, pos, size, style, validator, name )
572 int mode = (sortData & CMuleListCtrl::SORT_DES) ? -1 : 1;
574 switch (sortData & CMuleListCtrl::COLUMN_MASK) {
H A DGenericClientListCtrl.h34 #include "MuleListCtrl.h" // Needed for CMuleListCtrl
82 class CGenericClientListCtrl : public CMuleListCtrl
88 * @see CMuleListCtrl::CMuleListCtrl for documentation of parameters.
193 * @see CMuleListCtrl::GetTTSText
205 * @see CMuleListCtrl::InsertColumn
H A DSharedFilesCtrl.cpp47 BEGIN_EVENT_TABLE(CSharedFilesCtrl,CMuleListCtrl)
91 : CMuleListCtrl(parent, id, pos, size, flags | wxLC_OWNERDRAW )
363 int mod = (sortData & CMuleListCtrl::SORT_DES) ? -1 : 1;
364 bool altSorting = (sortData & CMuleListCtrl::SORT_ALT) > 0;
366 switch (sortData & CMuleListCtrl::COLUMN_MASK) {
H A DDownloadListCtrl.cpp98 BEGIN_EVENT_TABLE(CDownloadListCtrl, CMuleListCtrl)
144 CMuleListCtrl( parent, winid, pos, size, style | wxLC_OWNERDRAW, validator, name )
1121 int sortMod = (sortData & CMuleListCtrl::SORT_DES) ? -1 : 1;
1122 sortData &= CMuleListCtrl::COLUMN_MASK;
H A DGenericClientListCtrl.cpp98 BEGIN_EVENT_TABLE(CGenericClientListCtrl, CMuleListCtrl)
121 CMuleListCtrl( parent, winid, pos, size, style | wxLC_OWNERDRAW | wxLC_VRULES | wxLC_HRULES, validator, name ),
1104 int sortMod = (sortData & CMuleListCtrl::SORT_DES) ? -1 : 1;
1105 sortData &= CMuleListCtrl::COLUMN_MASK;
H A Dmuuli_wdr.cpp882 CMuleListCtrl *item1 = new CMuleListCtrl( parent, IDC_LST, wxDefaultPosition, wxSize(600,270), wxLC_REPORT|wxSUNKEN_BORDER );

Completed in 229 milliseconds