1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/unix/apptrait.h
3 // Purpose: standard implementations of wxAppTraits for Unix
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_UNIX_APPTRAIT_H_
13 #define _WX_UNIX_APPTRAIT_H_
15 // ----------------------------------------------------------------------------
16 // wxGUI/ConsoleAppTraits: must derive from wxAppTraits, not wxAppTraitsBase
17 // ----------------------------------------------------------------------------
19 class WXDLLIMPEXP_BASE wxConsoleAppTraits
: public wxConsoleAppTraitsBase
22 #if wxUSE_CONSOLE_EVENTLOOP
23 virtual wxEventLoopBase
*CreateEventLoop();
24 #endif // wxUSE_CONSOLE_EVENTLOOP
26 virtual wxTimerImpl
*CreateTimerImpl(wxTimer
*timer
);
32 class WXDLLEXPORT wxGUIAppTraits
: public wxGUIAppTraitsBase
35 virtual wxEventLoopBase
*CreateEventLoop();
36 virtual int WaitForChild(wxExecuteData
& execData
);
37 #if defined(__WXGTK__) || defined(__WXMOTIF__)
38 virtual int AddProcessCallback(wxEndProcessData
*data
, int fd
);
41 virtual wxTimerImpl
*CreateTimerImpl(wxTimer
*timer
);
43 #if wxUSE_THREADS && defined(__WXGTK20__)
44 virtual void MutexGuiEnter();
45 virtual void MutexGuiLeave();
48 #if (defined(__WXMAC__) || defined(__WXCOCOA__)) && wxUSE_STDPATHS
49 virtual wxStandardPathsBase
& GetStandardPaths();
51 virtual wxPortId
GetToolkitVersion(int *majVer
= NULL
, int *minVer
= NULL
) const;
53 #if defined(__WXGTK__) && wxUSE_INTL
54 virtual void SetLocale();
58 virtual wxString
GetDesktopEnvironment() const;
59 virtual wxString
GetStandardCmdLineOptions(wxArrayString
& names
,
60 wxArrayString
& desc
) const;
61 #endif // __WXGTK20____
63 #if defined(__WXDEBUG__) && defined(__WXGTK20__)
64 virtual bool ShowAssertDialog(const wxString
& msg
);
67 // GTK+ and Motif integrate sockets directly in their main loop, the other
68 // Unix ports do it at wxEventLoop level
70 // TODO: Should we use XtAddInput() for wxX11 too? Or, vice versa, if there
71 // is no advantage in doing this compared to the generic way
72 // currently used by wxX11, should we continue to use GTK/Motif-
74 #if wxUSE_SOCKETS && (defined(__WXGTK__) || defined(__WXMOTIF__))
75 virtual GSocketManager
*GetSocketManager();
81 #endif // _WX_UNIX_APPTRAIT_H_