1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2011-03-20 00:14:35 +00:00
|
|
|
// Name: wx/os2/dirdlg.h
|
1999-07-29 05:11:30 +00:00
|
|
|
// Purpose: wxDirDialog class
|
1999-10-14 22:36:24 +00:00
|
|
|
// Author: David Webster
|
1999-07-29 05:11:30 +00:00
|
|
|
// Modified by:
|
1999-10-14 22:36:24 +00:00
|
|
|
// Created: 10/14/99
|
1999-07-29 05:11:30 +00:00
|
|
|
// RCS-ID: $Id$
|
1999-10-14 22:36:24 +00:00
|
|
|
// Copyright: (c) David Webster
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DIRDLG_H_
|
|
|
|
#define _WX_DIRDLG_H_
|
|
|
|
|
|
|
|
#include "wx/dialog.h"
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
WXDLLIMPEXP_DATA_CORE(extern const wxChar) wxFileSelectorPromptStr[];
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxDirDialog: public wxDirDialogBase
|
1999-07-29 05:11:30 +00:00
|
|
|
{
|
2006-05-06 20:10:11 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxDirDialog)
|
1999-07-29 05:11:30 +00:00
|
|
|
public:
|
|
|
|
wxDirDialog(wxWindow *parent, const wxString& message = wxFileSelectorPromptStr,
|
|
|
|
const wxString& defaultPath = "",
|
|
|
|
long style = 0, const wxPoint& pos = wxDefaultPosition);
|
|
|
|
|
|
|
|
int ShowModal();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxWindow * m_parent;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_DIRDLG_H_
|