]> git.saurik.com Git - wxWidgets.git/blame - src/os2/dirdlg.cpp
docopydocs is not needed for this script.
[wxWidgets.git] / src / os2 / dirdlg.cpp
CommitLineData
0e320a79 1/////////////////////////////////////////////////////////////////////////////
7520f3da 2// Name: src/os2/dirdlg.cpp
0e320a79 3// Purpose: wxDirDialog
fb46a9a6 4// Author: David Webster
0e320a79 5// Modified by:
fb46a9a6 6// Created: 10/14/99
0e320a79 7// RCS-ID: $Id$
fb46a9a6 8// Copyright: (c) David Webster
65571936 9// Licence: wxWindows licence
0e320a79
DW
10/////////////////////////////////////////////////////////////////////////////
11
fb46a9a6
DW
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
0e320a79 14
fb46a9a6 15#ifndef WX_PRECOMP
7520f3da
WS
16 #include <stdio.h>
17 #include "wx/utils.h"
18 #include "wx/dialog.h"
19 #include "wx/dirdlg.h"
fb46a9a6 20#endif
0e320a79 21
fb46a9a6 22#include "wx/os2/private.h"
0e320a79
DW
23#include "wx/cmndata.h"
24
fb46a9a6
DW
25#include <stdlib.h>
26#include <string.h>
27
28#define wxDIALOG_DEFAULT_X 300
29#define wxDIALOG_DEFAULT_Y 300
30
0e320a79 31IMPLEMENT_CLASS(wxDirDialog, wxDialog)
0e320a79
DW
32
33wxDirDialog::wxDirDialog(wxWindow *parent, const wxString& message,
34 const wxString& defaultPath,
35 long style, const wxPoint& pos)
36{
37 m_message = message;
38 m_dialogStyle = style;
39 m_parent = parent;
fb46a9a6 40 m_path = defaultPath;
0e320a79
DW
41}
42
43int wxDirDialog::ShowModal()
44{
45 // TODO
fb46a9a6 46 return wxID_CANCEL;
0e320a79 47}