wxOS2 updates for 10/5/99
[wxWidgets.git] / include / wx / os2 / filedlg.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: filedlg.h
3 // Purpose: wxFileDialog class
4 // Author: David Webster
5 // Modified by:
6 // Created: 10/05/99
7 // RCS-ID: $Id$
8 // Copyright: (c) David Webster
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 public:
32 wxFileDialog(wxWindow *parent, const wxString& message = wxFileSelectorPromptStr,
33 const wxString& defaultDir = "", const wxString& defaultFile = "", const wxString& wildCard = wxFileSelectorDefaultWildcardStr,
34 long style = 0, const wxPoint& pos = wxDefaultPosition);
35
36 inline void SetMessage(const wxString& message) { m_message = message; }
37 inline void SetPath(const wxString& path) { m_path = path; }
38 inline void SetDirectory(const wxString& dir) { m_dir = dir; }
39 inline void SetFilename(const wxString& name) { m_fileName = name; }
40 inline void SetWildcard(const wxString& wildCard) { m_wildCard = wildCard; }
41 inline void SetStyle(long style) { m_dialogStyle = style; }
42 inline void SetFilterIndex(int filterIndex) { m_filterIndex = filterIndex; }
43
44 inline wxString GetMessage() const { return m_message; }
45 inline wxString GetPath() const { return m_path; }
46 inline wxString GetDirectory() const { return m_dir; }
47 inline wxString GetFilename() const { return m_fileName; }
48 inline wxString GetWildcard() const { return m_wildCard; }
49 inline long GetStyle() const { return m_dialogStyle; }
50 inline int GetFilterIndex() const { return m_filterIndex ; }
51
52 int ShowModal();
53
54 protected:
55 wxString m_message;
56 long m_dialogStyle;
57 wxWindow * m_parent;
58 wxString m_dir;
59 wxString m_path; // Full path
60 wxString m_fileName;
61 wxString m_wildCard;
62 int m_filterIndex;
63 };
64
65 #define wxOPEN 0x0001
66 #define wxSAVE 0x0002
67 #define wxOVERWRITE_PROMPT 0x0004
68 #define wxHIDE_READONLY 0x0008
69 #define wxFILE_MUST_EXIST 0x0010
70
71 // File selector - backward compatibility
72 WXDLLEXPORT wxString wxFileSelector( const char *message = wxFileSelectorPromptStr
73 ,const char *default_path = NULL
74 ,const char *default_filename = NULL
75 ,const char *default_extension = NULL
76 ,const char *wildcard = wxFileSelectorDefaultWildcardStr
77 ,int flags = 0
78 ,wxWindow *parent = NULL
79 ,int x = -1
80 ,int y = -1
81 );
82
83 // An extended version of wxFileSelector
84 WXDLLEXPORT wxString wxFileSelectorEx( const char *message = wxFileSelectorPromptStr
85 ,const char *default_path = NULL
86 ,const char *default_filename = NULL
87 ,int *indexDefaultExtension = NULL
88 ,const char *wildcard = wxFileSelectorDefaultWildcardStr
89 ,int flags = 0
90 ,wxWindow *parent = NULL
91 ,int x = -1
92 ,int y = -1
93 );
94
95 // Generic file load dialog
96 WXDLLEXPORT wxString wxLoadFileSelector( const char *what
97 ,const char *extension
98 ,const char *default_name = NULL
99 ,wxWindow *parent = NULL
100 );
101
102 // Generic file save dialog
103 WXDLLEXPORT wxString wxSaveFileSelector( const char *what
104 ,const char *extension
105 ,const char *default_name = NULL
106 ,wxWindow *parent = NULL
107 );
108
109 #endif
110 // _WX_FILEDLG_H_