#endif
#include "wx/apptrait.h"
-
+#include "wx/gtk1/private/timer.h"
+#include "wx/evtloop.h"
#include "wx/process.h"
#include "wx/unix/execute.h"
return tag;
}
+wxTimerImpl* wxGUIAppTraits::CreateTimerImpl(wxTimer *timer)
+{
+ return new wxGTKTimerImpl(timer);
+}
+
// ----------------------------------------------------------------------------
// wxPlatformInfo-related
// ----------------------------------------------------------------------------
return wxPORT_GTK;
}
-wxString wxGUIAppTraits::GetDesktopEnvironment() const
+wxEventLoopBase* wxGUIAppTraits::CreateEventLoop()
{
- return wxEmptyString;
+ return new wxEventLoop;
}
+#if wxUSE_INTL
void wxGUIAppTraits::SetLocale()
{
gtk_set_locale();
}
+#endif