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
// Copyright: (c) Robert Roebling
// RCS-ID: $Id$
// Licence: wxWindows licence
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_FILEDLGG_H_
@@ -62,12 +62,12 @@ private:
bool m_isExe;
public:
wxFileData() {}
wxFileData() { }
wxFileData( const wxString &name, const wxString &fname );
wxString GetName() const;
wxString GetFullName() const;
wxString GetHint() const;
wxString GetEntry( const int num );
wxString GetEntry( int num );
bool IsDir();
bool IsLink();
bool IsExe();
@@ -92,11 +92,15 @@ private:
public:
wxFileCtrl();
wxFileCtrl( wxWindow *win, const wxWindowID id,
const wxString &dirName, const wxString &wild,
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
const long style = wxLC_LIST, const wxValidator &validator = wxDefaultValidator,
const wxString &name = _T("filelist") );
wxFileCtrl( wxWindow *win,
wxWindowID id,
const wxString &dirName,
const wxString &wild,
const wxPoint &pos = wxDefaultPosition,
const wxSize &size = wxDefaultSize,
long style = wxLC_LIST,
const wxValidator &validator = wxDefaultValidator,
const wxString &name = _T("filelist") );
void ChangeToListMode();
void ChangeToReportMode();
void ChangeToIconMode();
@@ -182,11 +186,14 @@ private:
DECLARE_EVENT_TABLE()
};
#define wxOPEN 1
#define wxSAVE 2
#define wxOVERWRITE_PROMPT 4
#define wxHIDE_READONLY 8
#define wxFILE_MUST_EXIST 16
enum
{
wxOPEN = 1,
wxSAVE = 2,
wxOVERWRITE_PROMPT = 4,
wxHIDE_READONLY = 8,
wxFILE_MUST_EXIST = 16
}
// File selector - backward compatibility
WXDLLEXPORT wxString

View File

