| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: wx/unix/utilsx11.h |
| 3 | // Purpose: Miscellaneous X11 functions |
| 4 | // Author: Mattia Barbon |
| 5 | // Modified by: |
| 6 | // Created: 25.03.02 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) wxWindows team |
| 9 | // Licence: wxWindows license |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifndef _WX_UNIX_UTILSX11_H_ |
| 13 | #define _WX_UNIX_UTILSX11_H_ |
| 14 | |
| 15 | #include "wx/defs.h" |
| 16 | |
| 17 | #if defined(__WXMOTIF__) || defined(__WXGTK__) || defined(__WXX11__) |
| 18 | |
| 19 | #if defined(__WXGTK__) |
| 20 | typedef void WXDisplay; |
| 21 | typedef void* WXWindow; |
| 22 | #endif |
| 23 | |
| 24 | class wxIconBundle; |
| 25 | |
| 26 | void wxSetIconsX11( WXDisplay* display, WXWindow window, |
| 27 | const wxIconBundle& ib ); |
| 28 | |
| 29 | #endif |
| 30 | // __WXMOTIF__, __WXGTK__, __WXX11__ |
| 31 | |
| 32 | #endif |
| 33 | // _WX_UNIX_UTILSX11_H_ |