2004-03-23 12:38:49 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: dirdlg.h
|
|
|
|
// Purpose: wxDirDialog class
|
|
|
|
// Author: Stefan Csomor
|
|
|
|
// Modified by:
|
|
|
|
// Created: 1998-01-01
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Stefan Csomor
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2004-03-23 12:38:49 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DIRDLG_H_
|
|
|
|
#define _WX_DIRDLG_H_
|
|
|
|
|
2006-04-30 05:44:29 -04:00
|
|
|
class WXDLLEXPORT wxDirDialog : public wxDirDialogBase
|
2004-03-23 12:38:49 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxDirDialog(wxWindow *parent,
|
|
|
|
const wxString& message = wxDirSelectorPromptStr,
|
|
|
|
const wxString& defaultPath = _T(""),
|
2004-08-13 19:56:57 -04:00
|
|
|
long style = wxDD_DEFAULT_STYLE,
|
2004-03-23 12:38:49 -05:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
const wxString& name = wxDirDialogNameStr);
|
|
|
|
|
|
|
|
virtual int ShowModal();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxWindow * m_parent;
|
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxDirDialog)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_DIRDLG_H_
|