initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
51
libs/wxWidgets-3.3.1/include/wx/xrc/xh_aui.h
Normal file
51
libs/wxWidgets-3.3.1/include/wx/xrc/xh_aui.h
Normal file
@@ -0,0 +1,51 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/xrc/xh_aui.h
|
||||
// Purpose: XRC resource handler for wxAUI
|
||||
// Author: Andrea Zanellato, Steve Lamerton (wxAuiNotebook)
|
||||
// Created: 2011-09-18
|
||||
// Copyright: (c) 2011 wxWidgets Team
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_XH_AUI_H_
|
||||
#define _WX_XH_AUI_H_
|
||||
|
||||
#include "wx/xrc/xmlres.h"
|
||||
|
||||
#if wxUSE_XRC && wxUSE_AUI
|
||||
|
||||
#include "wx/vector.h"
|
||||
|
||||
class WXDLLIMPEXP_FWD_AUI wxAuiManager;
|
||||
class WXDLLIMPEXP_FWD_AUI wxAuiNotebook;
|
||||
|
||||
class WXDLLIMPEXP_AUI wxAuiXmlHandler : public wxXmlResourceHandler
|
||||
{
|
||||
public:
|
||||
wxAuiXmlHandler();
|
||||
virtual wxObject *DoCreateResource() override;
|
||||
virtual bool CanHandle(wxXmlNode *node) override;
|
||||
|
||||
// Returns the wxAuiManager for the specified window
|
||||
wxAuiManager *GetAuiManager(wxWindow *managed) const;
|
||||
|
||||
private:
|
||||
// Used to UnInit() the wxAuiManager before destroying its managed window
|
||||
void OnManagedWindowClose(wxWindowDestroyEvent &event);
|
||||
|
||||
typedef wxVector<wxAuiManager*> Managers;
|
||||
Managers m_managers; // all wxAuiManagers created in this handler
|
||||
|
||||
wxAuiManager *m_manager; // Current wxAuiManager
|
||||
wxWindow *m_window; // Current managed wxWindow
|
||||
wxAuiNotebook *m_notebook;
|
||||
|
||||
bool m_mgrInside; // Are we handling a wxAuiManager or panes inside it?
|
||||
bool m_anbInside; // Are we handling a wxAuiNotebook or pages inside it?
|
||||
|
||||
wxDECLARE_DYNAMIC_CLASS(wxAuiXmlHandler);
|
||||
};
|
||||
|
||||
#endif //wxUSE_XRC && wxUSE_AUI
|
||||
|
||||
#endif //_WX_XH_AUI_H_
|
||||
Reference in New Issue
Block a user