1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: filedlg.h
|
|
|
|
// Purpose: wxFileDialog class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 23:52:45 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
1999-01-24 23:31:39 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
#ifndef _WX_FILEDLG_H_
|
|
|
|
#define _WX_FILEDLG_H_
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "filedlg.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/dialog.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* File selector
|
|
|
|
*/
|
|
|
|
|
1999-04-19 18:23:09 +00:00
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxFileSelectorPromptStr;
|
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxFileSelectorDefaultWildcardStr;
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
class WXDLLEXPORT wxFileDialog: public wxDialog
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFileDialog)
|
1999-01-24 23:31:39 +00:00
|
|
|
|
1998-05-20 14:12:05 +00:00
|
|
|
public:
|
|
|
|
wxFileDialog(wxWindow *parent, const wxString& message = wxFileSelectorPromptStr,
|
1998-12-28 12:35:49 +00:00
|
|
|
const wxString& defaultDir = wxEmptyString, const wxString& defaultFile = wxEmptyString, const wxString& wildCard = wxFileSelectorDefaultWildcardStr,
|
1998-05-20 14:12:05 +00:00
|
|
|
long style = 0, const wxPoint& pos = wxDefaultPosition);
|
|
|
|
|
|
|
|
inline void SetMessage(const wxString& message) { m_message = message; }
|
|
|
|
inline void SetPath(const wxString& path) { m_path = path; }
|
|
|
|
inline void SetDirectory(const wxString& dir) { m_dir = dir; }
|
|
|
|
inline void SetFilename(const wxString& name) { m_fileName = name; }
|
|
|
|
inline void SetWildcard(const wxString& wildCard) { m_wildCard = wildCard; }
|
|
|
|
inline void SetStyle(long style) { m_dialogStyle = style; }
|
|
|
|
inline void SetFilterIndex(int filterIndex) { m_filterIndex = filterIndex; }
|
|
|
|
|
|
|
|
inline wxString GetMessage(void) const { return m_message; }
|
|
|
|
inline wxString GetPath(void) const { return m_path; }
|
|
|
|
inline wxString GetDirectory(void) const { return m_dir; }
|
|
|
|
inline wxString GetFilename(void) const { return m_fileName; }
|
|
|
|
inline wxString GetWildcard(void) const { return m_wildCard; }
|
|
|
|
inline long GetStyle(void) const { return m_dialogStyle; }
|
|
|
|
inline int GetFilterIndex(void) const { return m_filterIndex ; }
|
|
|
|
|
|
|
|
int ShowModal(void);
|
1999-01-24 23:31:39 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
wxString m_message;
|
|
|
|
long m_dialogStyle;
|
|
|
|
wxWindow * m_parent;
|
|
|
|
wxString m_dir;
|
|
|
|
wxString m_path; // Full path
|
|
|
|
wxString m_fileName;
|
|
|
|
wxString m_wildCard;
|
|
|
|
int m_filterIndex;
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
1998-07-12 22:46:10 +00:00
|
|
|
#define wxOPEN 0x0001
|
|
|
|
#define wxSAVE 0x0002
|
|
|
|
#define wxOVERWRITE_PROMPT 0x0004
|
|
|
|
#define wxHIDE_READONLY 0x0008
|
|
|
|
#define wxFILE_MUST_EXIST 0x0010
|
1998-05-20 14:12:05 +00:00
|
|
|
|
1999-01-26 11:51:12 +00:00
|
|
|
// File selector - backward compatibility
|
|
|
|
WXDLLEXPORT wxString
|
1999-04-19 18:23:09 +00:00
|
|
|
wxFileSelector(const wxChar *message = wxFileSelectorPromptStr,
|
|
|
|
const wxChar *default_path = NULL,
|
|
|
|
const wxChar *default_filename = NULL,
|
|
|
|
const wxChar *default_extension = NULL,
|
|
|
|
const wxChar *wildcard = wxFileSelectorDefaultWildcardStr,
|
1999-01-26 11:51:12 +00:00
|
|
|
int flags = 0,
|
|
|
|
wxWindow *parent = NULL,
|
|
|
|
int x = -1, int y = -1);
|
|
|
|
|
|
|
|
// An extended version of wxFileSelector
|
|
|
|
WXDLLEXPORT wxString
|
1999-04-19 18:23:09 +00:00
|
|
|
wxFileSelectorEx(const wxChar *message = wxFileSelectorPromptStr,
|
|
|
|
const wxChar *default_path = NULL,
|
|
|
|
const wxChar *default_filename = NULL,
|
1999-01-26 11:51:12 +00:00
|
|
|
int *indexDefaultExtension = NULL,
|
1999-04-19 18:23:09 +00:00
|
|
|
const wxChar *wildcard = wxFileSelectorDefaultWildcardStr,
|
1999-01-26 11:51:12 +00:00
|
|
|
int flags = 0,
|
|
|
|
wxWindow *parent = NULL,
|
|
|
|
int x = -1, int y = -1);
|
|
|
|
|
|
|
|
// Ask for filename to load
|
|
|
|
WXDLLEXPORT wxString
|
1999-04-19 18:23:09 +00:00
|
|
|
wxLoadFileSelector(const wxChar *what,
|
|
|
|
const wxChar *extension,
|
|
|
|
const wxChar *default_name = (const wxChar *)NULL,
|
1999-01-26 11:51:12 +00:00
|
|
|
wxWindow *parent = (wxWindow *) NULL);
|
|
|
|
|
|
|
|
// Ask for filename to save
|
|
|
|
WXDLLEXPORT wxString
|
1999-04-19 18:23:09 +00:00
|
|
|
wxSaveFileSelector(const wxChar *what,
|
|
|
|
const wxChar *extension,
|
|
|
|
const wxChar *default_name = (const wxChar *) NULL,
|
1999-01-26 11:51:12 +00:00
|
|
|
wxWindow *parent = (wxWindow *) NULL);
|
|
|
|
|
1998-05-20 14:12:05 +00:00
|
|
|
#endif
|
1998-08-07 23:52:45 +00:00
|
|
|
// _WX_FILEDLG_H_
|