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
)
155 static const wxChar
* msg
=
156 _T("Motif file dialog does not understand this ")
157 _T("wildcard syntax");
160 wxStringTokenizer
tok( wild
, _T("|") );
162 wxCHECK_MSG( tok
.CountTokens() <= 2, _T("*.*"), msg
);
164 if( tok
.CountTokens() == 1 ) return wild
;
168 wxStringTokenizer
tok2( tok
.GetNextToken(), _T(";") );
170 wxCHECK_MSG( tok2
.CountTokens() == 1, tok2
.GetNextToken(), msg
);
171 return tok2
.GetNextToken();
174 wxFileDialog::wxFileDialog(wxWindow
*parent
, const wxString
& message
,
175 const wxString
& defaultDir
, const wxString
& defaultFileName
, const wxString
& wildCard
,
176 long style
, const wxPoint
& pos
)
179 m_dialogStyle
= style
;
182 m_fileName
= defaultFileName
;
184 m_wildCard
= wildCard
;
189 static void wxChangeListBoxColours(wxWindow
* WXUNUSED(win
), Widget widget
)
191 wxDoChangeBackgroundColour((WXWidget
) widget
, *wxWHITE
);
193 // Change colour of the scrolled areas of the listboxes
194 Widget listParent
= XtParent (widget
);
196 wxDoChangeBackgroundColour((WXWidget
) listParent
, *wxWHITE
, TRUE
);
199 Widget hsb
= (Widget
) 0;
200 Widget vsb
= (Widget
) 0;
201 XtVaGetValues (listParent
,
202 XmNhorizontalScrollBar
, &hsb
,
203 XmNverticalScrollBar
, &vsb
,
206 /* TODO: should scrollbars be affected? Should probably have separate
207 * function to change them (by default, taken from wxSystemSettings)
209 wxColour backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
210 wxDoChangeBackgroundColour((WXWidget
) hsb
, backgroundColour
, TRUE
);
211 wxDoChangeBackgroundColour((WXWidget
) vsb
, backgroundColour
, TRUE
);
215 XmNtroughColor
, backgroundColour
.AllocColour(XtDisplay(hsb
)),
219 XmNtroughColor
, backgroundColour
.AllocColour(XtDisplay(vsb
)),
223 int wxFileDialog::ShowModal()
227 // static char fileBuf[512];
228 Widget parentWidget
= (Widget
) 0;
230 parentWidget
= (Widget
) m_parent
->GetTopWidget();
232 parentWidget
= (Widget
) wxTheApp
->GetTopLevelWidget();
233 // prepare the arg list
237 wxComputeColours (XtDisplay(parentWidget
), & m_backgroundColour
,
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
++;
246 Widget fileSel
= XmCreateFileSelectionDialog(parentWidget
, "file_selector", args
, ac
);
247 XtUnmanageChild(XmFileSelectionBoxGetChild(fileSel
, XmDIALOG_HELP_BUTTON
));
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
);
254 // code using these vars disabled
256 Widget okWidget
= XmFileSelectionBoxGetChild(fileSel
, XmDIALOG_OK_BUTTON
);
257 Widget applyWidget
= XmFileSelectionBoxGetChild(fileSel
, XmDIALOG_APPLY_BUTTON
);
258 Widget cancelWidget
= XmFileSelectionBoxGetChild(fileSel
, XmDIALOG_CANCEL_BUTTON
);
262 Widget shell
= XtParent(fileSel
);
264 if (!m_message
.IsNull())
266 XmNtitle
, wxConstCast(m_message
.c_str(), char),
269 wxString
entirePath("");
271 if ((m_dir
!= "") && (m_fileName
!= ""))
273 entirePath
= m_dir
+ wxString("/") + m_fileName
;
275 else if ((m_dir
!= "") && (m_fileName
== ""))
277 entirePath
= m_dir
+ wxString("/");
279 else if ((m_dir
== "") && (m_fileName
!= ""))
281 entirePath
= m_fileName
;
284 if (m_wildCard
!= "")
286 // return something understandable by Motif
287 wxString wildCard
= ParseWildCard( m_wildCard
);
290 filter
= m_dir
+ wxString("/") + wildCard
;
294 XmTextSetString(filterWidget
, wxConstCast(filter
.c_str(), char));
295 XmFileSelectionDoSearch(fileSel
, NULL
);
298 // Suggested by Terry Gitnick, 16/9/97, because of change in Motif
299 // file selector on Solaris 1.5.1.
302 wxXmString
thePath( m_dir
);
304 XtVaSetValues (fileSel
,
305 XmNdirectory
, thePath(),
309 if (entirePath
!= "")
311 XmTextSetString(selectionWidget
,
312 wxConstCast(entirePath
.c_str(), char));
315 XtAddCallback(fileSel
, XmNcancelCallback
, (XtCallbackProc
)wxFileSelCancel
, (XtPointer
)NULL
);
316 XtAddCallback(fileSel
, XmNokCallback
, (XtCallbackProc
)wxFileSelOk
, (XtPointer
)NULL
);
317 XtAddCallback(fileSel
, XmNunmapCallback
,
318 (XtCallbackProc
)wxFileSelClose
, (XtPointer
)this);
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...
326 #if !DEFAULT_FILE_SELECTOR_SIZE
327 int width
= wxFSB_WIDTH
;
328 int height
= wxFSB_HEIGHT
;
329 XtVaSetValues(fileSel
,
332 XmNresizePolicy
, XmRESIZE_NONE
,
335 // wxDoChangeBackgroundColour((WXWidget) fileSel, m_backgroundColour);
336 wxDoChangeBackgroundColour((WXWidget
) filterWidget
, *wxWHITE
);
337 wxDoChangeBackgroundColour((WXWidget
) selectionWidget
, *wxWHITE
);
339 wxChangeListBoxColours(this, dirListWidget
);
340 wxChangeListBoxColours(this, fileListWidget
);
342 XtManageChild(fileSel
);
344 m_fileSelectorAnswer
= "";
345 m_fileSelectorReturned
= FALSE
;
349 XtAddGrab(XtParent(fileSel
), TRUE
, FALSE
);
350 XtAppContext context
= (XtAppContext
) wxTheApp
->GetAppContext();
352 while (!m_fileSelectorReturned
)
354 XtAppNextEvent(context
, &event
);
355 XtDispatchEvent(&event
);
357 XtRemoveGrab(XtParent(fileSel
));
359 // XmUpdateDisplay((Widget) wxTheApp->GetTopLevelWidget()); // Experimental
361 Display
* display
= XtDisplay(fileSel
);
363 XtUnmapWidget(XtParent(fileSel
));
364 XtDestroyWidget(XtParent(fileSel
));
366 // Now process all events, because otherwise
367 // this might remain on the screen
368 wxFlushEvents(display
);
370 m_path
= m_fileSelectorAnswer
;
371 m_fileName
= wxFileNameFromPath(m_fileSelectorAnswer
);
372 m_dir
= wxPathOnly(m_path
);
374 if (m_fileName
== "")
380 // Generic file load/save dialog
382 wxDefaultFileSelector(bool load
, const char *what
, const char *extension
, const char *default_name
, wxWindow
*parent
)
384 char *ext
= wxConstCast(extension
, char);
389 str
= _("Load %s file");
391 str
= _("Save %s file");
392 prompt
.Printf(str
, what
);
397 wild
.Printf("*.%s", ext
);
399 return wxFileSelector (prompt
, NULL
, default_name
, ext
, wild
, 0, parent
);
402 // Generic file load dialog
403 wxString
wxLoadFileSelector(const char *what
, const char *extension
, const char *default_name
, wxWindow
*parent
)
405 return wxDefaultFileSelector(TRUE
, what
, extension
, default_name
, parent
);
409 // Generic file save dialog
410 wxString
wxSaveFileSelector(const char *what
, const char *extension
, const char *default_name
, wxWindow
*parent
)
412 return wxDefaultFileSelector(FALSE
, what
, extension
, default_name
, parent
);