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
25 virtual bool CreateEndProcessPipe(wxExecuteData
& execData
);
26 virtual bool IsWriteFDOfEndProcessPipe(wxExecuteData
& execData
, int fd
);
27 virtual void DetachWriteFDOfEndProcessPipe(wxExecuteData
& execData
);
28 virtual int WaitForChild(wxExecuteData
& execData
);
30 virtual wxTimerImpl
*CreateTimerImpl(wxTimer
*timer
);
36 class WXDLLEXPORT wxGUIAppTraits
: public wxGUIAppTraitsBase
39 virtual wxEventLoopBase
*CreateEventLoop();
40 virtual bool CreateEndProcessPipe(wxExecuteData
& execData
);
41 virtual bool IsWriteFDOfEndProcessPipe(wxExecuteData
& execData
, int fd
);
42 virtual void DetachWriteFDOfEndProcessPipe(wxExecuteData
& execData
);
43 virtual int WaitForChild(wxExecuteData
& execData
);
45 virtual wxTimerImpl
*CreateTimerImpl(wxTimer
*timer
);
47 #if wxUSE_THREADS && defined(__WXGTK20__)
48 virtual void MutexGuiEnter();
49 virtual void MutexGuiLeave();
52 #if (defined(__WXMAC__) || defined(__WXCOCOA__)) && wxUSE_STDPATHS
53 virtual wxStandardPathsBase
& GetStandardPaths();
55 virtual wxPortId
GetToolkitVersion(int *majVer
, int *minVer
) const;
57 #if defined(__WXGTK__) && wxUSE_INTL
58 virtual void SetLocale();
62 virtual wxString
GetDesktopEnvironment() const;
63 virtual wxString
GetStandardCmdLineOptions(wxArrayString
& names
,
64 wxArrayString
& desc
) const;
65 #endif // __WXGTK20____
67 #if defined(__WXDEBUG__) && defined(__WXGTK20__)
68 virtual bool ShowAssertDialog(const wxString
& msg
);
71 // GTK+ and Motif integrate sockets directly in their main loop, the other
72 // Unix ports do it at wxEventLoop level
74 // TODO: Should we use XtAddInput() for wxX11 too? Or, vice versa, if there
75 // is no advantage in doing this compared to the generic way
76 // currently used by wxX11, should we continue to use GTK/Motif-
78 #if wxUSE_SOCKETS && (defined(__WXGTK__) || defined(__WXMOTIF__))
79 virtual GSocketManager
*GetSocketManager();
85 #endif // _WX_UNIX_APPTRAIT_H_