]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/filedlg.h
fixed GetMargins() compilation
[wxWidgets.git] / include / wx / mac / filedlg.h
CommitLineData
0dbd6262
SC
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
25WXDLLEXPORT_DATA(extern const char*) wxFileSelectorPromptStr;
26WXDLLEXPORT_DATA(extern const char*) wxFileSelectorDefaultWildcardStr;
27
28class WXDLLEXPORT wxFileDialog: public wxDialog
29{
30DECLARE_DYNAMIC_CLASS(wxFileDialog)
31protected:
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;
5b781a67
SC
38 wxArrayString m_fileNames;
39 wxArrayString m_paths;
0dbd6262
SC
40 wxString m_wildCard;
41 int m_filterIndex;
42public:
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; }
5b781a67
SC
59 void GetPaths(wxArrayString& paths) const { paths = m_paths; }
60 void GetFilenames(wxArrayString& files) const { files = m_fileNames; }
0dbd6262
SC
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();
a5b7b1ed
SC
66
67 // not supported for file dialog, RR
68 virtual void DoSetSize(int x, int y,
69 int width, int height,
70 int sizeFlags = wxSIZE_AUTO) {}
71
0dbd6262
SC
72};
73
74#define wxOPEN 0x0001
75#define wxSAVE 0x0002
76#define wxOVERWRITE_PROMPT 0x0004
77#define wxHIDE_READONLY 0x0008
78#define wxFILE_MUST_EXIST 0x0010
79
80// File selector - backward compatibility
169935ad 81WXDLLEXPORT wxString wxFileSelector(const char *message = wxFileSelectorPromptStr, const char *default_path = NULL,
0dbd6262
SC
82 const char *default_filename = NULL, const char *default_extension = NULL,
83 const char *wildcard = wxFileSelectorDefaultWildcardStr, int flags = 0,
84 wxWindow *parent = NULL, int x = -1, int y = -1);
85
86// An extended version of wxFileSelector
169935ad 87WXDLLEXPORT wxString wxFileSelectorEx(const char *message = wxFileSelectorPromptStr, const char *default_path = NULL,
0dbd6262
SC
88 const char *default_filename = NULL, int *indexDefaultExtension = NULL,
89 const char *wildcard = wxFileSelectorDefaultWildcardStr, int flags = 0,
90 wxWindow *parent = NULL, int x = -1, int y = -1);
91
92// Generic file load dialog
169935ad 93WXDLLEXPORT wxString wxLoadFileSelector(const char *what, const char *extension, const char *default_name = NULL, wxWindow *parent = NULL);
0dbd6262
SC
94
95// Generic file save dialog
169935ad
SC
96WXDLLEXPORT wxString wxSaveFileSelector(const char *what, const char *extension, const char *default_name = NULL, wxWindow *parent = NULL);
97
0dbd6262
SC
98#endif
99 // _WX_FILEDLG_H_