mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-03-06 17:01:39 +00:00
69 lines
2.3 KiB
C
69 lines
2.3 KiB
C
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// Name: wx/gtk1/filedlg.h
|
||
|
// Purpose:
|
||
|
// Author: Robert Roebling
|
||
|
// Copyright: (c) 1998 Robert Roebling
|
||
|
// Licence: wxWindows licence
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#ifndef __GTKFILEDLGH__
|
||
|
#define __GTKFILEDLGH__
|
||
|
|
||
|
#include "wx/generic/filedlgg.h"
|
||
|
|
||
|
//-------------------------------------------------------------------------
|
||
|
// wxFileDialog
|
||
|
//-------------------------------------------------------------------------
|
||
|
|
||
|
class WXDLLIMPEXP_CORE wxFileDialog: public wxGenericFileDialog
|
||
|
{
|
||
|
public:
|
||
|
wxFileDialog() { }
|
||
|
|
||
|
wxFileDialog(wxWindow *parent,
|
||
|
const wxString& message = wxASCII_STR(wxFileSelectorPromptStr),
|
||
|
const wxString& defaultDir = wxEmptyString,
|
||
|
const wxString& defaultFile = wxEmptyString,
|
||
|
const wxString& wildCard = wxASCII_STR(wxFileSelectorDefaultWildcardStr),
|
||
|
long style = wxFD_DEFAULT_STYLE,
|
||
|
const wxPoint& pos = wxDefaultPosition,
|
||
|
const wxSize& sz = wxDefaultSize,
|
||
|
const wxString& name = wxASCII_STR(wxFileDialogNameStr));
|
||
|
|
||
|
virtual ~wxFileDialog();
|
||
|
|
||
|
virtual wxString GetPath() const;
|
||
|
virtual void GetPaths(wxArrayString& paths) const;
|
||
|
virtual wxString GetDirectory() const;
|
||
|
virtual wxString GetFilename() const;
|
||
|
virtual void GetFilenames(wxArrayString& files) const;
|
||
|
virtual int GetFilterIndex() const;
|
||
|
|
||
|
virtual void SetMessage(const wxString& message);
|
||
|
virtual void SetPath(const wxString& path);
|
||
|
virtual void SetDirectory(const wxString& dir);
|
||
|
virtual void SetFilename(const wxString& name);
|
||
|
virtual void SetWildcard(const wxString& wildCard);
|
||
|
virtual void SetFilterIndex(int filterIndex);
|
||
|
|
||
|
virtual int ShowModal();
|
||
|
virtual bool Show( bool show = true );
|
||
|
|
||
|
//private:
|
||
|
bool m_destroyed_by_delete;
|
||
|
|
||
|
// override this from wxTLW since the native
|
||
|
// form doesn't have any m_wxwindow
|
||
|
virtual void DoSetSize(int x, int y,
|
||
|
int width, int height,
|
||
|
int sizeFlags = wxSIZE_AUTO);
|
||
|
|
||
|
|
||
|
private:
|
||
|
wxDECLARE_DYNAMIC_CLASS(wxFileDialog);
|
||
|
wxDECLARE_EVENT_TABLE();
|
||
|
void OnFakeOk( wxCommandEvent &event );
|
||
|
};
|
||
|
|
||
|
#endif // __GTKFILEDLGH__
|