2011-03-20 18:05:19 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/nativewin.h
|
|
|
|
// Purpose: classes allowing to wrap a native window handle
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Created: 2008-03-05
|
|
|
|
// Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwindows.org>
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_NATIVEWIN_H_
|
|
|
|
#define _WX_NATIVEWIN_H_
|
|
|
|
|
|
|
|
#include "wx/toplevel.h"
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
// These symbols can be tested in the user code to see if the current wx port
|
|
|
|
// has support for creating wxNativeContainerWindow and wxNativeWindow from
|
|
|
|
// native windows.
|
2011-03-20 18:05:19 +00:00
|
|
|
//
|
2016-06-26 05:25:29 +00:00
|
|
|
// Be optimistic by default, we undefine them below if necessary.
|
2011-03-20 18:05:19 +00:00
|
|
|
#define wxHAS_NATIVE_CONTAINER_WINDOW
|
2016-06-26 05:25:29 +00:00
|
|
|
#define wxHAS_NATIVE_WINDOW
|
2011-03-20 18:05:19 +00:00
|
|
|
|
|
|
|
// we define the following typedefs for each of the platform supporting native
|
|
|
|
// windows wrapping:
|
|
|
|
//
|
|
|
|
// - wxNativeContainerWindowHandle is the toolkit-level handle of the native
|
|
|
|
// window, i.e. HWND/GdkWindow*/NSWindow
|
|
|
|
//
|
|
|
|
// - wxNativeContainerWindowId is the lowest level identifier of the native
|
|
|
|
// window, i.e. HWND/GdkNativeWindow/NSWindow (so it's the same as above for
|
|
|
|
// all platforms except GTK where we also can work with Window/XID)
|
|
|
|
//
|
2016-06-26 05:25:29 +00:00
|
|
|
// - wxNativeWindowHandle for child windows, i.e. HWND/GtkWidget*/NSControl
|
2011-03-20 18:05:19 +00:00
|
|
|
#if defined(__WXMSW__)
|
|
|
|
#include "wx/msw/wrapwin.h"
|
|
|
|
|
|
|
|
typedef HWND wxNativeContainerWindowId;
|
|
|
|
typedef HWND wxNativeContainerWindowHandle;
|
2016-06-26 05:25:29 +00:00
|
|
|
typedef HWND wxNativeWindowHandle;
|
2011-03-20 18:05:19 +00:00
|
|
|
#elif defined(__WXGTK__)
|
2016-06-26 05:25:29 +00:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2013-09-22 22:44:55 +00:00
|
|
|
// GdkNativeWindow is guint32 under GDK/X11 and gpointer under GDK/WIN32
|
|
|
|
#ifdef __UNIX__
|
|
|
|
typedef unsigned long wxNativeContainerWindowId;
|
|
|
|
#else
|
|
|
|
typedef void *wxNativeContainerWindowId;
|
|
|
|
#endif
|
2011-03-20 18:05:19 +00:00
|
|
|
typedef GdkWindow *wxNativeContainerWindowHandle;
|
2016-06-26 05:25:29 +00:00
|
|
|
typedef GtkWidget *wxNativeWindowHandle;
|
|
|
|
#elif defined(__WXOSX_COCOA__)
|
|
|
|
typedef NSView *wxNativeWindowHandle;
|
|
|
|
|
|
|
|
// no support for using native TLWs yet
|
|
|
|
#undef wxHAS_NATIVE_CONTAINER_WINDOW
|
2011-03-20 18:05:19 +00:00
|
|
|
#else
|
|
|
|
// no support for using native windows under this platform yet
|
|
|
|
#undef wxHAS_NATIVE_CONTAINER_WINDOW
|
2016-06-26 05:25:29 +00:00
|
|
|
#undef wxHAS_NATIVE_WINDOW
|
2011-03-20 18:05:19 +00:00
|
|
|
#endif
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
#ifdef wxHAS_NATIVE_WINDOW
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxNativeWindow: for using native windows inside wxWidgets windows
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_CORE wxNativeWindow : public wxWindow
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Default ctor, Create() must be called later to really create the window.
|
|
|
|
wxNativeWindow()
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a window from an existing native window handle.
|
|
|
|
//
|
|
|
|
// Notice that this ctor doesn't take the usual pos and size parameters,
|
|
|
|
// they're taken from the window handle itself.
|
|
|
|
//
|
|
|
|
// Use GetHandle() to check if the creation was successful, it will return
|
|
|
|
// 0 if the handle was invalid.
|
|
|
|
wxNativeWindow(wxWindow* parent, wxWindowID winid, wxNativeWindowHandle handle)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
|
|
|
|
Create(parent, winid, handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Same as non-default ctor, but with a return code.
|
|
|
|
bool Create(wxWindow* parent, wxWindowID winid, wxNativeWindowHandle handle);
|
|
|
|
|
|
|
|
// By default the native window with which this wxWindow is associated is
|
|
|
|
// owned by the user code and needs to be destroyed by it in a platform
|
|
|
|
// specific way, however this function can be called to let wxNativeWindow
|
|
|
|
// dtor take care of destroying the native window instead of having to do
|
|
|
|
// it from the user code.
|
|
|
|
void Disown()
|
|
|
|
{
|
|
|
|
wxCHECK_RET( m_ownedByUser, wxS("Can't disown more than once") );
|
|
|
|
|
|
|
|
m_ownedByUser = false;
|
|
|
|
|
|
|
|
DoDisown();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __WXMSW__
|
|
|
|
// Prevent the native window, not owned by us, from being destroyed by the
|
|
|
|
// base class dtor, unless Disown() had been called.
|
|
|
|
virtual ~wxNativeWindow();
|
|
|
|
#endif // __WXMSW__
|
|
|
|
|
|
|
|
private:
|
|
|
|
void Init()
|
|
|
|
{
|
|
|
|
m_ownedByUser = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is implemented in platform-specific code.
|
|
|
|
void DoDisown();
|
|
|
|
|
|
|
|
// If the native widget owned by the user code.
|
|
|
|
bool m_ownedByUser;
|
|
|
|
|
|
|
|
wxDECLARE_NO_COPY_CLASS(wxNativeWindow);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // wxHAS_NATIVE_WINDOW
|
|
|
|
|
2011-03-20 18:05:19 +00:00
|
|
|
#ifdef wxHAS_NATIVE_CONTAINER_WINDOW
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxNativeContainerWindow: can be used for creating other wxWindows inside it
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_CORE wxNativeContainerWindow : public wxTopLevelWindow
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// default ctor, call Create() later
|
|
|
|
wxNativeContainerWindow() { }
|
|
|
|
|
|
|
|
// create a window from an existing native window handle
|
|
|
|
//
|
|
|
|
// use GetHandle() to check if the creation was successful, it will return
|
|
|
|
// 0 if the handle was invalid
|
|
|
|
wxNativeContainerWindow(wxNativeContainerWindowHandle handle)
|
|
|
|
{
|
|
|
|
Create(handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
// same as ctor above but with a return code
|
|
|
|
bool Create(wxNativeContainerWindowHandle handle);
|
|
|
|
|
|
|
|
#if defined(__WXGTK__)
|
|
|
|
// this is a convenient ctor for wxGTK applications which can also create
|
|
|
|
// the objects of this class from the really native window handles and not
|
|
|
|
// only the GdkWindow objects
|
|
|
|
//
|
|
|
|
// wxNativeContainerWindowId is Window (i.e. an XID, i.e. an int) under X11
|
|
|
|
// (when GDK_WINDOWING_X11 is defined) or HWND under Win32
|
|
|
|
wxNativeContainerWindow(wxNativeContainerWindowId winid) { Create(winid); }
|
|
|
|
|
|
|
|
bool Create(wxNativeContainerWindowId winid);
|
|
|
|
#endif // wxGTK
|
|
|
|
|
|
|
|
// unlike for the normal windows, dtor will not destroy the native window
|
|
|
|
// as it normally doesn't belong to us
|
|
|
|
virtual ~wxNativeContainerWindow();
|
|
|
|
|
|
|
|
|
|
|
|
// provide (trivial) implementation of the base class pure virtuals
|
2016-06-26 05:25:29 +00:00
|
|
|
virtual void SetTitle(const wxString& WXUNUSED(title)) wxOVERRIDE
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
wxFAIL_MSG( "not implemented for native windows" );
|
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
virtual wxString GetTitle() const wxOVERRIDE
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
wxFAIL_MSG( "not implemented for native windows" );
|
|
|
|
|
|
|
|
return wxString();
|
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
virtual void Maximize(bool WXUNUSED(maximize) = true) wxOVERRIDE
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
wxFAIL_MSG( "not implemented for native windows" );
|
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
virtual bool IsMaximized() const wxOVERRIDE
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
wxFAIL_MSG( "not implemented for native windows" );
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
virtual void Iconize(bool WXUNUSED(iconize) = true) wxOVERRIDE
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
wxFAIL_MSG( "not implemented for native windows" );
|
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
virtual bool IsIconized() const wxOVERRIDE
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
// this is called by wxGTK implementation so don't assert
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
virtual void Restore() wxOVERRIDE
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
wxFAIL_MSG( "not implemented for native windows" );
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool ShowFullScreen(bool WXUNUSED(show),
|
2016-06-26 05:25:29 +00:00
|
|
|
long WXUNUSED(style) = wxFULLSCREEN_ALL) wxOVERRIDE
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
wxFAIL_MSG( "not implemented for native windows" );
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
virtual bool IsFullScreen() const wxOVERRIDE
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
wxFAIL_MSG( "not implemented for native windows" );
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __WXMSW__
|
2016-06-26 05:25:29 +00:00
|
|
|
virtual bool IsShown() const wxOVERRIDE;
|
2011-03-20 18:05:19 +00:00
|
|
|
#endif // __WXMSW__
|
|
|
|
|
|
|
|
// this is an implementation detail: called when the native window is
|
|
|
|
// destroyed by an outside agency; deletes the C++ object too but can in
|
|
|
|
// principle be overridden to something else (knowing that the window
|
|
|
|
// handle of this object and all of its children is invalid any more)
|
|
|
|
virtual void OnNativeDestroyed();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
#ifdef __WXMSW__
|
|
|
|
virtual WXLRESULT
|
|
|
|
MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
|
|
|
|
#endif // __WXMSW__
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxDECLARE_NO_COPY_CLASS(wxNativeContainerWindow);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // wxHAS_NATIVE_CONTAINER_WINDOW
|
|
|
|
|
|
|
|
#endif // _WX_NATIVEWIN_H_
|
|
|
|
|