int FilterIndex = 0;
wxString pathTmp = wxFileSelectorEx(_("Select a file"),
- wxT(""),
+ m_lastDirectory,
wxT(""),
&FilterIndex,
descrBuf,
if (!pathTmp.IsEmpty())
{
+ m_lastDirectory = wxPathOnly(pathTmp);
+
path = pathTmp;
wxString theExt = FindExtension(path);
if (!theExt)
{
wxMenu* menu = (wxMenu*) node->Data();
- // wxMenu::Delete() is missing from wxGTK, so this can't be done :-(
-#if 0
- // delete the menu items
- menu->Delete(wxID_FILE1 + i);
-#endif
-
// delete the element from the array (could use memmove() too...)
delete [] m_fileHistory[i];
menu->SetLabel(wxID_FILE1 + j, buf);
}
- // to be removed as soon as wxMenu::Delete() is implemented
-#if 1
- menu->SetLabel(wxID_FILE1 + m_fileHistoryN - 1, wxT(""));
-#endif
-
node = node->Next();
+
+ // delete the last menu item which is unused now
+ menu->Delete(wxID_FILE1 + m_fileHistoryN - 1);
+
+ // unfortunately, we can't delete separator (there is no function to
+ // delete item by position, only by id - and what if there are several
+ // separators in this menu?) - so we will be always left with at least
+ // one and, even worse, we will add another one if this was the last
+ // file... (FIXME)
}
+
m_fileHistoryN--;
}
wxString wxFileHistory::GetHistoryFile(int i) const
{
- if (i < m_fileHistoryN)
- return wxString(m_fileHistory[i]);
+ wxString s;
+ if ( i < m_fileHistoryN )
+ {
+ s = m_fileHistory[i];
+ }
else
- return wxString("");
+ {
+ wxFAIL_MSG( wxT("bad index in wxFileHistory::GetHistoryFile") );
+ }
+
+ return s;
}
void wxFileHistory::UseMenu(wxMenu *menu)