2011-03-20 18:05:19 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/osx/dirdlg.h
|
|
|
|
// Purpose: wxDirDialog class
|
|
|
|
// Author: Stefan Csomor
|
|
|
|
// Modified by:
|
|
|
|
// Created: 1998-01-01
|
|
|
|
// Copyright: (c) Stefan Csomor
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DIRDLG_H_
|
|
|
|
#define _WX_DIRDLG_H_
|
|
|
|
|
2013-09-22 22:44:55 +00:00
|
|
|
#if wxOSX_USE_COCOA
|
|
|
|
DECLARE_WXCOCOA_OBJC_CLASS(NSOpenPanel);
|
|
|
|
#endif
|
|
|
|
|
2011-03-20 18:05:19 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxDirDialog : public wxDirDialogBase
|
|
|
|
{
|
|
|
|
public:
|
2013-09-22 22:44:55 +00:00
|
|
|
wxDirDialog() { Init(); }
|
|
|
|
|
2011-03-20 18:05:19 +00:00
|
|
|
wxDirDialog(wxWindow *parent,
|
2013-09-22 22:44:55 +00:00
|
|
|
const wxString& message = wxDirSelectorPromptStr,
|
|
|
|
const wxString& defaultPath = wxT(""),
|
|
|
|
long style = wxDD_DEFAULT_STYLE,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
const wxString& name = wxDirDialogNameStr)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
|
|
|
|
Create(parent,message,defaultPath,style,pos,size,name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Create(wxWindow *parent,
|
2011-03-20 18:05:19 +00:00
|
|
|
const wxString& message = wxDirSelectorPromptStr,
|
|
|
|
const wxString& defaultPath = wxT(""),
|
|
|
|
long style = wxDD_DEFAULT_STYLE,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
const wxString& name = wxDirDialogNameStr);
|
|
|
|
|
2012-03-18 01:12:27 +00:00
|
|
|
#if wxOSX_USE_COCOA
|
|
|
|
~wxDirDialog();
|
|
|
|
#endif
|
|
|
|
|
2011-03-20 18:05:19 +00:00
|
|
|
virtual int ShowModal();
|
|
|
|
|
|
|
|
#if wxOSX_USE_COCOA
|
|
|
|
virtual void ShowWindowModal();
|
|
|
|
virtual void ModalFinishedCallback(void* panel, int returnCode);
|
|
|
|
#endif
|
|
|
|
|
2013-09-22 22:44:55 +00:00
|
|
|
private:
|
2012-03-18 01:12:27 +00:00
|
|
|
#if wxOSX_USE_COCOA
|
2013-09-22 22:44:55 +00:00
|
|
|
// Create and initialize NSOpenPanel that we use in both ShowModal() and
|
|
|
|
// ShowWindowModal().
|
|
|
|
WX_NSOpenPanel OSXCreatePanel() const;
|
|
|
|
|
2012-03-18 01:12:27 +00:00
|
|
|
WX_NSObject m_sheetDelegate;
|
|
|
|
#endif
|
2013-09-22 22:44:55 +00:00
|
|
|
|
|
|
|
// Common part of all ctors.
|
|
|
|
void Init();
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxDirDialog);
|
2011-03-20 18:05:19 +00:00
|
|
|
};
|
|
|
|
|
2013-09-22 22:44:55 +00:00
|
|
|
#endif // _WX_DIRDLG_H_
|