extra consts removed here and there

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3704 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-09-18 16:39:08 +00:00
parent 284b4c8866
commit c8c0e54c70
2 changed files with 146 additions and 134 deletions

View File

@@ -6,7 +6,7 @@
// Created: 8/17/99 // Created: 8/17/99
// Copyright: (c) Robert Roebling // Copyright: (c) Robert Roebling
// RCS-ID: $Id$ // RCS-ID: $Id$
// Licence: wxWindows licence // Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
#ifndef _WX_FILEDLGG_H_ #ifndef _WX_FILEDLGG_H_
@@ -62,19 +62,19 @@ private:
bool m_isExe; bool m_isExe;
public: public:
wxFileData() {} wxFileData() { }
wxFileData( const wxString &name, const wxString &fname ); wxFileData( const wxString &name, const wxString &fname );
wxString GetName() const; wxString GetName() const;
wxString GetFullName() const; wxString GetFullName() const;
wxString GetHint() const; wxString GetHint() const;
wxString GetEntry( const int num ); wxString GetEntry( int num );
bool IsDir(); bool IsDir();
bool IsLink(); bool IsLink();
bool IsExe(); bool IsExe();
long GetSize(); long GetSize();
void MakeItem( wxListItem &item ); void MakeItem( wxListItem &item );
void SetNewName( const wxString &name, const wxString &fname ); void SetNewName( const wxString &name, const wxString &fname );
private: private:
DECLARE_DYNAMIC_CLASS(wxFileData); DECLARE_DYNAMIC_CLASS(wxFileData);
}; };
@@ -92,11 +92,15 @@ private:
public: public:
wxFileCtrl(); wxFileCtrl();
wxFileCtrl( wxWindow *win, const wxWindowID id, wxFileCtrl( wxWindow *win,
const wxString &dirName, const wxString &wild, wxWindowID id,
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, const wxString &dirName,
const long style = wxLC_LIST, const wxValidator &validator = wxDefaultValidator, const wxString &wild,
const wxString &name = _T("filelist") ); const wxPoint &pos = wxDefaultPosition,
const wxSize &size = wxDefaultSize,
long style = wxLC_LIST,
const wxValidator &validator = wxDefaultValidator,
const wxString &name = _T("filelist") );
void ChangeToListMode(); void ChangeToListMode();
void ChangeToReportMode(); void ChangeToReportMode();
void ChangeToIconMode(); void ChangeToIconMode();
@@ -113,7 +117,7 @@ public:
void OnListDeleteItem( wxListEvent &event ); void OnListDeleteItem( wxListEvent &event );
void OnListEndLabelEdit( wxListEvent &event ); void OnListEndLabelEdit( wxListEvent &event );
private: private:
DECLARE_DYNAMIC_CLASS(wxFileCtrl); DECLARE_DYNAMIC_CLASS(wxFileCtrl);
DECLARE_EVENT_TABLE() DECLARE_EVENT_TABLE()
}; };
@@ -151,7 +155,7 @@ public:
wxString GetWildcard() const { return m_wildCard; } wxString GetWildcard() const { return m_wildCard; }
long GetStyle() const { return m_dialogStyle; } long GetStyle() const { return m_dialogStyle; }
int GetFilterIndex() const { return m_filterIndex ; } int GetFilterIndex() const { return m_filterIndex ; }
void OnSelected( wxListEvent &event ); void OnSelected( wxListEvent &event );
void OnActivated( wxListEvent &event ); void OnActivated( wxListEvent &event );
void OnList( wxCommandEvent &event ); void OnList( wxCommandEvent &event );
@@ -162,8 +166,8 @@ public:
void OnNew( wxCommandEvent &event ); void OnNew( wxCommandEvent &event );
void OnChoice( wxCommandEvent &event ); void OnChoice( wxCommandEvent &event );
void OnTextEnter( wxCommandEvent &event ); void OnTextEnter( wxCommandEvent &event );
protected: protected:
wxString m_message; wxString m_message;
long m_dialogStyle; long m_dialogStyle;
wxString m_dir; wxString m_dir;
@@ -176,17 +180,20 @@ protected:
wxFileCtrl *m_list; wxFileCtrl *m_list;
wxCheckBox *m_check; wxCheckBox *m_check;
wxStaticText *m_static; wxStaticText *m_static;
private: private:
DECLARE_DYNAMIC_CLASS(wxFileDialog) DECLARE_DYNAMIC_CLASS(wxFileDialog)
DECLARE_EVENT_TABLE() DECLARE_EVENT_TABLE()
}; };
#define wxOPEN 1 enum
#define wxSAVE 2 {
#define wxOVERWRITE_PROMPT 4 wxOPEN = 1,
#define wxHIDE_READONLY 8 wxSAVE = 2,
#define wxFILE_MUST_EXIST 16 wxOVERWRITE_PROMPT = 4,
wxHIDE_READONLY = 8,
wxFILE_MUST_EXIST = 16
}
// File selector - backward compatibility // File selector - backward compatibility
WXDLLEXPORT wxString WXDLLEXPORT wxString

