mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07: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
81 lines
2.5 KiB
C++
81 lines
2.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/gtk/collpane.h
|
|
// Purpose: wxCollapsiblePane
|
|
// Author: Francesco Montorsi
|
|
// Modified by:
|
|
// Created: 8/10/2006
|
|
// RCS-ID: $Id: collpane.h 58632 2009-02-03 09:53:33Z RR $
|
|
// Copyright: (c) Francesco Montorsi
|
|
// Licence: wxWindows Licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_COLLAPSABLE_PANEL_H_GTK_
|
|
#define _WX_COLLAPSABLE_PANEL_H_GTK_
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxCollapsiblePane
|
|
// ----------------------------------------------------------------------------
|
|
|
|
class WXDLLIMPEXP_CORE wxCollapsiblePane : public wxCollapsiblePaneBase
|
|
{
|
|
public:
|
|
wxCollapsiblePane() { Init(); }
|
|
|
|
wxCollapsiblePane(wxWindow *parent,
|
|
wxWindowID winid,
|
|
const wxString& label,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
long style = wxCP_DEFAULT_STYLE,
|
|
const wxValidator& val = wxDefaultValidator,
|
|
const wxString& name = wxCollapsiblePaneNameStr)
|
|
{
|
|
Init();
|
|
|
|
Create(parent, winid, label, pos, size, style, val, name);
|
|
}
|
|
|
|
void Init()
|
|
{
|
|
m_bIgnoreNextChange = false;
|
|
}
|
|
|
|
bool Create(wxWindow *parent,
|
|
wxWindowID winid,
|
|
const wxString& label,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
long style = wxCP_DEFAULT_STYLE,
|
|
const wxValidator& val = wxDefaultValidator,
|
|
const wxString& name = wxCollapsiblePaneNameStr);
|
|
|
|
virtual void Collapse(bool collapse = true);
|
|
virtual bool IsCollapsed() const;
|
|
virtual void SetLabel(const wxString& str);
|
|
|
|
virtual wxWindow *GetPane() const { return m_pPane; }
|
|
virtual wxString GetLabel() const { return m_strLabel; }
|
|
|
|
protected:
|
|
virtual wxSize DoGetBestSize() const;
|
|
|
|
public: // used by GTK callbacks
|
|
bool m_bIgnoreNextChange;
|
|
wxSize m_szCollapsed;
|
|
|
|
wxWindow *m_pPane;
|
|
|
|
// the button label without ">>" or "<<"
|
|
wxString m_strLabel;
|
|
|
|
private:
|
|
void OnSize(wxSizeEvent&);
|
|
virtual void AddChildGTK(wxWindowGTK* child);
|
|
GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxCollapsiblePane)
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
#endif // _WX_COLLAPSABLE_PANEL_H_GTK_
|