1999-07-29 01:11:30 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: filedlg.h
|
|
|
|
// Purpose: wxFileDialog class
|
1999-10-05 18:10:56 -04:00
|
|
|
// Author: David Webster
|
1999-07-29 01:11:30 -04:00
|
|
|
// Modified by:
|
1999-10-05 18:10:56 -04:00
|
|
|
// Created: 10/05/99
|
1999-07-29 01:11:30 -04:00
|
|
|
// RCS-ID: $Id$
|
1999-10-05 18:10:56 -04:00
|
|
|
// Copyright: (c) David Webster
|
1999-07-29 01:11:30 -04:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_FILEDLG_H_
|
|
|
|
#define _WX_FILEDLG_H_
|
|
|
|
|
|
|
|
#include "wx/dialog.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* File selector
|
|
|
|
*/
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxFileDialog: public wxDialog
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFileDialog)
|
|
|
|
public:
|
2002-08-20 01:00:48 -04:00
|
|
|
wxFileDialog( wxWindow* pParent
|
|
|
|
,const wxString& rsMessage = wxFileSelectorPromptStr
|
|
|
|
,const wxString& rsDefaultDir = ""
|
|
|
|
,const wxString& rsDefaultFile = ""
|
|
|
|
,const wxString& rsWildCard = wxFileSelectorDefaultWildcardStr
|
|
|
|
,long lStyle = 0
|
|
|
|
,const wxPoint& rPos = wxDefaultPosition
|
|
|
|
);
|
|
|
|
|
|
|
|
inline void SetMessage(const wxString& rsMessage) { m_sMessage = rsMessage; }
|
|
|
|
inline void SetPath(const wxString& rsPath) { m_sPath = rsPath; }
|
|
|
|
inline void SetDirectory(const wxString& rsDir) { m_sDir = rsDir; }
|
|
|
|
inline void SetFilename(const wxString& rsName) { m_sFileName = rsName; }
|
|
|
|
inline void SetWildcard(const wxString& rsWildCard) { m_sWildCard = rsWildCard; }
|
|
|
|
inline void SetStyle(long lStyle) { m_lDialogStyle = lStyle; }
|
|
|
|
inline void SetFilterIndex(int nFilterIndex) { m_nFilterIndex = nFilterIndex; }
|
|
|
|
|
|
|
|
inline wxString GetMessage(void) const { return m_sMessage; }
|
|
|
|
inline wxString GetPath(void) const { return m_sPath; }
|
|
|
|
void GetPaths(wxArrayString& rasPath) const;
|
|
|
|
inline wxString GetDirectory(void) const { return m_sDir; }
|
|
|
|
inline wxString GetFilename(void) const { return m_sFileName; }
|
2002-08-21 00:12:31 -04:00
|
|
|
inline void GetFilenames(wxArrayString& rasFilenames) { rasFilenames = m_asFileNames; }
|
2002-08-20 01:00:48 -04:00
|
|
|
inline wxString GetWildcard(void) const { return m_sWildCard; }
|
|
|
|
inline long GetStyle(void) const { return m_lDialogStyle; }
|
|
|
|
inline int GetFilterIndex() const { return m_nFilterIndex ; }
|
1999-07-29 01:11:30 -04:00
|
|
|
|
|
|
|
int ShowModal();
|
1999-10-05 18:10:56 -04:00
|
|
|
|
|
|
|
protected:
|
2002-08-20 01:00:48 -04:00
|
|
|
wxString m_sMessage;
|
|
|
|
long m_lDialogStyle;
|
|
|
|
wxWindow* m_pParent;
|
|
|
|
wxString m_sDir;
|
|
|
|
wxString m_sPath; // Full path
|
|
|
|
wxString m_sFileName;
|
|
|
|
wxArrayString m_asFileNames;
|
|
|
|
wxString m_sWildCard;
|
|
|
|
int m_nFilterIndex;
|
|
|
|
wxPoint m_vPos;
|
|
|
|
}; // end of CLASS wxFileDialog
|
1999-07-29 01:11:30 -04:00
|
|
|
|
2003-06-14 09:31:49 -04:00
|
|
|
#endif // _WX_FILEDLG_H_
|