]> git.saurik.com Git - wxWidgets.git/blame - src/msw/dirdlg.cpp
fixes for Raise() to work correctly with both top level and child windows
[wxWidgets.git] / src / msw / dirdlg.cpp
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: dirdlg.cpp
3// Purpose: wxDirDialog
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
3f2711d5 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
3f2711d5
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
1e6feb95 19
2bda0e17 20#ifdef __GNUG__
3f2711d5 21 #pragma implementation "dirdlg.h"
2bda0e17
KB
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
3f2711d5 28 #pragma hdrstop
2bda0e17
KB
29#endif
30
1e6feb95
VZ
31#if wxUSE_DIRDLG
32
c42404a5 33#if defined(__WIN95__) && !defined(__GNUWIN32_OLD__)
54744d3a 34
2bda0e17 35#ifndef WX_PRECOMP
3f2711d5
VZ
36 #include "wx/utils.h"
37 #include "wx/dialog.h"
38 #include "wx/dirdlg.h"
77902671 39 #include "wx/log.h"
2bda0e17
KB
40#endif
41
3f2711d5
VZ
42#include "wx/msw/private.h"
43
54744d3a 44#include "shlobj.h" // Win95 shell
2bda0e17 45
3f2711d5
VZ
46// ----------------------------------------------------------------------------
47// constants
48// ----------------------------------------------------------------------------
2bda0e17 49
3f2711d5 50#ifndef MAX_PATH
54744d3a 51 #define MAX_PATH 4096 // be generous
3f2711d5
VZ
52#endif
53
54// ----------------------------------------------------------------------------
55// wxWindows macros
56// ----------------------------------------------------------------------------
2bda0e17 57
54744d3a 58IMPLEMENT_CLASS(wxDirDialog, wxDialog)
2bda0e17 59
3f2711d5
VZ
60// ----------------------------------------------------------------------------
61// private functions prototypes
62// ----------------------------------------------------------------------------
63
64// free the parameter
65static void ItemListFree(LPITEMIDLIST pidl);
bfa2e032 66
3f2711d5
VZ
67// the callback proc for the dir dlg
68static int CALLBACK BrowseCallbackProc(HWND hwnd, UINT uMsg, LPARAM lp,
69 LPARAM pData);
bfa2e032 70
54744d3a 71
3f2711d5
VZ
72// ============================================================================
73// implementation
74// ============================================================================
bfa2e032 75
3f2711d5
VZ
76// ----------------------------------------------------------------------------
77// wxDirDialog
78// ----------------------------------------------------------------------------
79
80wxDirDialog::wxDirDialog(wxWindow *parent,
81 const wxString& message,
82 const wxString& defaultPath,
83 long WXUNUSED(style),
84 const wxPoint& WXUNUSED(pos))
2bda0e17
KB
85{
86 m_message = message;
2bda0e17 87 m_parent = parent;
3f2711d5 88 m_path = defaultPath;
5bd3a2da 89 m_path.Replace(_T("/"), _T("\\")); // SHBrowseForFolder doesn't like '/'s
2bda0e17
KB
90}
91
3f2711d5 92int wxDirDialog::ShowModal()
2bda0e17 93{
2bda0e17 94 BROWSEINFO bi;
3f2711d5
VZ
95 bi.hwndOwner = m_parent ? GetHwndOf(m_parent) : NULL;
96 bi.pidlRoot = NULL;
97 bi.pszDisplayName = NULL;
98 bi.lpszTitle = m_message.c_str();
99 bi.ulFlags = BIF_RETURNONLYFSDIRS | BIF_STATUSTEXT;
100 bi.lpfn = BrowseCallbackProc;
101 bi.lParam = (LPARAM)m_path.c_str(); // param for the callback
102
103 LPITEMIDLIST pidl = SHBrowseForFolder(&bi);
104
105 if ( bi.pidlRoot )
106 {
107 ItemListFree((LPITEMIDLIST)bi.pidlRoot);
108 }
109
110 if ( !pidl )
2bda0e17 111 {
3f2711d5 112 // Cancel button pressed
2bda0e17
KB
113 return wxID_CANCEL;
114 }
115
3f2711d5
VZ
116 BOOL ok = SHGetPathFromIDList(pidl, m_path.GetWriteBuf(MAX_PATH));
117 m_path.UngetWriteBuf();
118
119 ItemListFree(pidl);
120
121 if ( !ok )
122 {
f6bcfd97 123 wxLogLastError(wxT("SHGetPathFromIDList"));
3f2711d5 124
2bda0e17 125 return wxID_CANCEL;
2bda0e17 126 }
3f2711d5
VZ
127
128 return wxID_OK;
3f2711d5
VZ
129}
130
131// ----------------------------------------------------------------------------
132// private functions
133// ----------------------------------------------------------------------------
134
135static int CALLBACK
136BrowseCallbackProc(HWND hwnd, UINT uMsg, LPARAM lp, LPARAM pData)
137{
138 switch(uMsg)
139 {
140 case BFFM_INITIALIZED:
141 // sent immediately after initialisation and so we may set the
142 // initial selection here
143 //
144 // wParam = TRUE => lParam is a string and not a PIDL
145 SendMessage(hwnd, BFFM_SETSELECTION, TRUE, pData);
146 break;
147
148 case BFFM_SELCHANGED:
149 {
150 // Set the status window to the currently selected path.
151 TCHAR szDir[MAX_PATH];
152 if ( SHGetPathFromIDList((LPITEMIDLIST)lp, szDir) )
153 {
6a097cd6
JS
154 wxString strDir(szDir);
155 int maxChars = 40; // Have to truncate string else it displays incorrectly
156 if (strDir.Len() > (size_t) (maxChars - 3))
157 {
158 strDir = strDir.Right(maxChars - 3);
159 strDir = wxString(wxT("...")) + strDir;
160 }
161 SendMessage(hwnd, BFFM_SETSTATUSTEXT, 0, (LPARAM) (const wxChar*) strDir);
3f2711d5
VZ
162 }
163 }
164 break;
165
166 //case BFFM_VALIDATEFAILED: -- might be used to provide custom message
167 // if the user types in invalid dir name
168 }
169
170 return 0;
171}
172
173
174static void ItemListFree(LPITEMIDLIST pidl)
175{
176 if ( pidl )
177 {
178 LPMALLOC pMalloc;
179 SHGetMalloc(&pMalloc);
180 if ( pMalloc )
181 {
182 pMalloc->Free(pidl);
183 pMalloc->Release();
184 }
185 else
186 {
f6bcfd97 187 wxLogLastError(wxT("SHGetMalloc"));
3f2711d5
VZ
188 }
189 }
2bda0e17
KB
190}
191
54744d3a
VZ
192#else
193 #include "../generic/dirdlgg.cpp"
194#endif // compiler/platform on which the code here compiles
1e6feb95
VZ
195
196#endif // wxUSE_DIRDLG