1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFileDialog
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "filedlg.h"
17 #define XtDisplay XTDISPLAY
18 #define XtParent XTPARENT
19 #define XtWindow XTWINDOW
24 #include "wx/dialog.h"
25 #include "wx/filedlg.h"
28 #include "wx/settings.h"
29 #include "wx/tokenzr.h"
32 #pragma message disable nosimpint
35 #include <Xm/MwmUtil.h>
37 #include <Xm/BulletinB.h>
40 #include <Xm/DialogS.h>
41 #include <Xm/FileSB.h>
42 #include <Xm/RowColumn.h>
43 #include <Xm/LabelG.h>
45 #pragma message enable nosimpint
48 #include "wx/motif/private.h"
50 IMPLEMENT_CLASS(wxFileDialog
, wxDialog
)
52 #define DEFAULT_FILE_SELECTOR_SIZE 0
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)
56 #define wxFSB_WIDTH 600
57 #define wxFSB_HEIGHT 500
60 wxString
wxFileSelector(const char *title
,
61 const char *defaultDir
, const char *defaultFileName
,
62 const char *defaultExtension
, const char *filter
, int flags
,
63 wxWindow
*parent
, int x
, int y
)
65 // If there's a default extension specified but no filter, we create a suitable
69 if ( defaultExtension
&& !filter
)
70 filter2
= wxString("*.") + wxString(defaultExtension
) ;
74 wxString defaultDirString
;
76 defaultDirString
= defaultDir
;
78 defaultDirString
= "";
80 wxString defaultFilenameString
;
82 defaultFilenameString
= defaultFileName
;
84 defaultFilenameString
= "";
86 wxFileDialog
fileDialog(parent
, title
, defaultDirString
, defaultFilenameString
, filter2
, flags
, wxPoint(x
, y
));
88 if ( fileDialog
.ShowModal() == wxID_OK
)
90 return fileDialog
.GetPath();
96 wxString
wxFileSelectorEx(const char *title
,
97 const char *defaultDir
,
98 const char *defaultFileName
,
99 int* defaultFilterIndex
,
107 wxFileDialog
fileDialog(parent
, title
? title
: "", defaultDir
? defaultDir
: "",
108 defaultFileName
? defaultFileName
: "", filter
? filter
: "", flags
, wxPoint(x
, y
));
110 if ( fileDialog
.ShowModal() == wxID_OK
)
112 *defaultFilterIndex
= fileDialog
.GetFilterIndex();
113 return fileDialog
.GetPath();
116 return wxEmptyString
;
119 wxString
wxFileDialog::m_fileSelectorAnswer
= "";
120 bool wxFileDialog::m_fileSelectorReturned
= FALSE
;
122 static void wxFileSelClose(Widget
WXUNUSED(w
),
123 void* WXUNUSED(client_data
),
124 XmAnyCallbackStruct
*WXUNUSED(call_data
))
126 wxFileDialog::m_fileSelectorAnswer
= "";
127 wxFileDialog::m_fileSelectorReturned
= TRUE
;
130 void wxFileSelCancel( Widget
WXUNUSED(fs
), XtPointer
WXUNUSED(client_data
),
131 XmFileSelectionBoxCallbackStruct
*WXUNUSED(cbs
) )
133 wxFileDialog::m_fileSelectorAnswer
= "";
134 wxFileDialog::m_fileSelectorReturned
= TRUE
;
137 void wxFileSelOk(Widget
WXUNUSED(fs
), XtPointer
WXUNUSED(client_data
), XmFileSelectionBoxCallbackStruct
*cbs
)
139 char *filename
= NULL
;
140 if (!XmStringGetLtoR(cbs
->value
, XmSTRING_DEFAULT_CHARSET
, &filename
)) {
141 wxFileDialog::m_fileSelectorAnswer
= "";
142 wxFileDialog::m_fileSelectorReturned
= TRUE
;
145 wxFileDialog::m_fileSelectorAnswer
= filename
;
148 wxFileDialog::m_fileSelectorReturned
= TRUE
;
152 static wxString
ParseWildCard( const wxString
& wild
)
154 static const wxChar
* msg
=
155 _T("Motif file dialog does not understand this ")
156 _T("wildcard syntax");
158 wxStringTokenizer
tok( wild
, _T("|") );
160 wxCHECK_MSG( tok
.CountTokens() <= 2, _T("*.*"), msg
);
162 if( tok
.CountTokens() == 1 ) return wild
;
166 wxStringTokenizer
tok2( tok
.GetNextToken(), _T(";") );
168 wxCHECK_MSG( tok2
.CountTokens() == 1, tok2
.GetNextToken(), msg
);
169 return tok2
.GetNextToken();
172 wxFileDialog::wxFileDialog(wxWindow
*parent
, const wxString
& message
,
173 const wxString
& defaultDir
, const wxString
& defaultFileName
, const wxString
& wildCard
,
174 long style
, const wxPoint
& pos
)
177 m_dialogStyle
= style
;
180 m_fileName
= defaultFileName
;
182 m_wildCard
= wildCard
;
187 static void wxChangeListBoxColours(wxWindow
* WXUNUSED(win
), Widget widget
)
189 wxWindow::DoChangeBackgroundColour((WXWidget
) widget
, *wxWHITE
);
191 // Change colour of the scrolled areas of the listboxes
192 Widget listParent
= XtParent (widget
);
193 wxWindow::DoChangeBackgroundColour((WXWidget
) listParent
, *wxWHITE
, TRUE
);
195 Widget hsb
= (Widget
) 0;
196 Widget vsb
= (Widget
) 0;
197 XtVaGetValues (listParent
,
198 XmNhorizontalScrollBar
, &hsb
,
199 XmNverticalScrollBar
, &vsb
,
202 /* TODO: should scrollbars be affected? Should probably have separate
203 * function to change them (by default, taken from wxSystemSettings)
205 wxColour backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
206 wxWindow::DoChangeBackgroundColour((WXWidget
) hsb
, backgroundColour
, TRUE
);
207 wxWindow::DoChangeBackgroundColour((WXWidget
) vsb
, backgroundColour
, TRUE
);
211 XmNtroughColor
, backgroundColour
.AllocColour(XtDisplay(hsb
)),
215 XmNtroughColor
, backgroundColour
.AllocColour(XtDisplay(vsb
)),
219 int wxFileDialog::ShowModal()
223 // static char fileBuf[512];
224 Widget parentWidget
= (Widget
) 0;
227 parentWidget
= (Widget
) m_parent
->GetTopWidget();
230 parentWidget
= (Widget
) wxTheApp
->GetTopLevelWidget();
231 // prepare the arg list
235 wxComputeColours (XtDisplay(parentWidget
), & m_backgroundColour
,
238 XtSetArg(args
[ac
], XmNbackground
, g_itemColors
[wxBACK_INDEX
].pixel
); ac
++;
239 XtSetArg(args
[ac
], XmNtopShadowColor
, g_itemColors
[wxTOPS_INDEX
].pixel
); ac
++;
240 XtSetArg(args
[ac
], XmNbottomShadowColor
, g_itemColors
[wxBOTS_INDEX
].pixel
); ac
++;
241 XtSetArg(args
[ac
], XmNforeground
, g_itemColors
[wxFORE_INDEX
].pixel
); ac
++;
244 Widget fileSel
= XmCreateFileSelectionDialog(parentWidget
, "file_selector", args
, ac
);
245 XtUnmanageChild(XmFileSelectionBoxGetChild(fileSel
, XmDIALOG_HELP_BUTTON
));
247 Widget filterWidget
= XmFileSelectionBoxGetChild(fileSel
, XmDIALOG_FILTER_TEXT
);
248 Widget selectionWidget
= XmFileSelectionBoxGetChild(fileSel
, XmDIALOG_TEXT
);
249 Widget dirListWidget
= XmFileSelectionBoxGetChild(fileSel
, XmDIALOG_DIR_LIST
);
250 Widget fileListWidget
= XmFileSelectionBoxGetChild(fileSel
, XmDIALOG_LIST
);
252 // code using these vars disabled
254 Widget okWidget
= XmFileSelectionBoxGetChild(fileSel
, XmDIALOG_OK_BUTTON
);
255 Widget applyWidget
= XmFileSelectionBoxGetChild(fileSel
, XmDIALOG_APPLY_BUTTON
);
256 Widget cancelWidget
= XmFileSelectionBoxGetChild(fileSel
, XmDIALOG_CANCEL_BUTTON
);
260 Widget shell
= XtParent(fileSel
);
262 if (!m_message
.IsNull())
263 XtVaSetValues(shell
, XmNtitle
, (char*) (const char*) m_message
, NULL
);
265 wxString
entirePath("");
267 if ((m_dir
!= "") && (m_fileName
!= ""))
269 entirePath
= m_dir
+ wxString("/") + m_fileName
;
271 else if ((m_dir
!= "") && (m_fileName
== ""))
273 entirePath
= m_dir
+ wxString("/");
275 else if ((m_dir
== "") && (m_fileName
!= ""))
277 entirePath
= m_fileName
;
280 if (entirePath
!= "")
282 XmTextSetString(selectionWidget
, (char*) (const char*) entirePath
);
285 if (m_wildCard
!= "")
287 // return something understandable by Motif
288 wxString wildCard
= ParseWildCard( m_wildCard
);
291 filter
= m_dir
+ wxString("/") + wildCard
;
295 XmTextSetString(filterWidget
, (char*)filter
.c_str());
296 XmFileSelectionDoSearch(fileSel
, NULL
);
299 // Suggested by Terry Gitnick, 16/9/97, because of change in Motif
300 // file selector on Solaris 1.5.1.
303 XmString thePath
= XmStringCreateLtoR ((char*) (const char*) m_dir
,
304 XmSTRING_DEFAULT_CHARSET
);
306 XtVaSetValues (fileSel
,
307 XmNdirectory
, thePath
,
310 XmStringFree(thePath
);
313 XtAddCallback(fileSel
, XmNcancelCallback
, (XtCallbackProc
)wxFileSelCancel
, (XtPointer
)NULL
);
314 XtAddCallback(fileSel
, XmNokCallback
, (XtCallbackProc
)wxFileSelOk
, (XtPointer
)NULL
);
315 XtAddCallback(fileSel
, XmNunmapCallback
,
316 (XtCallbackProc
)wxFileSelClose
, (XtPointer
)this);
318 //#if XmVersion > 1000
319 // I'm not sure about what you mean with XmVersion.
320 // If this is for Motif1.1/Motif1.2, then check XmVersion>=1200
321 // (Motif1.1.4 ==> XmVersion 1100 )
322 // Nevertheless, I put here a #define, so anyone can choose in (I)makefile...
324 #if !DEFAULT_FILE_SELECTOR_SIZE
325 int width
= wxFSB_WIDTH
;
326 int height
= wxFSB_HEIGHT
;
327 XtVaSetValues(fileSel
,
330 XmNresizePolicy
, XmRESIZE_NONE
,
333 // DoChangeBackgroundColour((WXWidget) fileSel, m_backgroundColour);
334 DoChangeBackgroundColour((WXWidget
) filterWidget
, *wxWHITE
);
335 DoChangeBackgroundColour((WXWidget
) selectionWidget
, *wxWHITE
);
337 wxChangeListBoxColours(this, dirListWidget
);
338 wxChangeListBoxColours(this, fileListWidget
);
340 XtManageChild(fileSel
);
342 m_fileSelectorAnswer
= "";
343 m_fileSelectorReturned
= FALSE
;
347 XtAddGrab(XtParent(fileSel
), TRUE
, FALSE
);
349 while (!m_fileSelectorReturned
)
351 XtAppProcessEvent((XtAppContext
) wxTheApp
->GetAppContext(), XtIMAll
);
353 XtRemoveGrab(XtParent(fileSel
));
355 XmUpdateDisplay((Widget
) wxTheApp
->GetTopLevelWidget()); // Experimental
357 // XtDestroyWidget(fileSel);
358 XtUnmapWidget(XtParent(fileSel
));
359 XtDestroyWidget(XtParent(fileSel
));
361 // Now process all events, because otherwise
362 // this might remain on the screen
363 XSync(XtDisplay((Widget
) wxTheApp
->GetTopLevelWidget()), FALSE
);
364 while (XtAppPending((XtAppContext
) wxTheApp
->GetAppContext()))
366 XFlush(XtDisplay((Widget
) wxTheApp
->GetTopLevelWidget()));
367 XtAppNextEvent((XtAppContext
) wxTheApp
->GetAppContext(), &event
);
368 XtDispatchEvent(&event
);
371 m_path
= m_fileSelectorAnswer
;
372 m_fileName
= wxFileNameFromPath(m_fileSelectorAnswer
);
373 m_dir
= wxPathOnly(m_path
);
375 if (m_fileName
== "")
381 // Generic file load/save dialog
383 wxDefaultFileSelector(bool load
, const char *what
, const char *extension
, const char *default_name
, wxWindow
*parent
)
385 char *ext
= (char *)extension
;
390 str
= _("Load %s file");
392 str
= _("Save %s file");
393 prompt
.Printf(str
, what
);
398 wild
.Printf("*.%s", ext
);
400 return wxFileSelector (prompt
, NULL
, default_name
, ext
, wild
, 0, parent
);
403 // Generic file load dialog
404 wxString
wxLoadFileSelector(const char *what
, const char *extension
, const char *default_name
, wxWindow
*parent
)
406 return wxDefaultFileSelector(TRUE
, what
, extension
, default_name
, parent
);
410 // Generic file save dialog
411 wxString
wxSaveFileSelector(const char *what
, const char *extension
, const char *default_name
, wxWindow
*parent
)
413 return wxDefaultFileSelector(FALSE
, what
, extension
, default_name
, parent
);