]> git.saurik.com Git - wxWidgets.git/blame - include/wx/unix/apptrait.h
Compilation fix after r62754.
[wxWidgets.git] / include / wx / unix / apptrait.h
CommitLineData
e2478fde
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/unix/apptrait.h
3// Purpose: standard implementations of wxAppTraits for Unix
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 23.06.2003
7// RCS-ID: $Id$
77ffb593 8// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
65571936 9// Licence: wxWindows licence
e2478fde
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_UNIX_APPTRAIT_H_
13#define _WX_UNIX_APPTRAIT_H_
14
15// ----------------------------------------------------------------------------
16// wxGUI/ConsoleAppTraits: must derive from wxAppTraits, not wxAppTraitsBase
17// ----------------------------------------------------------------------------
18
163b3ad7 19class WXDLLIMPEXP_BASE wxConsoleAppTraits : public wxConsoleAppTraitsBase
e2478fde
VZ
20{
21public:
a1873279 22#if wxUSE_CONSOLE_EVENTLOOP
2ddff00c 23 virtual wxEventLoopBase *CreateEventLoop();
a1873279 24#endif // wxUSE_CONSOLE_EVENTLOOP
c2ca375c
VZ
25#if wxUSE_TIMER
26 virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);
27#endif
e2478fde
VZ
28};
29
30#if wxUSE_GUI
31
13d4419b
VZ
32// GTK+ and Motif integrate sockets and child processes monitoring directly in
33// their main loop, the other Unix ports do it at wxEventLoop level and so use
34// the non-GUI traits and don't need anything here
35//
36// TODO: Should we use XtAddInput() for wxX11 too? Or, vice versa, if there is
37// no advantage in doing this compared to the generic way currently used
5815e959 38// by wxX11, should we continue to use GTK/Motif-specific stuff?
6bcc1145
VZ
39#if defined(__WXGTK__) || defined(__WXMOTIF__)
40 #define wxHAS_GUI_FDIOMANAGER
41 #define wxHAS_GUI_PROCESS_CALLBACKS
42#endif // ports using wxFDIOManager
43
44#if defined(__WXMAC__)
a0f4d368
VZ
45 #define wxHAS_GUI_PROCESS_CALLBACKS
46 #define wxHAS_GUI_SOCKET_MANAGER
47#endif
48
53a2db12 49class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase
e2478fde
VZ
50{
51public:
2ddff00c 52 virtual wxEventLoopBase *CreateEventLoop();
e2478fde 53 virtual int WaitForChild(wxExecuteData& execData);
a0f4d368 54#ifdef wxHAS_GUI_PROCESS_CALLBACKS
1d043598 55 virtual int AddProcessCallback(wxEndProcessData *data, int fd);
f0511417 56#endif
c2ca375c
VZ
57#if wxUSE_TIMER
58 virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);
59#endif
d254213e
PC
60#if wxUSE_THREADS && defined(__WXGTK20__)
61 virtual void MutexGuiEnter();
62 virtual void MutexGuiLeave();
63#endif
e2478fde 64
6ae3ead6 65#if (defined(__WXMAC__) || defined(__WXCOCOA__)) && wxUSE_STDPATHS
25f49256 66 virtual wxStandardPaths& GetStandardPaths();
fc480dc1 67#endif
1f5c6629 68 virtual wxPortId GetToolkitVersion(int *majVer = NULL, int *minVer = NULL) const;
db9febdf 69
b46b1d59 70#if defined(__WXGTK__) && wxUSE_INTL
d774f916 71 virtual void SetLocale();
b46b1d59
VZ
72#endif // __WXGTK__
73
74#ifdef __WXGTK20__
88bbc332 75 virtual wxString GetDesktopEnvironment() const;
d3a0a0ee
VZ
76 virtual wxString GetStandardCmdLineOptions(wxArrayString& names,
77 wxArrayString& desc) const;
b46b1d59 78#endif // __WXGTK20____
5807e60c 79
657a8a35 80#if defined(__WXGTK20__)
5807e60c 81 virtual bool ShowAssertDialog(const wxString& msg);
88bbc332 82#endif
2804f77d 83
6bcc1145
VZ
84#if wxUSE_SOCKETS
85
86#ifdef wxHAS_GUI_SOCKET_MANAGER
51fe4b60 87 virtual wxSocketManager *GetSocketManager();
2804f77d 88#endif
6bcc1145
VZ
89
90#ifdef wxHAS_GUI_FDIOMANAGER
91 virtual wxFDIOManager *GetFDIOManager();
92#endif
93
94#endif // wxUSE_SOCKETS
e2478fde
VZ
95};
96
97#endif // wxUSE_GUI
98
99#endif // _WX_UNIX_APPTRAIT_H_
100