1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/motif/filedlg.cpp
3 // Purpose: wxFileDialog
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
15 #include "wx/filedlg.h"
21 #include "wx/settings.h"
24 #include "wx/tokenzr.h"
25 #include "wx/stockitem.h"
28 #pragma message disable nosimpint
31 #include <Xm/MwmUtil.h>
33 #include <Xm/BulletinB.h>
36 #include <Xm/DialogS.h>
37 #include <Xm/FileSB.h>
38 #include <Xm/RowColumn.h>
39 #include <Xm/LabelG.h>
41 #pragma message enable nosimpint
44 #include "wx/motif/private.h"
46 IMPLEMENT_CLASS(wxFileDialog
, wxFileDialogBase
)
48 #define DEFAULT_FILE_SELECTOR_SIZE 0
49 // Let Motif defines the size of File
50 // Selector Box (if 1), or fix it to
51 // wxFSB_WIDTH x wxFSB_HEIGHT (if 0)
52 #define wxFSB_WIDTH 600
53 #define wxFSB_HEIGHT 500
56 wxString
wxFileDialog::m_fileSelectorAnswer
= wxEmptyString
;
57 bool wxFileDialog::m_fileSelectorReturned
= false;
59 static void wxFileSelClose(Widget
WXUNUSED(w
),
60 void* WXUNUSED(client_data
),
61 XmAnyCallbackStruct
*WXUNUSED(call_data
))
63 wxFileDialog::m_fileSelectorAnswer
= wxEmptyString
;
64 wxFileDialog::m_fileSelectorReturned
= true;
67 void wxFileSelCancel( Widget
WXUNUSED(fs
), XtPointer
WXUNUSED(client_data
),
68 XmFileSelectionBoxCallbackStruct
*WXUNUSED(cbs
) )
70 wxFileDialog::m_fileSelectorAnswer
= wxEmptyString
;
71 wxFileDialog::m_fileSelectorReturned
= true;
74 void wxFileSelOk(Widget
WXUNUSED(fs
), XtPointer
WXUNUSED(client_data
), XmFileSelectionBoxCallbackStruct
*cbs
)
76 char *filename
= NULL
;
77 if (!XmStringGetLtoR(cbs
->value
, XmSTRING_DEFAULT_CHARSET
, &filename
)) {
78 wxFileDialog::m_fileSelectorAnswer
= wxEmptyString
;
79 wxFileDialog::m_fileSelectorReturned
= true;
82 wxFileDialog::m_fileSelectorAnswer
= filename
;
85 wxFileDialog::m_fileSelectorReturned
= true;
89 static wxString
ParseWildCard( const wxString
& wild
)
92 static const char *msg
=
93 "Motif file dialog does not understand this wildcard syntax";
96 wxArrayString wildDescriptions
, wildFilters
;
97 const size_t count
= wxParseCommonDialogsFilter(wild
,
100 wxCHECK_MSG( count
, wxT("*.*"), wxT("wxFileDialog: bad wildcard string") );
101 wxCHECK_MSG( count
== 1, wxT("*.*"), msg
);
103 // check for *.txt;*.rtf
104 wxStringTokenizer
tok2( wildFilters
[0], wxT(";") );
105 wxString wildcard
= tok2
.GetNextToken();
107 wxCHECK_MSG( tok2
.CountTokens() <= 1, wildcard
, msg
);
111 wxFileDialog::wxFileDialog(wxWindow
*parent
, const wxString
& message
,
112 const wxString
& defaultDir
, const wxString
& defaultFileName
, const wxString
& wildCard
,
113 long style
, const wxPoint
& pos
, const wxSize
& sz
, const wxString
& name
)
114 :wxFileDialogBase(parent
, message
, defaultDir
, defaultFileName
, wildCard
, style
, pos
, sz
, name
)
118 static void wxChangeListBoxColours(wxWindow
* WXUNUSED(win
), Widget widget
)
120 wxDoChangeBackgroundColour((WXWidget
) widget
, *wxWHITE
);
122 // Change colour of the scrolled areas of the listboxes
123 Widget listParent
= XtParent (widget
);
125 wxDoChangeBackgroundColour((WXWidget
) listParent
, *wxWHITE
, true);
128 Widget hsb
= (Widget
) 0;
129 Widget vsb
= (Widget
) 0;
130 XtVaGetValues (listParent
,
131 XmNhorizontalScrollBar
, &hsb
,
132 XmNverticalScrollBar
, &vsb
,
135 /* TODO: should scrollbars be affected? Should probably have separate
136 * function to change them (by default, taken from wxSystemSettings)
138 wxColour backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
139 wxDoChangeBackgroundColour((WXWidget
) hsb
, backgroundColour
, true);
140 wxDoChangeBackgroundColour((WXWidget
) vsb
, backgroundColour
, true);
144 XmNtroughColor
, backgroundColour
.AllocColour(XtDisplay(hsb
)),
148 XmNtroughColor
, backgroundColour
.AllocColour(XtDisplay(vsb
)),
152 int wxFileDialog::ShowModal()
156 // static char fileBuf[512];
157 Widget parentWidget
= (Widget
) 0;
159 parentWidget
= (Widget
) m_parent
->GetTopWidget();
161 parentWidget
= (Widget
) wxTheApp
->GetTopLevelWidget();
162 // prepare the arg list
163 Display
* dpy
= XtDisplay(parentWidget
);
167 if (m_backgroundColour
.IsOk())
169 wxComputeColours (dpy
, & m_backgroundColour
, NULL
);
171 XtSetArg(args
[ac
], XmNbackground
, g_itemColors
[wxBACK_INDEX
].pixel
); ac
++;
172 XtSetArg(args
[ac
], XmNtopShadowColor
, g_itemColors
[wxTOPS_INDEX
].pixel
); ac
++;
173 XtSetArg(args
[ac
], XmNbottomShadowColor
, g_itemColors
[wxBOTS_INDEX
].pixel
); ac
++;
174 XtSetArg(args
[ac
], XmNforeground
, g_itemColors
[wxFORE_INDEX
].pixel
); ac
++;
177 wxFont font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
179 #if __WXMOTIF20__ && !__WXLESSTIF__
180 XtSetArg(args
[ac
], XmNbuttonRenderTable
, font
.GetFontTypeC(dpy
)); ac
++;
181 XtSetArg(args
[ac
], XmNlabelRenderTable
, font
.GetFontTypeC(dpy
)); ac
++;
182 XtSetArg(args
[ac
], XmNtextRenderTable
, font
.GetFontTypeC(dpy
)); ac
++;
184 XtSetArg(args
[ac
], XmNbuttonFontList
, font
.GetFontTypeC(dpy
)); ac
++;
185 XtSetArg(args
[ac
], XmNlabelFontList
, font
.GetFontTypeC(dpy
)); ac
++;
186 XtSetArg(args
[ac
], XmNtextFontList
, font
.GetFontTypeC(dpy
)); ac
++;
189 Widget fileSel
= XmCreateFileSelectionDialog(parentWidget
,
190 wxMOTIF_STR("file_selector"),
192 #define wxFSChild( name ) \
193 XmFileSelectionBoxGetChild(fileSel, name)
195 XtUnmanageChild(wxFSChild(XmDIALOG_HELP_BUTTON
));
197 Widget filterWidget
= wxFSChild(XmDIALOG_FILTER_TEXT
);
198 Widget selectionWidget
= wxFSChild(XmDIALOG_TEXT
);
199 Widget dirListWidget
= wxFSChild(XmDIALOG_DIR_LIST
);
200 Widget fileListWidget
= wxFSChild(XmDIALOG_LIST
);
202 // for changing labels
203 Widget okWidget
= wxFSChild(XmDIALOG_OK_BUTTON
);
204 Widget applyWidget
= wxFSChild(XmDIALOG_APPLY_BUTTON
);
205 Widget cancelWidget
= wxFSChild(XmDIALOG_CANCEL_BUTTON
);
206 Widget dirlistLabel
= wxFSChild(XmDIALOG_DIR_LIST_LABEL
);
207 Widget filterLabel
= wxFSChild(XmDIALOG_FILTER_LABEL
);
208 Widget listLabel
= wxFSChild(XmDIALOG_LIST_LABEL
);
209 Widget selectionLabel
= wxFSChild(XmDIALOG_SELECTION_LABEL
);
214 wxXmString
btnOK( wxGetStockLabel( wxID_OK
, false ) ),
215 btnCancel( wxGetStockLabel( wxID_CANCEL
, false ) ),
216 btnFilter( _("Filter") ), lblFilter( _("Filter") ),
217 lblDirectories( _("Directories") ),
218 lblFiles( _("Files" ) ), lblSelection( _("Selection") );
220 XtVaSetValues( okWidget
, XmNlabelString
, btnOK(), NULL
);
221 XtVaSetValues( applyWidget
, XmNlabelString
, btnFilter(), NULL
);
222 XtVaSetValues( cancelWidget
, XmNlabelString
, btnCancel(), NULL
);
223 XtVaSetValues( dirlistLabel
, XmNlabelString
, lblDirectories(), NULL
);
224 XtVaSetValues( filterLabel
, XmNlabelString
, lblFilter(), NULL
);
225 XtVaSetValues( listLabel
, XmNlabelString
, lblFiles(), NULL
);
226 XtVaSetValues( selectionLabel
, XmNlabelString
, lblSelection(), NULL
);
228 Widget shell
= XtParent(fileSel
);
230 if ( !m_message
.empty() )
232 XmNtitle
, (const char*)m_message
.mb_str(),
235 if (!m_wildCard
.empty())
237 // return something understandable by Motif
238 wxString wildCard
= ParseWildCard( m_wildCard
);
241 filter
= m_dir
+ wxString("/") + wildCard
;
245 XmTextSetString(filterWidget
, filter
.char_str());
246 XmFileSelectionDoSearch(fileSel
, NULL
);
249 // Suggested by Terry Gitnick, 16/9/97, because of change in Motif
250 // file selector on Solaris 1.5.1.
251 if ( !m_dir
.empty() )
253 wxXmString
thePath( m_dir
);
255 XtVaSetValues (fileSel
,
256 XmNdirectory
, thePath(),
264 entirePath
= m_dir
+ wxString("/") + m_fileName
;
268 entirePath
= m_fileName
;
271 if (!entirePath
.empty())
273 XmTextSetString(selectionWidget
, entirePath
.char_str());
276 XtAddCallback(fileSel
, XmNcancelCallback
,
277 (XtCallbackProc
)wxFileSelCancel
, (XtPointer
)NULL
);
278 XtAddCallback(fileSel
, XmNokCallback
,
279 (XtCallbackProc
)wxFileSelOk
, (XtPointer
)NULL
);
280 XtAddCallback(fileSel
, XmNunmapCallback
,
281 (XtCallbackProc
)wxFileSelClose
, (XtPointer
)this);
283 //#if XmVersion > 1000
284 // I'm not sure about what you mean with XmVersion.
285 // If this is for Motif1.1/Motif1.2, then check XmVersion>=1200
286 // (Motif1.1.4 ==> XmVersion 1100 )
287 // Nevertheless, I put here a #define, so anyone can choose in (I)makefile.
289 #if !DEFAULT_FILE_SELECTOR_SIZE
290 int width
= wxFSB_WIDTH
;
291 int height
= wxFSB_HEIGHT
;
292 XtVaSetValues(fileSel
,
295 XmNresizePolicy
, XmRESIZE_NONE
,
298 wxDoChangeBackgroundColour((WXWidget
) filterWidget
, *wxWHITE
);
299 wxDoChangeBackgroundColour((WXWidget
) selectionWidget
, *wxWHITE
);
301 wxChangeListBoxColours(this, dirListWidget
);
302 wxChangeListBoxColours(this, fileListWidget
);
304 XtManageChild(fileSel
);
306 m_fileSelectorAnswer
= wxEmptyString
;
307 m_fileSelectorReturned
= false;
311 XtAddGrab(XtParent(fileSel
), True
, False
);
312 XtAppContext context
= (XtAppContext
) wxTheApp
->GetAppContext();
314 while (!m_fileSelectorReturned
)
316 XtAppNextEvent(context
, &event
);
317 XtDispatchEvent(&event
);
319 XtRemoveGrab(XtParent(fileSel
));
321 XtUnmapWidget(XtParent(fileSel
));
322 XtDestroyWidget(XtParent(fileSel
));
324 // Now process all events, because otherwise
325 // this might remain on the screen
326 wxFlushEvents(XtDisplay(fileSel
));
328 m_path
= m_fileSelectorAnswer
;
329 m_fileName
= wxFileNameFromPath(m_fileSelectorAnswer
);
330 m_dir
= wxPathOnly(m_path
);
332 if (m_fileName
.empty())