]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/os2/dirdlg.cpp
Fix wxGrid::AutoSizeColOrRow() logic for multicells.
[wxWidgets.git] / src / os2 / dirdlg.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/os2/dirdlg.cpp
3// Purpose: wxDirDialog
4// Author: David Webster
5// Modified by:
6// Created: 10/14/99
7// RCS-ID: $Id$
8// Copyright: (c) David Webster
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#include "wx/dirdlg.h"
16
17#ifndef WX_PRECOMP
18 #include <stdio.h>
19 #include "wx/utils.h"
20 #include "wx/dialog.h"
21#endif
22
23#include "wx/os2/private.h"
24
25#include <stdlib.h>
26#include <string.h>
27
28#define wxDIALOG_DEFAULT_X 300
29#define wxDIALOG_DEFAULT_Y 300
30
31IMPLEMENT_CLASS(wxDirDialog, wxDialog)
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_windowStyle = style;
39 m_parent = parent;
40 m_path = defaultPath;
41}
42
43int wxDirDialog::ShowModal()
44{
45 // TODO
46 return wxID_CANCEL;
47}