mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -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
72 lines
2.3 KiB
C++
72 lines
2.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/osx/carbon/drawer.h
|
|
// Purpose: Drawer child window class.
|
|
// Drawer windows appear under their parent window and
|
|
// behave like a drawer, opening and closing to reveal
|
|
// content that does not need to be visible at all times.
|
|
// Author: Jason Bagley
|
|
// Modified by:
|
|
// Created: 2004-30-01
|
|
// RCS-ID: $Id: drawer.h 64943 2010-07-13 13:29:58Z VZ $
|
|
// Copyright: (c) Jason Bagley; Art & Logic, Inc.
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_DRAWERWINDOW_H_
|
|
#define _WX_DRAWERWINDOW_H_
|
|
|
|
#include "wx/toplevel.h"
|
|
|
|
//
|
|
// NB: This is currently a private undocumented class -
|
|
// it is stable, but the API is not and will change in the
|
|
// near future
|
|
//
|
|
|
|
#if ( MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_2 )
|
|
|
|
class WXDLLIMPEXP_ADV wxDrawerWindow : public wxTopLevelWindow
|
|
{
|
|
DECLARE_DYNAMIC_CLASS(wxDrawerWindow)
|
|
|
|
public:
|
|
|
|
wxDrawerWindow();
|
|
|
|
wxDrawerWindow(wxWindow* parent,
|
|
wxWindowID id,
|
|
const wxString& title,
|
|
wxSize size = wxDefaultSize,
|
|
wxDirection edge = wxLEFT,
|
|
const wxString& name = wxT("drawerwindow"))
|
|
{
|
|
this->Create(parent, id, title, size, edge, name);
|
|
}
|
|
|
|
virtual ~wxDrawerWindow();
|
|
|
|
// Create a drawer window.
|
|
// If parent is NULL, create as a tool window.
|
|
// If parent is not NULL, then wxTopLevelWindow::Attach this window to parent.
|
|
bool Create(wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxString& title,
|
|
wxSize size = wxDefaultSize,
|
|
wxDirection edge = wxLEFT,
|
|
const wxString& name = wxFrameNameStr);
|
|
|
|
bool Open(bool show = true); // open or close the drawer, possibility for async param, i.e. animate
|
|
bool Close() { return this->Open(false); }
|
|
bool IsOpen() const;
|
|
|
|
// Set the edge of the parent where the drawer attaches.
|
|
bool SetPreferredEdge(wxDirection edge);
|
|
wxDirection GetPreferredEdge() const;
|
|
wxDirection GetCurrentEdge() const; // not necessarily the preferred, due to screen constraints
|
|
};
|
|
|
|
#endif // defined( __WXMAC__ ) && TARGET_API_MAC_OSX && ( MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_2 )
|
|
|
|
#endif
|
|
// _WX_DRAWERWINDOW_H_
|