mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-13 01:29:11 +01:00
d14efe561b
long become wxWidgets 2.9.2, which in turn is expected to be the last 2.9 release before the 3.0 stable release. Since the full wxWidgets distribution is rather large, I have imported only the parts that we use, on a subdirectory basis: art include/wx/*.* include/wx/aui include/wx/cocoa include/wx/generic include/wx/gtk include/wx/meta include/wx/msw include/wx/osx include/wx/persist include/wx/private include/wx/protocol include/wx/unix src/aui src/common src/generic src/gtk src/msw src/osx src/unix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7380 8ced0084-cf51-0410-be5f-012b33b47a6e
80 lines
2.3 KiB
C++
80 lines
2.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/unix/utilsx11.h
|
|
// Purpose: Miscellaneous X11 functions
|
|
// Author: Mattia Barbon, Vaclav Slavik, Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 25.03.02
|
|
// RCS-ID: $Id: utilsx11.h 65397 2010-08-24 11:23:22Z JJ $
|
|
// Copyright: (c) wxWidgets team
|
|
// (c) 2010 Vadim Zeitlin
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_UNIX_UTILSX11_H_
|
|
#define _WX_UNIX_UTILSX11_H_
|
|
|
|
#include "wx/defs.h"
|
|
#include "wx/gdicmn.h"
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
// NB: Content of this header is for wxWidgets' private use! It is not
|
|
// part of public API and may be modified or even disappear in the future!
|
|
|
|
#if defined(__WXMOTIF__) || defined(__WXGTK__) || defined(__WXX11__)
|
|
|
|
#if defined(__WXGTK__)
|
|
typedef void WXDisplay;
|
|
typedef void* WXWindow;
|
|
#endif
|
|
typedef unsigned long WXKeySym;
|
|
|
|
int wxCharCodeXToWX(WXKeySym keySym);
|
|
WXKeySym wxCharCodeWXToX(int id);
|
|
|
|
class wxIconBundle;
|
|
|
|
void wxSetIconsX11( WXDisplay* display, WXWindow window,
|
|
const wxIconBundle& ib );
|
|
|
|
|
|
enum wxX11FullScreenMethod
|
|
{
|
|
wxX11_FS_AUTODETECT = 0,
|
|
wxX11_FS_WMSPEC,
|
|
wxX11_FS_KDE,
|
|
wxX11_FS_GENERIC
|
|
};
|
|
|
|
wxX11FullScreenMethod wxGetFullScreenMethodX11(WXDisplay* display,
|
|
WXWindow rootWindow);
|
|
|
|
void wxSetFullScreenStateX11(WXDisplay* display, WXWindow rootWindow,
|
|
WXWindow window, bool show, wxRect *origSize,
|
|
wxX11FullScreenMethod method);
|
|
|
|
|
|
// Class wrapping X11 Display: it opens it in ctor and closes it in dtor.
|
|
class wxX11Display
|
|
{
|
|
public:
|
|
wxX11Display() { m_dpy = XOpenDisplay(NULL); }
|
|
~wxX11Display() { if ( m_dpy ) XCloseDisplay(m_dpy); }
|
|
|
|
operator Display *() const { return m_dpy; }
|
|
|
|
// Using DefaultRootWindow() with an object of wxX11Display class doesn't
|
|
// compile because it is a macro which tries to cast wxX11Display so
|
|
// provide a convenient helper.
|
|
Window DefaultRoot() const { return DefaultRootWindow(m_dpy); }
|
|
|
|
private:
|
|
Display *m_dpy;
|
|
|
|
wxDECLARE_NO_COPY_CLASS(wxX11Display);
|
|
};
|
|
|
|
#endif // __WXMOTIF__, __WXGTK__, __WXX11__
|
|
|
|
#endif // _WX_UNIX_UTILSX11_H_
|