@@ -6,7 +6,7 @@
// Created: 12/12/98
// RCS-ID: $Id$
// Copyright: (c) Robert Roebling
// Licence: wxWindows licence
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
@@ -56,12 +56,12 @@ static char * folder_xpm[] = {
/* width height ncolors chars_per_pixel */
"16 16 6 1",
/* colors */
" s None c None",
". c #000000",
"+ c #c0c0c0",
"@ c #808080",
"# c #ffff00",
"$ c #ffffff",
" s None c None",
". c #000000",
"+ c #c0c0c0",
"@ c #808080",
"# c #ffff00",
"$ c #ffffff",
/* 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
//-----------------------------------------------------------------------------
@@ -153,7 +169,7 @@ wxString wxFileData::GetHint() const
return s;
};
wxString wxFileData::GetEntry( const int num )
wxString wxFileData::GetEntry( int num )
{
wxString s;
switch (num)
@@ -291,17 +307,6 @@ void wxFileCtrl::ShowHidden( bool show )
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 ret = -1;
@@ -340,9 +345,9 @@ void wxFileCtrl::Update()
if (m_dirName != _T("/"))
{
wxString p( wxPathOnly(m_dirName) );
if (p.IsEmpty()) p = _T("/");
if (p.IsEmpty()) p = _T("/");
fd = new wxFileData( _T(".."), p );
Add( fd, item );
Add( fd, item );
item.m_itemId++;
}
@@ -355,7 +360,7 @@ void wxFileCtrl::Update()
wxString s = fd->GetName();
if (m_showHidden || (s[0] != _T('.')))
{
Add( fd, item );
Add( fd, item );
item.m_itemId++;
}
f = wxFindNextFile();
@@ -370,7 +375,7 @@ void wxFileCtrl::Update()
wxString s = fd->GetName();
if (m_showHidden || (s[0] != _T('.')))
{
Add( fd, item );
Add( fd, item );
item.m_itemId++;
}
f = wxFindNextFile();
@@ -395,24 +400,24 @@ void wxFileCtrl::MakeDir()
{
// try NewName0, NewName1 etc.
int i = 0;
do {
do {
new_name = _("NewName");
wxString num;
num.Printf( _T("%d"), i );
new_name += num;
wxString num;
num.Printf( _T("%d"), i );
new_name += num;
path = m_dirName;
path += _T("/");
path += new_name;
i++;
} while (wxFileExists(path));
i++;
} while (wxFileExists(path));
}
wxLogNull log;
if (!wxMkdir(path))
{
wxMessageDialog dialog(this, _("Operation not permitted."), _("Error"), wxOK | wxICON_ERROR );
dialog.ShowModal();
dialog.ShowModal();
return;
}
@@ -425,7 +430,7 @@ void wxFileCtrl::MakeDir()
if (id != -1)
{
SortItems( ListCompare, 0 );
id = FindItem( 0, (long)fd );
id = FindItem( 0, (long)fd );
EnsureVisible( id );
EditLabel( id );
}
@@ -435,16 +440,16 @@ void wxFileCtrl::GoToParentDir()
{
if (m_dirName != _T("/"))
{
wxString fname( wxFileNameFromPath(m_dirName) );
wxString fname( wxFileNameFromPath(m_dirName) );
m_dirName = wxPathOnly( m_dirName );
if (m_dirName.IsEmpty()) m_dirName = _T("/");
if (m_dirName.IsEmpty()) m_dirName = _T("/");
Update();
int id = FindItem( 0, fname );
if (id != -1)
{
SetItemState( id, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
EnsureVisible( id );
}
int id = FindItem( 0, fname );
if (id != -1)
{
SetItemState( id, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
EnsureVisible( id );
}
}
}
@@ -484,12 +489,12 @@ void wxFileCtrl::OnListEndLabelEdit( wxListEvent &event )
if ((event.GetLabel().IsEmpty()) ||
(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 );
dialog.ShowModal();
dialog.ShowModal();
event.Veto();
return;
return;
}
wxString new_name( wxPathOnly( fd->GetFullName() ) );
@@ -501,20 +506,20 @@ void wxFileCtrl::OnListEndLabelEdit( wxListEvent &event )
if (wxFileExists(new_name))
{
wxMessageDialog dialog(this, _("File name exists already."), _("Error"), wxOK | wxICON_ERROR );
dialog.ShowModal();
dialog.ShowModal();
event.Veto();
}
if (wxRenameFile(fd->GetFullName(),new_name))
{
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() );
}
else
{
wxMessageDialog dialog(this, _("Operation not permitted."), _("Error"), wxOK | wxICON_ERROR );
dialog.ShowModal();
dialog.ShowModal();
event.Veto();
}
}
@@ -543,9 +548,9 @@ BEGIN_EVENT_TABLE(wxFileDialog,wxDialog)
EVT_BUTTON(ID_NEW_DIR, wxFileDialog::OnNew)
EVT_BUTTON(wxID_OK, wxFileDialog::OnListOk)
EVT_LIST_ITEM_SELECTED(ID_LIST_CTRL, wxFileDialog::OnSelected)
EVT_LIST_ITEM_ACTIVATED(ID_LIST_CTRL, wxFileDialog::OnActivated)
EVT_CHOICE(ID_CHOICE,wxFileDialog::OnChoice)
EVT_TEXT_ENTER(ID_TEXT,wxFileDialog::OnTextEnter)
EVT_LIST_ITEM_ACTIVATED(ID_LIST_CTRL, wxFileDialog::OnActivated)
EVT_CHOICE(ID_CHOICE,wxFileDialog::OnChoice)
EVT_TEXT_ENTER(ID_TEXT,wxFileDialog::OnTextEnter)
END_EVENT_TABLE()
wxFileDialog::wxFileDialog(wxWindow *parent,
@@ -565,7 +570,7 @@ wxFileDialog::wxFileDialog(wxWindow *parent,
if (m_dir.IsEmpty())
{
char buf[200];
m_dir = getcwd( buf, sizeof(buf) );
m_dir = getcwd( buf, sizeof(buf) );
}
m_path = defaultDir;
m_path += _T("/");
@@ -729,7 +734,7 @@ void wxFileDialog::OnListOk( wxCommandEvent &event )
m_list->SetFocus();
m_list->GetDir( dir );
m_static->SetLabel( dir );
return;
return;
}
if (filename == _T("~"))
@@ -738,28 +743,28 @@ void wxFileDialog::OnListOk( wxCommandEvent &event )
m_list->SetFocus();
m_list->GetDir( dir );
m_static->SetLabel( dir );
return;
return;
}
if (filename[0] == _T('~'))
{
filename.Remove( 0, 1 );
wxString tmp( wxGetUserHome() );
tmp += _T('/');
tmp += filename;
filename = tmp;
wxString tmp( wxGetUserHome() );
tmp += _T('/');
tmp += filename;
filename = tmp;
}
if ((filename.Find(_T('*')) != wxNOT_FOUND) ||
(filename.Find(_T('?')) != wxNOT_FOUND))
{
if (filename.Find(_T('/')) != wxNOT_FOUND)
{
{
wxMessageBox(_("Illegal file specification."), _("Error"), wxOK | wxICON_ERROR );
return;
}
m_list->SetWild( filename );
return;
return;
}
m_list->SetWild( filename );
return;
}
if (dir != _T("/")) dir += _T("/");
@@ -772,13 +777,13 @@ void wxFileDialog::OnListOk( wxCommandEvent &event )
if (wxDirExists(filename))
{
m_list->GoToDir( filename );
if (filename == _T("/"))
m_text->SetValue( _T("") );
else
m_text->SetValue( _T("..") );
if (filename == _T("/"))
m_text->SetValue( _T("") );
else
m_text->SetValue( _T("..") );
m_list->GetDir( dir );
m_static->SetLabel( dir );
return;
return;
}
if ( (m_dialogStyle & wxSAVE) && (m_dialogStyle & wxOVERWRITE_PROMPT) )
@@ -849,11 +854,11 @@ void wxFileDialog::SetPath( const wxString& path )
{
wxString ext;
wxSplitPath(path, &m_dir, &m_fileName, &ext);
if (!ext.IsEmpty())
{
m_fileName += _T(".");
if (!ext.IsEmpty())
{
m_fileName += _T(".");
m_fileName += ext;
}
}
}
}