• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/classic/
1/////////////////////////////////////////////////////////////////////////////
2// Name:        dirdlg.h
3// Purpose:     wxDirDialog class
4// Author:      Stefan Csomor
5// Modified by:
6// Created:     1998-01-01
7// RCS-ID:      $Id: dirdlg.h 39079 2006-05-06 20:10:11Z VZ $
8// Copyright:   (c) Stefan Csomor
9// Licence:     wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_DIRDLG_H_
13#define _WX_DIRDLG_H_
14
15class WXDLLEXPORT wxDirDialog : public wxDirDialogBase
16{
17public:
18    wxDirDialog(wxWindow *parent,
19                const wxString& message = wxDirSelectorPromptStr,
20                const wxString& defaultPath = _T(""),
21                long style = wxDD_DEFAULT_STYLE,
22                const wxPoint& pos = wxDefaultPosition,
23                const wxSize& size = wxDefaultSize,
24                const wxString& name = wxDirDialogNameStr);
25
26    virtual int ShowModal();
27
28protected:
29    wxWindow *  m_parent;
30
31    DECLARE_DYNAMIC_CLASS(wxDirDialog)
32};
33
34#endif
35    // _WX_DIRDLG_H_
36