X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0cf3e587a2ec542ba1eb6e03a84c54edefae1881..6448dc217bb901dadbab90ff98f8f80fcc74e8d4:/src/generic/filectrlg.cpp diff --git a/src/generic/filectrlg.cpp b/src/generic/filectrlg.cpp index 967221b7ee..5427143e01 100644 --- a/src/generic/filectrlg.cpp +++ b/src/generic/filectrlg.cpp @@ -224,7 +224,7 @@ void wxFileData::ReadData() #if defined(__UNIX__) && (!defined( __OS2__ ) && !defined(__VMS)) lstat( m_filePath.fn_str(), &buff ); - m_type |= S_ISLNK( buff.st_mode ) != 0 ? is_link : 0; + m_type |= S_ISLNK(buff.st_mode) ? is_link : 0; #else // no lstat() // only translate to file charset if we don't go by our // wxStat implementation @@ -390,29 +390,27 @@ void wxFileData::MakeItem( wxListItem &item ) } //----------------------------------------------------------------------------- -// wxFileList +// wxFileListCtrl //----------------------------------------------------------------------------- -static bool ignoreChanges = false; +IMPLEMENT_DYNAMIC_CLASS(wxFileListCtrl,wxListCtrl) -IMPLEMENT_DYNAMIC_CLASS(wxFileList,wxListCtrl) - -BEGIN_EVENT_TABLE(wxFileList,wxListCtrl) - EVT_LIST_DELETE_ITEM(wxID_ANY, wxFileList::OnListDeleteItem) - EVT_LIST_DELETE_ALL_ITEMS(wxID_ANY, wxFileList::OnListDeleteAllItems) - EVT_LIST_END_LABEL_EDIT(wxID_ANY, wxFileList::OnListEndLabelEdit) - EVT_LIST_COL_CLICK(wxID_ANY, wxFileList::OnListColClick) +BEGIN_EVENT_TABLE(wxFileListCtrl,wxListCtrl) + EVT_LIST_DELETE_ITEM(wxID_ANY, wxFileListCtrl::OnListDeleteItem) + EVT_LIST_DELETE_ALL_ITEMS(wxID_ANY, wxFileListCtrl::OnListDeleteAllItems) + EVT_LIST_END_LABEL_EDIT(wxID_ANY, wxFileListCtrl::OnListEndLabelEdit) + EVT_LIST_COL_CLICK(wxID_ANY, wxFileListCtrl::OnListColClick) END_EVENT_TABLE() -wxFileList::wxFileList() +wxFileListCtrl::wxFileListCtrl() { m_showHidden = false; - m_sort_foward = 1; + m_sort_forward = true; m_sort_field = wxFileData::FileList_Name; } -wxFileList::wxFileList(wxWindow *win, +wxFileListCtrl::wxFileListCtrl(wxWindow *win, wxWindowID id, const wxString& wild, bool showHidden, @@ -430,7 +428,7 @@ wxFileList::wxFileList(wxWindow *win, m_showHidden = showHidden; - m_sort_foward = 1; + m_sort_forward = true; m_sort_field = wxFileData::FileList_Name; m_dirName = wxT("*"); @@ -439,14 +437,14 @@ wxFileList::wxFileList(wxWindow *win, ChangeToReportMode(); } -void wxFileList::ChangeToListMode() +void wxFileListCtrl::ChangeToListMode() { ClearAll(); SetSingleStyle( wxLC_LIST ); UpdateFiles(); } -void wxFileList::ChangeToReportMode() +void wxFileListCtrl::ChangeToReportMode() { ClearAll(); SetSingleStyle( wxLC_REPORT ); @@ -473,20 +471,20 @@ void wxFileList::ChangeToReportMode() UpdateFiles(); } -void wxFileList::ChangeToSmallIconMode() +void wxFileListCtrl::ChangeToSmallIconMode() { ClearAll(); SetSingleStyle( wxLC_SMALL_ICON ); UpdateFiles(); } -void wxFileList::ShowHidden( bool show ) +void wxFileListCtrl::ShowHidden( bool show ) { m_showHidden = show; UpdateFiles(); } -long wxFileList::Add( wxFileData *fd, wxListItem &item ) +long wxFileListCtrl::Add( wxFileData *fd, wxListItem &item ) { long ret = -1; item.m_mask = wxLIST_MASK_TEXT + wxLIST_MASK_DATA + wxLIST_MASK_IMAGE; @@ -505,7 +503,7 @@ long wxFileList::Add( wxFileData *fd, wxListItem &item ) return ret; } -void wxFileList::UpdateItem(const wxListItem &item) +void wxFileListCtrl::UpdateItem(const wxListItem &item) { wxFileData *fd = (wxFileData*)GetItemData(item); wxCHECK_RET(fd, wxT("invalid filedata")); @@ -522,7 +520,7 @@ void wxFileList::UpdateItem(const wxListItem &item) } } -void wxFileList::UpdateFiles() +void wxFileListCtrl::UpdateFiles() { // don't do anything before ShowModal() call which sets m_dirName if ( m_dirName == wxT("*") ) @@ -541,11 +539,23 @@ void wxFileList::UpdateFiles() { wxArrayString names, paths; wxArrayInt icons; - size_t n, count = wxGetAvailableDrives(paths, names, icons); + const size_t count = wxGetAvailableDrives(paths, names, icons); - for (n=0; nSetNewName( new_name, event.GetLabel() ); - ignoreChanges = true; SetItemState( event.GetItem(), wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED ); - ignoreChanges = false; UpdateItem( event.GetItem() ); EnsureVisible( event.GetItem() ); @@ -820,7 +824,7 @@ void wxFileList::OnListEndLabelEdit( wxListEvent &event ) } } -void wxFileList::OnListColClick( wxListEvent &event ) +void wxFileListCtrl::OnListColClick( wxListEvent &event ) { int col = event.GetColumn(); @@ -834,17 +838,17 @@ void wxFileList::OnListColClick( wxListEvent &event ) } if ((wxFileData::fileListFieldType)col == m_sort_field) - m_sort_foward = !m_sort_foward; + m_sort_forward = !m_sort_forward; else m_sort_field = (wxFileData::fileListFieldType)col; - SortItems(m_sort_field, m_sort_foward); + SortItems(m_sort_field, m_sort_forward); } -void wxFileList::SortItems(wxFileData::fileListFieldType field, bool forward) +void wxFileListCtrl::SortItems(wxFileData::fileListFieldType field, bool forward) { m_sort_field = field; - m_sort_foward = forward; + m_sort_forward = forward; const long sort_dir = forward ? 1 : -1; switch (m_sort_field) @@ -868,11 +872,11 @@ void wxFileList::SortItems(wxFileData::fileListFieldType field, bool forward) } } -wxFileList::~wxFileList() +wxFileListCtrl::~wxFileListCtrl() { // Normally the data are freed via an EVT_LIST_DELETE_ALL_ITEMS event and - // wxFileList::OnListDeleteAllItems. But if the event is generated after - // the destruction of the wxFileList we need to free any data here: + // wxFileListCtrl::OnListDeleteAllItems. But if the event is generated after + // the destruction of the wxFileListCtrl we need to free any data here: FreeAllItemsData(); } @@ -959,10 +963,10 @@ bool wxGenericFileCtrl::Create( wxWindow *parent, style2 |= wxSUNKEN_BORDER; #endif - m_list = new wxFileList( this, ID_FILELIST_CTRL, - wxEmptyString, false, - wxDefaultPosition, wxSize( 400, 140 ), - style2 ); + m_list = new wxFileListCtrl( this, ID_FILELIST_CTRL, + wxEmptyString, false, + wxDefaultPosition, wxSize( 400, 140 ), + style2 ); m_text = new wxTextCtrl( this, ID_TEXT, wxEmptyString, wxDefaultPosition, wxDefaultSize,