]> git.saurik.com Git - wxWidgets.git/blame - src/motif/filedlg.cpp
TRUE/FALSE -> true/false
[wxWidgets.git] / src / motif / filedlg.cpp
CommitLineData
4bb6408c
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: filedlg.cpp
3// Purpose: wxFileDialog
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "filedlg.h"
14#endif
15
bcd055ae
JJ
16#ifdef __VMS
17#define XtDisplay XTDISPLAY
18#define XtParent XTPARENT
19#define XtWindow XTWINDOW
20#endif
21
4bb6408c
JS
22#include "wx/defs.h"
23#include "wx/utils.h"
24#include "wx/dialog.h"
25#include "wx/filedlg.h"
26#include "wx/intl.h"
dfad0599 27#include "wx/app.h"
a91b47e8 28#include "wx/settings.h"
a4e64fb5 29#include "wx/tokenzr.h"
4bb6408c 30
338dd992
JJ
31#ifdef __VMS__
32#pragma message disable nosimpint
33#endif
f97c9854 34#include <Xm/Xm.h>
dfad0599
JS
35#include <Xm/MwmUtil.h>
36#include <Xm/Label.h>
37#include <Xm/BulletinB.h>
38#include <Xm/Frame.h>
39#include <Xm/Text.h>
40#include <Xm/DialogS.h>
41#include <Xm/FileSB.h>
42#include <Xm/RowColumn.h>
43#include <Xm/LabelG.h>
338dd992
JJ
44#ifdef __VMS__
45#pragma message enable nosimpint
46#endif
f97c9854 47
ee1aaf99
JS
48#include "wx/motif/private.h"
49
4bb6408c 50IMPLEMENT_CLASS(wxFileDialog, wxDialog)
4bb6408c 51
dfe1eee3 52#define DEFAULT_FILE_SELECTOR_SIZE 0
2d120f83
JS
53// Let Motif defines the size of File
54// Selector Box (if 1), or fix it to
55// wxFSB_WIDTH x wxFSB_HEIGHT (if 0)
dfe1eee3 56#define wxFSB_WIDTH 600
dfad0599
JS
57#define wxFSB_HEIGHT 500
58
59
7482b220 60wxString wxFileSelector(const char *title,
4bb6408c
JS
61 const char *defaultDir, const char *defaultFileName,
62 const char *defaultExtension, const char *filter, int flags,
63 wxWindow *parent, int x, int y)
64{
65 // If there's a default extension specified but no filter, we create a suitable
66 // filter.
dfe1eee3 67
4bb6408c
JS
68 wxString filter2("");
69 if ( defaultExtension && !filter )
70 filter2 = wxString("*.") + wxString(defaultExtension) ;
71 else if ( filter )
72 filter2 = filter;
dfe1eee3 73
4bb6408c
JS
74 wxString defaultDirString;
75 if (defaultDir)
76 defaultDirString = defaultDir;
77 else
78 defaultDirString = "";
dfe1eee3 79
4bb6408c
JS
80 wxString defaultFilenameString;
81 if (defaultFileName)
82 defaultFilenameString = defaultFileName;
83 else
84 defaultFilenameString = "";
dfe1eee3 85
4bb6408c 86 wxFileDialog fileDialog(parent, title, defaultDirString, defaultFilenameString, filter2, flags, wxPoint(x, y));
dfe1eee3 87
4bb6408c
JS
88 if ( fileDialog.ShowModal() == wxID_OK )
89 {
7482b220 90 return fileDialog.GetPath();
4bb6408c
JS
91 }
92 else
7482b220 93 return wxEmptyString;
4bb6408c
JS
94}
95
7482b220 96wxString wxFileSelectorEx(const char *title,
4bb6408c
JS
97 const char *defaultDir,
98 const char *defaultFileName,
99 int* defaultFilterIndex,
100 const char *filter,
101 int flags,
102 wxWindow* parent,
103 int x,
104 int y)
dfe1eee3 105
4bb6408c
JS
106{
107 wxFileDialog fileDialog(parent, title ? title : "", defaultDir ? defaultDir : "",
108 defaultFileName ? defaultFileName : "", filter ? filter : "", flags, wxPoint(x, y));
dfe1eee3 109
4bb6408c
JS
110 if ( fileDialog.ShowModal() == wxID_OK )
111 {
112 *defaultFilterIndex = fileDialog.GetFilterIndex();
c330a2cf 113 return fileDialog.GetPath();
4bb6408c
JS
114 }
115 else
7482b220 116 return wxEmptyString;
4bb6408c
JS
117}
118
dfad0599
JS
119wxString wxFileDialog::m_fileSelectorAnswer = "";
120bool wxFileDialog::m_fileSelectorReturned = FALSE;
f97c9854 121
a4e64fb5
MB
122static void wxFileSelClose(Widget WXUNUSED(w),
123 void* WXUNUSED(client_data),
124 XmAnyCallbackStruct *WXUNUSED(call_data))
125{
126 wxFileDialog::m_fileSelectorAnswer = "";
127 wxFileDialog::m_fileSelectorReturned = TRUE;
128}
129
dfe1eee3 130void wxFileSelCancel( Widget WXUNUSED(fs), XtPointer WXUNUSED(client_data),
2d120f83 131 XmFileSelectionBoxCallbackStruct *WXUNUSED(cbs) )
f97c9854 132{
2d120f83
JS
133 wxFileDialog::m_fileSelectorAnswer = "";
134 wxFileDialog::m_fileSelectorReturned = TRUE;
f97c9854
JS
135}
136
f9e02ac7 137void wxFileSelOk(Widget WXUNUSED(fs), XtPointer WXUNUSED(client_data), XmFileSelectionBoxCallbackStruct *cbs)
f97c9854 138{
2d120f83
JS
139 char *filename = NULL;
140 if (!XmStringGetLtoR(cbs->value, XmSTRING_DEFAULT_CHARSET, &filename)) {
141 wxFileDialog::m_fileSelectorAnswer = "";
142 wxFileDialog::m_fileSelectorReturned = TRUE;
143 } else {
144 if (filename) {
145 wxFileDialog::m_fileSelectorAnswer = filename;
146 XtFree(filename);
147 }
148 wxFileDialog::m_fileSelectorReturned = TRUE;
f97c9854 149 }
f97c9854
JS
150}
151
a4e64fb5
MB
152static wxString ParseWildCard( const wxString& wild )
153{
02a48e3b 154#ifdef __WXDEBUG__
a4e64fb5
MB
155 static const wxChar* msg =
156 _T("Motif file dialog does not understand this ")
157 _T("wildcard syntax");
02a48e3b 158#endif
a4e64fb5
MB
159
160 wxStringTokenizer tok( wild, _T("|") );
161
162 wxCHECK_MSG( tok.CountTokens() <= 2, _T("*.*"), msg );
163
164 if( tok.CountTokens() == 1 ) return wild;
165
166 // CountTokens == 2
167 tok.GetNextToken();
168 wxStringTokenizer tok2( tok.GetNextToken(), _T(";") );
169
170 wxCHECK_MSG( tok2.CountTokens() == 1, tok2.GetNextToken(), msg );
171 return tok2.GetNextToken();
172}
173
dfad0599 174wxFileDialog::wxFileDialog(wxWindow *parent, const wxString& message,
2d120f83
JS
175 const wxString& defaultDir, const wxString& defaultFileName, const wxString& wildCard,
176 long style, const wxPoint& pos)
dfad0599
JS
177{
178 m_message = message;
179 m_dialogStyle = style;
180 m_parent = parent;
181 m_path = "";
182 m_fileName = defaultFileName;
183 m_dir = defaultDir;
184 m_wildCard = wildCard;
185 m_filterIndex = 1;
186 m_pos = pos;
187}
f97c9854 188
af111fc3 189static void wxChangeListBoxColours(wxWindow* WXUNUSED(win), Widget widget)
a91b47e8 190{
a8680e3e 191 wxDoChangeBackgroundColour((WXWidget) widget, *wxWHITE);
a91b47e8
JS
192
193 // Change colour of the scrolled areas of the listboxes
194 Widget listParent = XtParent (widget);
d4d46b56 195#if 0
a8680e3e 196 wxDoChangeBackgroundColour((WXWidget) listParent, *wxWHITE, TRUE);
d4d46b56 197#endif
a91b47e8
JS
198
199 Widget hsb = (Widget) 0;
200 Widget vsb = (Widget) 0;
201 XtVaGetValues (listParent,
202 XmNhorizontalScrollBar, &hsb,
203 XmNverticalScrollBar, &vsb,
204 NULL);
dfe1eee3 205
a91b47e8
JS
206 /* TODO: should scrollbars be affected? Should probably have separate
207 * function to change them (by default, taken from wxSystemSettings)
208 */
a756f210 209 wxColour backgroundColour = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
a8680e3e
MB
210 wxDoChangeBackgroundColour((WXWidget) hsb, backgroundColour, TRUE);
211 wxDoChangeBackgroundColour((WXWidget) vsb, backgroundColour, TRUE);
a91b47e8
JS
212
213 if (hsb)
214 XtVaSetValues (hsb,
215 XmNtroughColor, backgroundColour.AllocColour(XtDisplay(hsb)),
216 NULL);
217 if (vsb)
218 XtVaSetValues (vsb,
219 XmNtroughColor, backgroundColour.AllocColour(XtDisplay(vsb)),
220 NULL);
221}
222
dfad0599 223int wxFileDialog::ShowModal()
f97c9854 224{
2d120f83 225 wxBeginBusyCursor();
dfe1eee3 226
2d120f83
JS
227 // static char fileBuf[512];
228 Widget parentWidget = (Widget) 0;
229 if (m_parent)
2d120f83 230 parentWidget = (Widget) m_parent->GetTopWidget();
f97c9854 231 else
2d120f83 232 parentWidget = (Widget) wxTheApp->GetTopLevelWidget();
ee1aaf99
JS
233 // prepare the arg list
234 Arg args[10];
235 int ac = 0;
236
237 wxComputeColours (XtDisplay(parentWidget), & m_backgroundColour,
238 (wxColour*) NULL);
239
240 XtSetArg(args[ac], XmNbackground, g_itemColors[wxBACK_INDEX].pixel); ac++;
241 XtSetArg(args[ac], XmNtopShadowColor, g_itemColors[wxTOPS_INDEX].pixel); ac++;
242 XtSetArg(args[ac], XmNbottomShadowColor, g_itemColors[wxBOTS_INDEX].pixel); ac++;
243 XtSetArg(args[ac], XmNforeground, g_itemColors[wxFORE_INDEX].pixel); ac++;
244
dfe1eee3 245
ee1aaf99 246 Widget fileSel = XmCreateFileSelectionDialog(parentWidget, "file_selector", args, ac);
2d120f83 247 XtUnmanageChild(XmFileSelectionBoxGetChild(fileSel, XmDIALOG_HELP_BUTTON));
a91b47e8
JS
248
249 Widget filterWidget = XmFileSelectionBoxGetChild(fileSel, XmDIALOG_FILTER_TEXT);
250 Widget selectionWidget = XmFileSelectionBoxGetChild(fileSel, XmDIALOG_TEXT);
251 Widget dirListWidget = XmFileSelectionBoxGetChild(fileSel, XmDIALOG_DIR_LIST);
252 Widget fileListWidget = XmFileSelectionBoxGetChild(fileSel, XmDIALOG_LIST);
dfe1eee3
VZ
253
254 // code using these vars disabled
255#if 0
a91b47e8
JS
256 Widget okWidget = XmFileSelectionBoxGetChild(fileSel, XmDIALOG_OK_BUTTON);
257 Widget applyWidget = XmFileSelectionBoxGetChild(fileSel, XmDIALOG_APPLY_BUTTON);
258 Widget cancelWidget = XmFileSelectionBoxGetChild(fileSel, XmDIALOG_CANCEL_BUTTON);
dfe1eee3
VZ
259#endif
260
a91b47e8 261
2d120f83 262 Widget shell = XtParent(fileSel);
dfe1eee3 263
2d120f83 264 if (!m_message.IsNull())
d3a80c92
MB
265 XtVaSetValues(shell,
266 XmNtitle, wxConstCast(m_message.c_str(), char),
267 NULL);
dfe1eee3 268
2d120f83 269 wxString entirePath("");
dfe1eee3 270
2d120f83
JS
271 if ((m_dir != "") && (m_fileName != ""))
272 {
273 entirePath = m_dir + wxString("/") + m_fileName;
274 }
275 else if ((m_dir != "") && (m_fileName == ""))
276 {
277 entirePath = m_dir + wxString("/");
278 }
279 else if ((m_dir == "") && (m_fileName != ""))
280 {
281 entirePath = m_fileName;
282 }
dfe1eee3 283
2d120f83
JS
284 if (m_wildCard != "")
285 {
a4e64fb5
MB
286 // return something understandable by Motif
287 wxString wildCard = ParseWildCard( m_wildCard );
288 wxString filter;
2d120f83 289 if (m_dir != "")
a4e64fb5 290 filter = m_dir + wxString("/") + wildCard;
2d120f83 291 else
a4e64fb5 292 filter = wildCard;
dfe1eee3 293
d3a80c92 294 XmTextSetString(filterWidget, wxConstCast(filter.c_str(), char));
2d120f83
JS
295 XmFileSelectionDoSearch(fileSel, NULL);
296 }
dfe1eee3 297
2d120f83
JS
298 // Suggested by Terry Gitnick, 16/9/97, because of change in Motif
299 // file selector on Solaris 1.5.1.
300 if ( m_dir != "" )
301 {
d4d46b56 302 wxXmString thePath( m_dir );
dfe1eee3 303
2d120f83 304 XtVaSetValues (fileSel,
d4d46b56 305 XmNdirectory, thePath(),
2d120f83 306 NULL);
d4d46b56 307 }
dfe1eee3 308
d4d46b56
MB
309 if (entirePath != "")
310 {
d3a80c92
MB
311 XmTextSetString(selectionWidget,
312 wxConstCast(entirePath.c_str(), char));
2d120f83 313 }
dfe1eee3 314
2d120f83
JS
315 XtAddCallback(fileSel, XmNcancelCallback, (XtCallbackProc)wxFileSelCancel, (XtPointer)NULL);
316 XtAddCallback(fileSel, XmNokCallback, (XtCallbackProc)wxFileSelOk, (XtPointer)NULL);
a4e64fb5
MB
317 XtAddCallback(fileSel, XmNunmapCallback,
318 (XtCallbackProc)wxFileSelClose, (XtPointer)this);
dfe1eee3 319
2d120f83
JS
320 //#if XmVersion > 1000
321 // I'm not sure about what you mean with XmVersion.
322 // If this is for Motif1.1/Motif1.2, then check XmVersion>=1200
323 // (Motif1.1.4 ==> XmVersion 1100 )
324 // Nevertheless, I put here a #define, so anyone can choose in (I)makefile...
325 //
f97c9854 326#if !DEFAULT_FILE_SELECTOR_SIZE
2d120f83
JS
327 int width = wxFSB_WIDTH;
328 int height = wxFSB_HEIGHT;
329 XtVaSetValues(fileSel,
330 XmNwidth, width,
331 XmNheight, height,
332 XmNresizePolicy, XmRESIZE_NONE,
333 NULL);
f97c9854 334#endif
a8680e3e
MB
335 // wxDoChangeBackgroundColour((WXWidget) fileSel, m_backgroundColour);
336 wxDoChangeBackgroundColour((WXWidget) filterWidget, *wxWHITE);
337 wxDoChangeBackgroundColour((WXWidget) selectionWidget, *wxWHITE);
a91b47e8 338
a91b47e8
JS
339 wxChangeListBoxColours(this, dirListWidget);
340 wxChangeListBoxColours(this, fileListWidget);
dfe1eee3 341
2d120f83 342 XtManageChild(fileSel);
a91b47e8 343
2d120f83
JS
344 m_fileSelectorAnswer = "";
345 m_fileSelectorReturned = FALSE;
dfe1eee3 346
2d120f83 347 wxEndBusyCursor();
dfe1eee3 348
2d120f83 349 XtAddGrab(XtParent(fileSel), TRUE, FALSE);
eb6fa4b4 350 XtAppContext context = (XtAppContext) wxTheApp->GetAppContext();
2d120f83
JS
351 XEvent event;
352 while (!m_fileSelectorReturned)
353 {
eb6fa4b4
MB
354 XtAppNextEvent(context, &event);
355 XtDispatchEvent(&event);
2d120f83
JS
356 }
357 XtRemoveGrab(XtParent(fileSel));
dfe1eee3 358
eb6fa4b4
MB
359 // XmUpdateDisplay((Widget) wxTheApp->GetTopLevelWidget()); // Experimental
360
361 Display* display = XtDisplay(fileSel);
dfe1eee3 362
2d120f83
JS
363 XtUnmapWidget(XtParent(fileSel));
364 XtDestroyWidget(XtParent(fileSel));
dfe1eee3 365
2d120f83
JS
366 // Now process all events, because otherwise
367 // this might remain on the screen
eb6fa4b4 368 wxFlushEvents(display);
dfe1eee3 369
2d120f83
JS
370 m_path = m_fileSelectorAnswer;
371 m_fileName = wxFileNameFromPath(m_fileSelectorAnswer);
372 m_dir = wxPathOnly(m_path);
dfe1eee3 373
2d120f83
JS
374 if (m_fileName == "")
375 return wxID_CANCEL;
376 else
377 return wxID_OK;
4bb6408c
JS
378}
379
380// Generic file load/save dialog
7482b220 381static wxString
4bb6408c
JS
382wxDefaultFileSelector(bool load, const char *what, const char *extension, const char *default_name, wxWindow *parent)
383{
d3a80c92 384 char *ext = wxConstCast(extension, char);
dfe1eee3
VZ
385
386 wxString prompt;
2d120f83
JS
387 wxString str;
388 if (load)
dfe1eee3 389 str = _("Load %s file");
2d120f83 390 else
dfe1eee3
VZ
391 str = _("Save %s file");
392 prompt.Printf(str, what);
393
394 if (*ext == '.')
395 ext++;
396 wxString wild;
397 wild.Printf("*.%s", ext);
398
2d120f83 399 return wxFileSelector (prompt, NULL, default_name, ext, wild, 0, parent);
4bb6408c
JS
400}
401
402// Generic file load dialog
7482b220 403wxString wxLoadFileSelector(const char *what, const char *extension, const char *default_name, wxWindow *parent)
4bb6408c 404{
2d120f83 405 return wxDefaultFileSelector(TRUE, what, extension, default_name, parent);
4bb6408c
JS
406}
407
408
409// Generic file save dialog
7482b220 410wxString wxSaveFileSelector(const char *what, const char *extension, const char *default_name, wxWindow *parent)
4bb6408c 411{
2d120f83 412 return wxDefaultFileSelector(FALSE, what, extension, default_name, parent);
4bb6408c
JS
413}
414
415