2004-10-19 13:40:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/palmos/dirdlg.h
|
|
|
|
// Purpose: wxDirDialog class
|
2005-01-18 21:14:27 +00:00
|
|
|
// Author: William Osborne - minimal working wxPalmOS port
|
2004-10-19 13:40:30 +00:00
|
|
|
// Modified by:
|
|
|
|
// Created: 10/13/04
|
2005-01-18 21:14:27 +00:00
|
|
|
// RCS-ID: $Id$
|
2004-10-19 13:40:30 +00:00
|
|
|
// Copyright: (c) William Osborne
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DIRDLG_H_
|
|
|
|
#define _WX_DIRDLG_H_
|
|
|
|
|
2006-04-30 09:44:29 +00:00
|
|
|
class WXDLLEXPORT wxDirDialog : public wxDirDialogBase
|
2004-10-19 13:40:30 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxDirDialog(wxWindow *parent,
|
|
|
|
const wxString& message = wxDirSelectorPromptStr,
|
|
|
|
const wxString& defaultPath = wxEmptyString,
|
|
|
|
long style = 0,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
const wxString& name = wxDirDialogNameStr);
|
|
|
|
|
|
|
|
void SetPath(const wxString& path);
|
|
|
|
|
|
|
|
virtual int ShowModal();
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxDirDialog)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_DIRDLG_H_
|