// -------------------------------
virtual int ShowModal();
+ virtual bool Show( bool show = true );
void OnSelected( wxListEvent &event );
void OnActivated( wxListEvent &event );
wxFileDialog(wxWindow *parent,
const wxString& message = wxFileSelectorPromptStr,
- const wxString& defaultDir = _T(""),
- const wxString& defaultFile = _T(""),
+ const wxString& defaultDir = wxEmptyString,
+ const wxString& defaultFile = wxEmptyString,
const wxString& wildCard = wxFileSelectorDefaultWildcardStr,
long style = 0,
const wxPoint& pos = wxDefaultPosition)
};
// Full copy constructor
- wxFileData( const wxFileData& fileData );
+ wxFileData( const wxFileData& fileData ) { Copy(fileData); }
// Create a filedata from this information
wxFileData( const wxString &filePath, const wxString &fileName,
fileType type, int image_id );
+ // make a full copy of the other wxFileData
+ void Copy( const wxFileData &other );
+
// (re)read the extra data about the file from the system
void ReadData();
// initialize a wxListItem attributes
void MakeItem( wxListItem &item );
+
+ wxFileData& operator = (const wxFileData& fd) { Copy(fd); return *this; }
+
private:
wxString m_fileName;
wxString m_filePath;
virtual void ChangeToListMode();
virtual void ChangeToReportMode();
virtual void ChangeToSmallIconMode();
- virtual void ShowHidden( bool show = TRUE );
+ virtual void ShowHidden( bool show = true );
bool GetShowHidden() const { return m_showHidden; }
virtual long Add( wxFileData *fd, wxListItem &item );
wxString GetDir() const { return m_dirName; }
void OnListDeleteItem( wxListEvent &event );
+ void OnListDeleteAllItems( wxListEvent &event );
void OnListEndLabelEdit( wxListEvent &event );
void OnListColClick( wxListEvent &event );
wxFileData::fileListFieldType GetSortField() const { return m_sort_field; }
protected:
- void FreeItemData(const wxListItem& item);
+ void FreeItemData(wxListItem& item);
void FreeAllItemsData();
wxString m_dirName;