2009-01-17 05:43:43 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: dirdlg.h
|
|
|
|
// Purpose: wxDirDialog class
|
|
|
|
// Author: Stefan Csomor
|
|
|
|
// Modified by:
|
|
|
|
// Created: 1998-01-01
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Stefan Csomor
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DIRDLG_H_
|
|
|
|
#define _WX_DIRDLG_H_
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_CORE wxDirDialog : public wxDirDialogBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxDirDialog(wxWindow *parent,
|
|
|
|
const wxString& message = wxDirSelectorPromptStr,
|
2009-07-23 16:30:22 -04:00
|
|
|
const wxString& defaultPath = wxT(""),
|
2009-01-17 05:43:43 -05:00
|
|
|
long style = wxDD_DEFAULT_STYLE,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
const wxString& name = wxDirDialogNameStr);
|
|
|
|
|
|
|
|
virtual int ShowModal();
|
2010-09-30 07:44:45 -04:00
|
|
|
|
2010-01-27 23:06:23 -05:00
|
|
|
#if wxOSX_USE_COCOA
|
|
|
|
virtual void ShowWindowModal();
|
|
|
|
virtual void ModalFinishedCallback(void* panel, int returnCode);
|
2010-09-30 07:44:45 -04:00
|
|
|
#endif
|
2009-01-17 05:43:43 -05:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxDirDialog)
|
|
|
|
};
|
|
|
|
|
2008-06-11 12:30:48 -04:00
|
|
|
#endif
|
2009-01-17 05:43:43 -05:00
|
|
|
// _WX_DIRDLG_H_
|