]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/filedlg.h
Beginnings of BLOB support - Do not use BLOBs yet though, as they do not work, but...
[wxWidgets.git] / include / wx / mac / filedlg.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: filedlg.h
3 // Purpose: wxFileDialog class
4 // Author: AUTHOR
5 // Modified by:
6 // Created: ??/??/98
7 // RCS-ID: $Id$
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_FILEDLG_H_
13 #define _WX_FILEDLG_H_
14
15 #ifdef __GNUG__
16 #pragma interface "filedlg.h"
17 #endif
18
19 #include "wx/dialog.h"
20
21 /*
22 * File selector
23 */
24
25 WXDLLEXPORT_DATA(extern const char*) wxFileSelectorPromptStr;
26 WXDLLEXPORT_DATA(extern const char*) wxFileSelectorDefaultWildcardStr;
27
28 class WXDLLEXPORT wxFileDialog: public wxDialog
29 {
30 DECLARE_DYNAMIC_CLASS(wxFileDialog)
31 protected:
32 wxString m_message;
33 long m_dialogStyle;
34 wxWindow * m_parent;
35 wxString m_dir;
36 wxString m_path; // Full path
37 wxString m_fileName;
38 wxArrayString m_fileNames;
39 wxArrayString m_paths;
40 wxString m_wildCard;
41 int m_filterIndex;
42 public:
43 wxFileDialog(wxWindow *parent, const wxString& message = wxFileSelectorPromptStr,
44 const wxString& defaultDir = "", const wxString& defaultFile = "", const wxString& wildCard = wxFileSelectorDefaultWildcardStr,
45 long style = 0, const wxPoint& pos = wxDefaultPosition);
46
47 inline void SetMessage(const wxString& message) { m_message = message; }
48 inline void SetPath(const wxString& path) { m_path = path; }
49 inline void SetDirectory(const wxString& dir) { m_dir = dir; }
50 inline void SetFilename(const wxString& name) { m_fileName = name; }
51 inline void SetWildcard(const wxString& wildCard) { m_wildCard = wildCard; }
52 inline void SetStyle(long style) { m_dialogStyle = style; }
53 inline void SetFilterIndex(int filterIndex) { m_filterIndex = filterIndex; }
54
55 inline wxString GetMessage() const { return m_message; }
56 inline wxString GetPath() const { return m_path; }
57 inline wxString GetDirectory() const { return m_dir; }
58 inline wxString GetFilename() const { return m_fileName; }
59 void GetPaths(wxArrayString& paths) const { paths = m_paths; }
60 void GetFilenames(wxArrayString& files) const { files = m_fileNames; }
61 inline wxString GetWildcard() const { return m_wildCard; }
62 inline long GetStyle() const { return m_dialogStyle; }
63 inline int GetFilterIndex() const { return m_filterIndex ; }
64
65 int ShowModal();
66 };
67
68 #define wxOPEN 0x0001
69 #define wxSAVE 0x0002
70 #define wxOVERWRITE_PROMPT 0x0004
71 #define wxHIDE_READONLY 0x0008
72 #define wxFILE_MUST_EXIST 0x0010
73
74 // File selector - backward compatibility
75 WXDLLEXPORT wxString wxFileSelector(const char *message = wxFileSelectorPromptStr, const char *default_path = NULL,
76 const char *default_filename = NULL, const char *default_extension = NULL,
77 const char *wildcard = wxFileSelectorDefaultWildcardStr, int flags = 0,
78 wxWindow *parent = NULL, int x = -1, int y = -1);
79
80 // An extended version of wxFileSelector
81 WXDLLEXPORT wxString wxFileSelectorEx(const char *message = wxFileSelectorPromptStr, const char *default_path = NULL,
82 const char *default_filename = NULL, int *indexDefaultExtension = NULL,
83 const char *wildcard = wxFileSelectorDefaultWildcardStr, int flags = 0,
84 wxWindow *parent = NULL, int x = -1, int y = -1);
85
86 // Generic file load dialog
87 WXDLLEXPORT wxString wxLoadFileSelector(const char *what, const char *extension, const char *default_name = NULL, wxWindow *parent = NULL);
88
89 // Generic file save dialog
90 WXDLLEXPORT wxString wxSaveFileSelector(const char *what, const char *extension, const char *default_name = NULL, wxWindow *parent = NULL);
91
92 #endif
93 // _WX_FILEDLG_H_