View File

@@ -6,7 +6,7 @@
// Created: 12/12/98 // Created: 12/12/98
// RCS-ID: $Id$ // RCS-ID: $Id$
// Copyright: (c) Robert Roebling // Copyright: (c) Robert Roebling
// Licence: wxWindows licence // Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__ #ifdef __GNUG__
@@ -56,12 +56,12 @@ static char * folder_xpm[] = {
/* width height ncolors chars_per_pixel */ /* width height ncolors chars_per_pixel */
"16 16 6 1", "16 16 6 1",
/* colors */ /* colors */
" s None c None", " s None c None",
". c #000000", ". c #000000",
"+ c #c0c0c0", "+ c #c0c0c0",
"@ c #808080", "@ c #808080",
"# c #ffff00", "# c #ffff00",
"$ c #ffffff", "$ c #ffffff",
/* pixels */ /* pixels */
" ", " ",
" @@@@@ ", " @@@@@ ",
@@ -80,6 +80,22 @@ static char * folder_xpm[] = {
" ", " ",
" "}; " "};
// ----------------------------------------------------------------------------
// private functions
// ----------------------------------------------------------------------------
static
int ListCompare( long data1, long data2, long WXUNUSED(data) )
{
wxFileData *fd1 = (wxFileData*)data1 ;
wxFileData *fd2 = (wxFileData*)data2 ;
if (fd1->GetName() == _T("..")) return -1;
if (fd2->GetName() == _T("..")) return 1;
if (fd1->IsDir() && !fd2->IsDir()) return -1;
if (fd2->IsDir() && !fd1->IsDir()) return 1;
return strcmp( fd1->GetName(), fd2->GetName() );
}
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// wxFileData // wxFileData
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@@ -90,7 +106,7 @@ wxFileData::wxFileData( const wxString &name, const wxString &fname )
{ {
m_name = name; m_name = name;
m_fileName = fname; m_fileName = fname;
struct stat buff; struct stat buff;
stat( m_fileName.GetData(), &buff ); stat( m_fileName.GetData(), &buff );
struct stat lbuff; struct stat lbuff;
@@ -112,7 +128,7 @@ wxFileData::wxFileData( const wxString &name, const wxString &fname )
m_day = t->tm_mday; m_day = t->tm_mday;
m_year = t->tm_year; m_year = t->tm_year;
m_permissions.sprintf( "%c%c%c", m_permissions.sprintf( "%c%c%c",
((( buff.st_mode & S_IRUSR ) == S_IRUSR ) ? 'r' : '-'), ((( buff.st_mode & S_IRUSR ) == S_IRUSR ) ? 'r' : '-'),
((( buff.st_mode & S_IWUSR ) == S_IWUSR ) ? 'w' : '-'), ((( buff.st_mode & S_IWUSR ) == S_IWUSR ) ? 'w' : '-'),
((( buff.st_mode & S_IXUSR ) == S_IXUSR ) ? 'x' : '-') ); ((( buff.st_mode & S_IXUSR ) == S_IXUSR ) ? 'x' : '-') );
@@ -153,7 +169,7 @@ wxString wxFileData::GetHint() const
return s; return s;
}; };
wxString wxFileData::GetEntry( const int num ) wxString wxFileData::GetEntry( int num )
{ {
wxString s; wxString s;
switch (num) switch (num)
@@ -170,7 +186,7 @@ wxString wxFileData::GetEntry( const int num )
if (m_day < 10) s = _T("0"); else s = _T(""); if (m_day < 10) s = _T("0"); else s = _T("");
s += IntToString( m_day ); s += IntToString( m_day );
s += _T("."); s += _T(".");
if (m_month < 10) s += _T("0"); if (m_month < 10) s += _T("0");
s += IntToString( m_month ); s += IntToString( m_month );
s += _T("."); s += _T(".");
if (m_year < 10) s += _T("0"); // this should happen real soon... if (m_year < 10) s += _T("0"); // this should happen real soon...
@@ -233,7 +249,7 @@ void wxFileData::MakeItem( wxListItem &item )
} }
item.m_data = (long)this; item.m_data = (long)this;
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// wxFileCtrl // wxFileCtrl
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@@ -251,7 +267,7 @@ wxFileCtrl::wxFileCtrl()
m_showHidden = FALSE; m_showHidden = FALSE;
} }
wxFileCtrl::wxFileCtrl( wxWindow *win, wxWindowID id, wxFileCtrl::wxFileCtrl( wxWindow *win, wxWindowID id,
const wxString &dirName, const wxString &wild, const wxString &dirName, const wxString &wild,
const wxPoint &pos, const wxSize &size, const wxPoint &pos, const wxSize &size,
long style, const wxValidator &validator, const wxString &name ) : long style, const wxValidator &validator, const wxString &name ) :
@@ -260,7 +276,7 @@ wxFileCtrl::wxFileCtrl( wxWindow *win, wxWindowID id,
wxImageList *imageList = new wxImageList( 16, 16 ); wxImageList *imageList = new wxImageList( 16, 16 );
imageList->Add( wxBitmap( folder_xpm ) ); imageList->Add( wxBitmap( folder_xpm ) );
SetImageList( imageList, wxIMAGE_LIST_SMALL ); SetImageList( imageList, wxIMAGE_LIST_SMALL );
m_dirName = dirName; m_dirName = dirName;
m_wild = wild; m_wild = wild;
m_showHidden = FALSE; m_showHidden = FALSE;
@@ -291,17 +307,6 @@ void wxFileCtrl::ShowHidden( bool show )
Update(); Update();
} }
int ListCompare( const long data1, const long data2, const long WXUNUSED(data) )
{
wxFileData *fd1 = (wxFileData*)data1 ;
wxFileData *fd2 = (wxFileData*)data2 ;
if (fd1->GetName() == _T("..")) return -1;
if (fd2->GetName() == _T("..")) return 1;
if (fd1->IsDir() && !fd2->IsDir()) return -1;
if (fd2->IsDir() && !fd1->IsDir()) return 1;
return strcmp( fd1->GetName(), fd2->GetName() );
}
long wxFileCtrl::Add( wxFileData *fd, wxListItem &item ) long wxFileCtrl::Add( wxFileData *fd, wxListItem &item )
{ {
long ret = -1; long ret = -1;
@@ -316,12 +321,12 @@ long wxFileCtrl::Add( wxFileData *fd, wxListItem &item )
else if (my_style & wxLC_LIST) else if (my_style & wxLC_LIST)
{ {
ret = InsertItem( item ); ret = InsertItem( item );
} }
return ret; return ret;
} }
void wxFileCtrl::Update() void wxFileCtrl::Update()
{ {
ClearAll(); ClearAll();
long my_style = GetWindowStyleFlag(); long my_style = GetWindowStyleFlag();
if (my_style & wxLC_REPORT) if (my_style & wxLC_REPORT)
@@ -340,9 +345,9 @@ void wxFileCtrl::Update()
if (m_dirName != _T("/")) if (m_dirName != _T("/"))
{ {
wxString p( wxPathOnly(m_dirName) ); wxString p( wxPathOnly(m_dirName) );
if (p.IsEmpty()) p = _T("/"); if (p.IsEmpty()) p = _T("/");
fd = new wxFileData( _T(".."), p ); fd = new wxFileData( _T(".."), p );
Add( fd, item ); Add( fd, item );
item.m_itemId++; item.m_itemId++;
} }
@@ -355,12 +360,12 @@ void wxFileCtrl::Update()
wxString s = fd->GetName(); wxString s = fd->GetName();
if (m_showHidden || (s[0] != _T('.'))) if (m_showHidden || (s[0] != _T('.')))
{ {
Add( fd, item ); Add( fd, item );
item.m_itemId++; item.m_itemId++;
} }
f = wxFindNextFile(); f = wxFindNextFile();
} }
res = m_dirName + _T("/") + m_wild; res = m_dirName + _T("/") + m_wild;
f = wxFindFirstFile( res.GetData(), wxFILE ); f = wxFindFirstFile( res.GetData(), wxFILE );
while (!f.IsEmpty()) while (!f.IsEmpty())
@@ -370,12 +375,12 @@ void wxFileCtrl::Update()
wxString s = fd->GetName(); wxString s = fd->GetName();
if (m_showHidden || (s[0] != _T('.'))) if (m_showHidden || (s[0] != _T('.')))
{ {
Add( fd, item ); Add( fd, item );
item.m_itemId++; item.m_itemId++;
} }
f = wxFindNextFile(); f = wxFindNextFile();
} }
SortItems( ListCompare, 0 ); SortItems( ListCompare, 0 );
} }
@@ -395,24 +400,24 @@ void wxFileCtrl::MakeDir()
{ {
// try NewName0, NewName1 etc. // try NewName0, NewName1 etc.
int i = 0; int i = 0;
do { do {
new_name = _("NewName"); new_name = _("NewName");
wxString num; wxString num;
num.Printf( _T("%d"), i ); num.Printf( _T("%d"), i );
new_name += num; new_name += num;
path = m_dirName; path = m_dirName;
path += _T("/"); path += _T("/");
path += new_name; path += new_name;
i++; i++;
} while (wxFileExists(path)); } while (wxFileExists(path));
} }
wxLogNull log; wxLogNull log;
if (!wxMkdir(path)) if (!wxMkdir(path))
{ {
wxMessageDialog dialog(this, _("Operation not permitted."), _("Error"), wxOK | wxICON_ERROR ); wxMessageDialog dialog(this, _("Operation not permitted."), _("Error"), wxOK | wxICON_ERROR );
dialog.ShowModal(); dialog.ShowModal();
return; return;
} }
@@ -421,11 +426,11 @@ void wxFileCtrl::MakeDir()
item.m_itemId = 0; item.m_itemId = 0;
item.m_col = 0; item.m_col = 0;
int id = Add( fd, item ); int id = Add( fd, item );
if (id != -1) if (id != -1)
{ {
SortItems( ListCompare, 0 ); SortItems( ListCompare, 0 );
id = FindItem( 0, (long)fd ); id = FindItem( 0, (long)fd );
EnsureVisible( id ); EnsureVisible( id );
EditLabel( id ); EditLabel( id );
} }
@@ -435,16 +440,16 @@ void wxFileCtrl::GoToParentDir()
{ {
if (m_dirName != _T("/")) if (m_dirName != _T("/"))
{ {
wxString fname( wxFileNameFromPath(m_dirName) ); wxString fname( wxFileNameFromPath(m_dirName) );
m_dirName = wxPathOnly( m_dirName ); m_dirName = wxPathOnly( m_dirName );
if (m_dirName.IsEmpty()) m_dirName = _T("/"); if (m_dirName.IsEmpty()) m_dirName = _T("/");
Update(); Update();
int id = FindItem( 0, fname ); int id = FindItem( 0, fname );
if (id != -1) if (id != -1)
{ {
SetItemState( id, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED ); SetItemState( id, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
EnsureVisible( id ); EnsureVisible( id );
} }
} }
} }
@@ -480,41 +485,41 @@ void wxFileCtrl::OnListEndLabelEdit( wxListEvent &event )
{ {
wxFileData *fd = (wxFileData*)event.m_item.m_data; wxFileData *fd = (wxFileData*)event.m_item.m_data;
wxASSERT( fd ); wxASSERT( fd );
if ((event.GetLabel().IsEmpty()) || if ((event.GetLabel().IsEmpty()) ||
(event.GetLabel() == _(".")) || (event.GetLabel() == _(".")) ||
(event.GetLabel() == _("..")) || (event.GetLabel() == _("..")) ||
(event.GetLabel().First( _T("/") ) != wxNOT_FOUND)) (event.GetLabel().First( _T("/") ) != wxNOT_FOUND))
{ {
wxMessageDialog dialog(this, _("Illegal directory name."), _("Error"), wxOK | wxICON_ERROR ); wxMessageDialog dialog(this, _("Illegal directory name."), _("Error"), wxOK | wxICON_ERROR );
dialog.ShowModal(); dialog.ShowModal();
event.Veto(); event.Veto();
return; return;
} }
wxString new_name( wxPathOnly( fd->GetFullName() ) ); wxString new_name( wxPathOnly( fd->GetFullName() ) );
new_name += _T("/"); new_name += _T("/");
new_name += event.GetLabel(); new_name += event.GetLabel();
wxLogNull log; wxLogNull log;
if (wxFileExists(new_name)) if (wxFileExists(new_name))
{ {
wxMessageDialog dialog(this, _("File name exists already."), _("Error"), wxOK | wxICON_ERROR ); wxMessageDialog dialog(this, _("File name exists already."), _("Error"), wxOK | wxICON_ERROR );
dialog.ShowModal(); dialog.ShowModal();
event.Veto(); event.Veto();
} }
if (wxRenameFile(fd->GetFullName(),new_name)) if (wxRenameFile(fd->GetFullName(),new_name))
{ {
fd->SetNewName( new_name, event.GetLabel() ); fd->SetNewName( new_name, event.GetLabel() );
SetItemState( event.GetItem(), wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED ); SetItemState( event.GetItem(), wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
EnsureVisible( event.GetItem() ); EnsureVisible( event.GetItem() );
} }
else else
{ {
wxMessageDialog dialog(this, _("Operation not permitted."), _("Error"), wxOK | wxICON_ERROR ); wxMessageDialog dialog(this, _("Operation not permitted."), _("Error"), wxOK | wxICON_ERROR );
dialog.ShowModal(); dialog.ShowModal();
event.Veto(); event.Veto();
} }
} }
@@ -543,9 +548,9 @@ BEGIN_EVENT_TABLE(wxFileDialog,wxDialog)
EVT_BUTTON(ID_NEW_DIR, wxFileDialog::OnNew) EVT_BUTTON(ID_NEW_DIR, wxFileDialog::OnNew)
EVT_BUTTON(wxID_OK, wxFileDialog::OnListOk) EVT_BUTTON(wxID_OK, wxFileDialog::OnListOk)
EVT_LIST_ITEM_SELECTED(ID_LIST_CTRL, wxFileDialog::OnSelected) EVT_LIST_ITEM_SELECTED(ID_LIST_CTRL, wxFileDialog::OnSelected)
EVT_LIST_ITEM_ACTIVATED(ID_LIST_CTRL, wxFileDialog::OnActivated) EVT_LIST_ITEM_ACTIVATED(ID_LIST_CTRL, wxFileDialog::OnActivated)
EVT_CHOICE(ID_CHOICE,wxFileDialog::OnChoice) EVT_CHOICE(ID_CHOICE,wxFileDialog::OnChoice)
EVT_TEXT_ENTER(ID_TEXT,wxFileDialog::OnTextEnter) EVT_TEXT_ENTER(ID_TEXT,wxFileDialog::OnTextEnter)
END_EVENT_TABLE() END_EVENT_TABLE()
wxFileDialog::wxFileDialog(wxWindow *parent, wxFileDialog::wxFileDialog(wxWindow *parent,
@@ -558,14 +563,14 @@ wxFileDialog::wxFileDialog(wxWindow *parent,
wxDialog( parent, -1, message, pos, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER ) wxDialog( parent, -1, message, pos, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER )
{ {
wxBeginBusyCursor(); wxBeginBusyCursor();
m_message = message; m_message = message;
m_dialogStyle = style; m_dialogStyle = style;
m_dir = defaultDir; m_dir = defaultDir;
if (m_dir.IsEmpty()) if (m_dir.IsEmpty())
{ {
char buf[200]; char buf[200];
m_dir = getcwd( buf, sizeof(buf) ); m_dir = getcwd( buf, sizeof(buf) );
} }
m_path = defaultDir; m_path = defaultDir;
m_path += _T("/"); m_path += _T("/");
@@ -573,12 +578,12 @@ wxFileDialog::wxFileDialog(wxWindow *parent,
m_fileName = defaultFile; m_fileName = defaultFile;
m_wildCard = wildCard; m_wildCard = wildCard;
m_filterIndex = 0; m_filterIndex = 0;
// interpret wildcards // interpret wildcards
if (m_wildCard.IsEmpty()) if (m_wildCard.IsEmpty())
m_wildCard = _("All files (*)|*"); m_wildCard = _("All files (*)|*");
wxStringTokenizer tokens( m_wildCard, _T("|") ); wxStringTokenizer tokens( m_wildCard, _T("|") );
wxString firstWild; wxString firstWild;
wxString firstWildText; wxString firstWildText;
@@ -595,25 +600,25 @@ wxFileDialog::wxFileDialog(wxWindow *parent,
} }
// layout // layout
wxBoxSizer *mainsizer = new wxBoxSizer( wxVERTICAL ); wxBoxSizer *mainsizer = new wxBoxSizer( wxVERTICAL );
wxBoxSizer *buttonsizer = new wxBoxSizer( wxHORIZONTAL ); wxBoxSizer *buttonsizer = new wxBoxSizer( wxHORIZONTAL );
wxBitmapButton *but; wxBitmapButton *but;
but = new wxBitmapButton( this, ID_LIST_MODE, wxBitmap( listview_xpm ) ); but = new wxBitmapButton( this, ID_LIST_MODE, wxBitmap( listview_xpm ) );
#if wxUSE_TOOLTIPS #if wxUSE_TOOLTIPS
but->SetToolTip( _("View files as a list view") ); but->SetToolTip( _("View files as a list view") );
#endif #endif
buttonsizer->Add( but, 0, wxALL, 5 ); buttonsizer->Add( but, 0, wxALL, 5 );
but = new wxBitmapButton( this, ID_REPORT_MODE, wxBitmap( repview_xpm ) ); but = new wxBitmapButton( this, ID_REPORT_MODE, wxBitmap( repview_xpm ) );
#if wxUSE_TOOLTIPS #if wxUSE_TOOLTIPS
but->SetToolTip( _("View files as a detailed view") ); but->SetToolTip( _("View files as a detailed view") );
#endif #endif
buttonsizer->Add( but, 0, wxALL, 5 ); buttonsizer->Add( but, 0, wxALL, 5 );
buttonsizer->Add( 30, 5, 1 ); buttonsizer->Add( 30, 5, 1 );
but = new wxBitmapButton( this, ID_UP_DIR, wxBitmap( dir_up_xpm ) ); but = new wxBitmapButton( this, ID_UP_DIR, wxBitmap( dir_up_xpm ) );
@@ -621,33 +626,33 @@ wxFileDialog::wxFileDialog(wxWindow *parent,
but->SetToolTip( _("Go to parent directory") ); but->SetToolTip( _("Go to parent directory") );
#endif #endif
buttonsizer->Add( but, 0, wxALL, 5 ); buttonsizer->Add( but, 0, wxALL, 5 );
but = new wxBitmapButton( this, ID_PARENT_DIR, wxBitmap(home_xpm) ); but = new wxBitmapButton( this, ID_PARENT_DIR, wxBitmap(home_xpm) );
#if wxUSE_TOOLTIPS #if wxUSE_TOOLTIPS
but->SetToolTip( _("Go to home directory") ); but->SetToolTip( _("Go to home directory") );
#endif #endif
buttonsizer->Add( but, 0, wxALL, 5); buttonsizer->Add( but, 0, wxALL, 5);
buttonsizer->Add( 20, 20 ); buttonsizer->Add( 20, 20 );
but = new wxBitmapButton( this, ID_NEW_DIR, wxBitmap(new_dir_xpm) ); but = new wxBitmapButton( this, ID_NEW_DIR, wxBitmap(new_dir_xpm) );
#if wxUSE_TOOLTIPS #if wxUSE_TOOLTIPS
but->SetToolTip( _("Create new directory") ); but->SetToolTip( _("Create new directory") );
#endif #endif
buttonsizer->Add( but, 0, wxALL, 5 ); buttonsizer->Add( but, 0, wxALL, 5 );
mainsizer->Add( buttonsizer, 0, wxALL | wxEXPAND, 5 ); mainsizer->Add( buttonsizer, 0, wxALL | wxEXPAND, 5 );
wxBoxSizer *staticsizer = new wxBoxSizer( wxHORIZONTAL ); wxBoxSizer *staticsizer = new wxBoxSizer( wxHORIZONTAL );
staticsizer->Add( new wxStaticText( this, -1, _("Current directory:") ), 0, wxRIGHT, 10 ); staticsizer->Add( new wxStaticText( this, -1, _("Current directory:") ), 0, wxRIGHT, 10 );
m_static = new wxStaticText( this, -1, m_dir ); m_static = new wxStaticText( this, -1, m_dir );
staticsizer->Add( m_static, 1 ); staticsizer->Add( m_static, 1 );
mainsizer->Add( staticsizer, 0, wxEXPAND | wxLEFT|wxRIGHT|wxBOTTOM, 10 ); mainsizer->Add( staticsizer, 0, wxEXPAND | wxLEFT|wxRIGHT|wxBOTTOM, 10 );
m_list = new wxFileCtrl( this, ID_LIST_CTRL, m_dir, firstWild, wxDefaultPosition, wxSize(440,180), m_list = new wxFileCtrl( this, ID_LIST_CTRL, m_dir, firstWild, wxDefaultPosition, wxSize(440,180),
wxLC_LIST | wxSUNKEN_BORDER | wxLC_SINGLE_SEL ); wxLC_LIST | wxSUNKEN_BORDER | wxLC_SINGLE_SEL );
mainsizer->Add( m_list, 1, wxEXPAND | wxLEFT|wxRIGHT, 10 ); mainsizer->Add( m_list, 1, wxEXPAND | wxLEFT|wxRIGHT, 10 );
wxBoxSizer *textsizer = new wxBoxSizer( wxHORIZONTAL ); wxBoxSizer *textsizer = new wxBoxSizer( wxHORIZONTAL );
m_text = new wxTextCtrl( this, ID_TEXT, m_fileName, wxDefaultPosition, wxDefaultSize, wxPROCESS_ENTER ); m_text = new wxTextCtrl( this, ID_TEXT, m_fileName, wxDefaultPosition, wxDefaultSize, wxPROCESS_ENTER );
textsizer->Add( m_text, 1, wxCENTER | wxLEFT|wxRIGHT|wxTOP, 10 ); textsizer->Add( m_text, 1, wxCENTER | wxLEFT|wxRIGHT|wxTOP, 10 );
@@ -659,7 +664,7 @@ wxFileDialog::wxFileDialog(wxWindow *parent,
choicesizer->Add( m_choice, 1, wxCENTER|wxALL, 10 ); choicesizer->Add( m_choice, 1, wxCENTER|wxALL, 10 );
choicesizer->Add( new wxButton( this, wxID_CANCEL, _("Cancel") ), 0, wxCENTER | wxALL, 10 ); choicesizer->Add( new wxButton( this, wxID_CANCEL, _("Cancel") ), 0, wxCENTER | wxALL, 10 );
mainsizer->Add( choicesizer, 0, wxEXPAND ); mainsizer->Add( choicesizer, 0, wxEXPAND );
m_choice->Append( firstWildText, (void*) new wxString( firstWild ) ); m_choice->Append( firstWildText, (void*) new wxString( firstWild ) );
while (tokens.HasMoreTokens()) while (tokens.HasMoreTokens())
{ {
@@ -671,17 +676,17 @@ wxFileDialog::wxFileDialog(wxWindow *parent,
SetAutoLayout( TRUE ); SetAutoLayout( TRUE );
SetSizer( mainsizer ); SetSizer( mainsizer );
mainsizer->Fit( this ); mainsizer->Fit( this );
mainsizer->SetSizeHints( this ); mainsizer->SetSizeHints( this );
Centre( wxBOTH ); Centre( wxBOTH );
if (m_fileName.IsEmpty()) if (m_fileName.IsEmpty())
m_list->SetFocus(); m_list->SetFocus();
else else
m_text->SetFocus(); m_text->SetFocus();
wxEndBusyCursor(); wxEndBusyCursor();
} }
@@ -722,14 +727,14 @@ void wxFileDialog::OnListOk( wxCommandEvent &event )
m_list->GetDir( dir ); m_list->GetDir( dir );
if (filename.IsEmpty()) return; if (filename.IsEmpty()) return;
if (filename == _T(".")) return; if (filename == _T(".")) return;
if (filename == _T("..")) if (filename == _T(".."))
{ {
m_list->GoToParentDir(); m_list->GoToParentDir();
m_list->SetFocus(); m_list->SetFocus();
m_list->GetDir( dir ); m_list->GetDir( dir );
m_static->SetLabel( dir ); m_static->SetLabel( dir );
return; return;
} }
if (filename == _T("~")) if (filename == _T("~"))
@@ -738,28 +743,28 @@ void wxFileDialog::OnListOk( wxCommandEvent &event )
m_list->SetFocus(); m_list->SetFocus();
m_list->GetDir( dir ); m_list->GetDir( dir );
m_static->SetLabel( dir ); m_static->SetLabel( dir );
return; return;
} }
if (filename[0] == _T('~')) if (filename[0] == _T('~'))
{ {
filename.Remove( 0, 1 ); filename.Remove( 0, 1 );
wxString tmp( wxGetUserHome() ); wxString tmp( wxGetUserHome() );
tmp += _T('/'); tmp += _T('/');
tmp += filename; tmp += filename;
filename = tmp; filename = tmp;
} }
if ((filename.Find(_T('*')) != wxNOT_FOUND) || if ((filename.Find(_T('*')) != wxNOT_FOUND) ||
(filename.Find(_T('?')) != wxNOT_FOUND)) (filename.Find(_T('?')) != wxNOT_FOUND))
{ {
if (filename.Find(_T('/')) != wxNOT_FOUND) if (filename.Find(_T('/')) != wxNOT_FOUND)
{ {
wxMessageBox(_("Illegal file specification."), _("Error"), wxOK | wxICON_ERROR ); wxMessageBox(_("Illegal file specification."), _("Error"), wxOK | wxICON_ERROR );
return; return;
} }
m_list->SetWild( filename ); m_list->SetWild( filename );
return; return;
} }
if (dir != _T("/")) dir += _T("/"); if (dir != _T("/")) dir += _T("/");
@@ -768,19 +773,19 @@ void wxFileDialog::OnListOk( wxCommandEvent &event )
dir += filename; dir += filename;
filename = dir; filename = dir;
} }
if (wxDirExists(filename)) if (wxDirExists(filename))
{ {
m_list->GoToDir( filename ); m_list->GoToDir( filename );
if (filename == _T("/")) if (filename == _T("/"))
m_text->SetValue( _T("") ); m_text->SetValue( _T("") );
else else
m_text->SetValue( _T("..") ); m_text->SetValue( _T("..") );
m_list->GetDir( dir ); m_list->GetDir( dir );
m_static->SetLabel( dir ); m_static->SetLabel( dir );
return; return;
} }
if ( (m_dialogStyle & wxSAVE) && (m_dialogStyle & wxOVERWRITE_PROMPT) ) if ( (m_dialogStyle & wxSAVE) && (m_dialogStyle & wxOVERWRITE_PROMPT) )
{ {
if (wxFileExists( filename )) if (wxFileExists( filename ))
@@ -849,14 +854,14 @@ void wxFileDialog::SetPath( const wxString& path )
{ {
wxString ext; wxString ext;
wxSplitPath(path, &m_dir, &m_fileName, &ext); wxSplitPath(path, &m_dir, &m_fileName, &ext);
if (!ext.IsEmpty()) if (!ext.IsEmpty())
{ {
m_fileName += _T("."); m_fileName += _T(".");
m_fileName += ext; m_fileName += ext;
} }
} }
} }
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// global functions // global functions
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------