1999-01-01 16:05:26 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: dirdlg.h
|
|
|
|
// Purpose: wxDirDialog class
|
2003-02-28 21:54:04 +00:00
|
|
|
// Author: Stefan Csomor
|
1999-01-01 16:05:26 +00:00
|
|
|
// Modified by:
|
2003-02-28 21:54:04 +00:00
|
|
|
// Created: 1998-01-01
|
1999-01-01 16:05:26 +00:00
|
|
|
// RCS-ID: $Id$
|
2003-02-28 21:54:04 +00:00
|
|
|
// Copyright: (c) Stefan Csomor
|
1999-01-01 16:05:26 +00:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DIRDLG_H_
|
|
|
|
#define _WX_DIRDLG_H_
|
|
|
|
|
2002-08-31 11:29:13 +00:00
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
1999-01-01 16:05:26 +00:00
|
|
|
#pragma interface "dirdlg.h"
|
|
|
|
#endif
|
|
|
|
|
2002-05-04 12:38:51 +00:00
|
|
|
class WXDLLEXPORT wxDirDialog : public wxDialog
|
1999-01-01 16:05:26 +00:00
|
|
|
{
|
|
|
|
public:
|
2002-05-04 12:38:51 +00:00
|
|
|
wxDirDialog(wxWindow *parent,
|
|
|
|
const wxString& message = wxDirSelectorPromptStr,
|
|
|
|
const wxString& defaultPath = _T(""),
|
|
|
|
long style = 0,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
const wxString& name = wxDirDialogNameStr);
|
1999-01-01 16:05:26 +00:00
|
|
|
|
2002-05-04 12:38:51 +00:00
|
|
|
void SetMessage(const wxString& message) { m_message = message; }
|
|
|
|
void SetPath(const wxString& path) { m_path = path; }
|
|
|
|
void SetStyle(long style) { m_dialogStyle = style; }
|
1999-01-01 16:05:26 +00:00
|
|
|
|
2002-05-04 12:38:51 +00:00
|
|
|
wxString GetMessage() const { return m_message; }
|
|
|
|
wxString GetPath() const { return m_path; }
|
|
|
|
long GetStyle() const { return m_dialogStyle; }
|
1999-01-01 16:05:26 +00:00
|
|
|
|
2002-05-04 12:38:51 +00:00
|
|
|
virtual int ShowModal();
|
1999-01-01 16:05:26 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
wxString m_message;
|
|
|
|
long m_dialogStyle;
|
|
|
|
wxWindow * m_parent;
|
|
|
|
wxString m_path;
|
2002-05-04 12:38:51 +00:00
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxDirDialog)
|
1999-01-01 16:05:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_DIRDLG_H_
|