// Author: Julian Smart
// Modified by:
// Created: 17/09/98
-// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#include "wx/tokenzr.h"
#include "wx/stockitem.h"
+#include "wx/modalhook.h"
#ifdef __VMS__
#pragma message disable nosimpint
const size_t count = wxParseCommonDialogsFilter(wild,
wildDescriptions,
wildFilters);
- wxCHECK_MSG( count, _T("*.*"), wxT("wxFileDialog: bad wildcard string") );
- wxCHECK_MSG( count == 1, _T("*.*"), msg );
+ wxCHECK_MSG( count, wxT("*.*"), wxT("wxFileDialog: bad wildcard string") );
+ wxCHECK_MSG( count == 1, wxT("*.*"), msg );
// check for *.txt;*.rtf
- wxStringTokenizer tok2( wildFilters[0], _T(";") );
+ wxStringTokenizer tok2( wildFilters[0], wxT(";") );
wxString wildcard = tok2.GetNextToken();
wxCHECK_MSG( tok2.CountTokens() <= 1, wildcard, msg );
long style, const wxPoint& pos, const wxSize& sz, const wxString& name)
:wxFileDialogBase(parent, message, defaultDir, defaultFileName, wildCard, style, pos, sz, name)
{
- m_filterIndex = 1;
}
static void wxChangeListBoxColours(wxWindow* WXUNUSED(win), Widget widget)
int wxFileDialog::ShowModal()
{
+ WX_HOOK_MODAL_DIALOG();
+
wxBeginBusyCursor();
// static char fileBuf[512];
Arg args[10];
int ac = 0;
- if (m_backgroundColour.Ok())
+ if (m_backgroundColour.IsOk())
{
wxComputeColours (dpy, & m_backgroundColour, NULL);
Widget shell = XtParent(fileSel);
- if (!m_message.IsNull())
+ if ( !m_message.empty() )
XtVaSetValues(shell,
XmNtitle, (const char*)m_message.mb_str(),
NULL);