Added wxWakeUpIdle() to wxGTK,

Changed wxFindFile to detect hidden files (but not "." and ".." as before),
  Added "show hidden files" to file dialog,
  Added controls to wxToolBar,
  doc view now uses pretty file dialogs as per MSW.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4553 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-11-14 15:14:23 +00:00
parent c0ab6adfed
commit bf9e3e7367
15 changed files with 174 additions and 48 deletions

View File

@@ -611,10 +611,7 @@ void wxEvtHandler::AddPendingEvent(wxEvent& event)
// TODO: Wake up idle handler for the other platforms.
#ifdef __WXGTK__
extern bool g_isIdle;
extern void wxapp_install_idle_handler();
if ( g_isIdle )
wxapp_install_idle_handler();
wxWakeUpIdle();
#elif wxUSE_GUI // this works for wxMSW, but may be for others too?
// might also send a dummy message to the top level window, this would
// probably be cleaner?