c61f4f6dbd
added demo for it in the sample and documented 2. wxMimeTypeManager works a bit better under Windows (doesn't ignore the extensions without filetypes) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4850 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
33 lines
624 B
C
33 lines
624 B
C
#ifndef _WX_FILEDLG_H_BASE_
|
|
#define _WX_FILEDLG_H_BASE_
|
|
|
|
enum
|
|
{
|
|
wxOPEN = 1,
|
|
wxSAVE = 2,
|
|
wxOVERWRITE_PROMPT = 4,
|
|
wxHIDE_READONLY = 8,
|
|
wxFILE_MUST_EXIST = 16,
|
|
wxMULTIPLE = 32
|
|
};
|
|
|
|
#if defined(__WXMSW__)
|
|
#include "wx/msw/filedlg.h"
|
|
#elif defined(__WXMOTIF__)
|
|
#include "wx/motif/filedlg.h"
|
|
#elif defined(__WXGTK__)
|
|
#include "wx/generic/filedlgg.h"
|
|
#elif defined(__WXQT__)
|
|
#include "wx/qt/filedlg.h"
|
|
#elif defined(__WXMAC__)
|
|
#include "wx/mac/filedlg.h"
|
|
#elif defined(__WXPM__)
|
|
#include "wx/os2/filedlg.h"
|
|
#elif defined(__WXSTUBS__)
|
|
#include "wx/stubs/filedlg.h"
|
|
#endif
|
|
|
|
|
|
#endif
|
|
// _WX_FILEDLG_H_BASE_
|