]> git.saurik.com Git - wxWidgets.git/blob - include/wx/private/eventloopsourcesmanager.h
Add wxMenuItem::IsCheck() and IsRadio() accessors.
[wxWidgets.git] / include / wx / private / eventloopsourcesmanager.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/private/eventloopsourcesmanager.h
3 // Purpose: declares wxEventLoopSourcesManagerBase class
4 // Author: Rob Bresalier
5 // Created: 2013-06-19
6 // RCS-ID: $Id$
7 // Copyright: (c) 2013 Rob Bresalier
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_PRIVATE_EVENTLOOPSOURCESMANAGER_H_
12 #define _WX_PRIVATE_EVENTLOOPSOURCESMANAGER_H_
13
14 // For pulling in the value of wxUSE_EVENTLOOP_SOURCE
15 #include "wx/evtloop.h"
16
17 class WXDLLIMPEXP_BASE wxEventLoopSourcesManagerBase
18 {
19 public:
20 #if wxUSE_EVENTLOOP_SOURCE
21 virtual wxEventLoopSource*
22 AddSourceForFD(int fd, wxEventLoopSourceHandler *handler, int flags) = 0;
23 #endif
24 };
25
26 #endif // _WX_PRIVATE_EVENTLOOPSOURCESMANAGER_H_