2003-06-24 00:56:19 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/unix/apptrait.h
|
|
|
|
// Purpose: standard implementations of wxAppTraits for Unix
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 23.06.2003
|
|
|
|
// RCS-ID: $Id$
|
2004-05-23 14:56:36 +00:00
|
|
|
// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2003-06-24 00:56:19 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_UNIX_APPTRAIT_H_
|
|
|
|
#define _WX_UNIX_APPTRAIT_H_
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxGUI/ConsoleAppTraits: must derive from wxAppTraits, not wxAppTraitsBase
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2007-12-12 01:35:53 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxConsoleAppTraits : public wxConsoleAppTraitsBase
|
2003-06-24 00:56:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2007-07-14 19:06:18 +00:00
|
|
|
#if wxUSE_CONSOLE_EVENTLOOP
|
2007-05-22 02:30:01 +00:00
|
|
|
virtual wxEventLoopBase *CreateEventLoop();
|
2007-07-14 19:06:18 +00:00
|
|
|
#endif // wxUSE_CONSOLE_EVENTLOOP
|
2007-04-20 01:29:16 +00:00
|
|
|
#if wxUSE_TIMER
|
|
|
|
virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);
|
|
|
|
#endif
|
2003-06-24 00:56:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#if wxUSE_GUI
|
|
|
|
|
2008-04-10 10:44:06 +00:00
|
|
|
// GTK+ and Motif integrate sockets and child processes monitoring directly in
|
|
|
|
// their main loop, the other Unix ports do it at wxEventLoop level and so use
|
|
|
|
// the non-GUI traits and don't need anything here
|
|
|
|
//
|
|
|
|
// TODO: Should we use XtAddInput() for wxX11 too? Or, vice versa, if there is
|
|
|
|
// no advantage in doing this compared to the generic way currently used
|
|
|
|
// by wxX11, should we continue to use GTK/Motif- specific stuff?
|
2008-04-11 12:59:22 +00:00
|
|
|
#if defined(__WXGTK__) || defined(__WXMOTIF__)
|
|
|
|
#define wxHAS_GUI_PROCESS_CALLBACKS
|
|
|
|
#define wxHAS_GUI_SOCKET_MANAGER
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __DARWIN__
|
2008-04-11 13:01:34 +00:00
|
|
|
#define wxHAS_GUI_PROCESS_CALLBACKS
|
2008-04-10 10:44:06 +00:00
|
|
|
#endif
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase
|
2003-06-24 00:56:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2007-05-22 02:30:01 +00:00
|
|
|
virtual wxEventLoopBase *CreateEventLoop();
|
2003-06-24 00:56:19 +00:00
|
|
|
virtual int WaitForChild(wxExecuteData& execData);
|
2008-04-11 12:59:22 +00:00
|
|
|
#ifdef wxHAS_GUI_PROCESS_CALLBACKS
|
2008-03-22 00:07:13 +00:00
|
|
|
virtual int AddProcessCallback(wxEndProcessData *data, int fd);
|
2008-04-10 10:45:47 +00:00
|
|
|
#endif
|
2007-04-20 01:29:16 +00:00
|
|
|
#if wxUSE_TIMER
|
|
|
|
virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);
|
|
|
|
#endif
|
2007-12-17 05:37:00 +00:00
|
|
|
#if wxUSE_THREADS && defined(__WXGTK20__)
|
|
|
|
virtual void MutexGuiEnter();
|
|
|
|
virtual void MutexGuiLeave();
|
|
|
|
#endif
|
2003-06-24 00:56:19 +00:00
|
|
|
|
2007-06-15 15:21:57 +00:00
|
|
|
#if (defined(__WXMAC__) || defined(__WXCOCOA__)) && wxUSE_STDPATHS
|
2004-11-12 21:21:00 +00:00
|
|
|
virtual wxStandardPathsBase& GetStandardPaths();
|
|
|
|
#endif
|
2008-03-21 14:21:52 +00:00
|
|
|
virtual wxPortId GetToolkitVersion(int *majVer = NULL, int *minVer = NULL) const;
|
2006-11-24 10:55:26 +00:00
|
|
|
|
2007-05-14 23:43:39 +00:00
|
|
|
#if defined(__WXGTK__) && wxUSE_INTL
|
2007-03-12 01:46:14 +00:00
|
|
|
virtual void SetLocale();
|
2007-05-14 23:43:39 +00:00
|
|
|
#endif // __WXGTK__
|
|
|
|
|
|
|
|
#ifdef __WXGTK20__
|
2006-10-18 21:55:54 +00:00
|
|
|
virtual wxString GetDesktopEnvironment() const;
|
2007-04-22 20:54:07 +00:00
|
|
|
virtual wxString GetStandardCmdLineOptions(wxArrayString& names,
|
|
|
|
wxArrayString& desc) const;
|
2007-05-14 23:43:39 +00:00
|
|
|
#endif // __WXGTK20____
|
2006-11-24 11:33:53 +00:00
|
|
|
|
|
|
|
#if defined(__WXDEBUG__) && defined(__WXGTK20__)
|
|
|
|
virtual bool ShowAssertDialog(const wxString& msg);
|
2006-10-18 21:55:54 +00:00
|
|
|
#endif
|
2007-12-19 16:45:08 +00:00
|
|
|
|
2008-04-11 12:59:22 +00:00
|
|
|
#if wxUSE_SOCKETS && defined(wxHAS_GUI_SOCKET_MANAGER)
|
2008-11-28 12:47:07 +00:00
|
|
|
virtual wxSocketManager *GetSocketManager();
|
2007-12-19 16:45:08 +00:00
|
|
|
#endif
|
2003-06-24 00:56:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // wxUSE_GUI
|
|
|
|
|
|
|
|
#endif // _WX_UNIX_APPTRAIT_H_
|
|
|
|
|