📄 pane.h
字号:
/////////////////////////////////////////////////////////////////////////////
// Name: wx/msw/pane.h
// Purpose: wxPane class
// Author: Mark McCormack
// Modified by:
// Created: 28/12/03
// RCS-ID:
// Copyright:
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_PANE_H_
#define _WX_PANE_H_
#include <wx/dockit_defs.h>
#include <wx/msw/private.h> // wxMSW specifics
// ----------------------------------------------------------------------------
// Pane control
// ----------------------------------------------------------------------------
class WXDOCKIT_DECLSPEC wxPane : public wxPaneBase
{
public:
// Default constructor
wxPane() {
Init();
}
// Normal constructor
wxPane( wxWindow *parent, wxWindowID id = -1, const wxString& name = wxT("pane"), const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = wxTAB_TRAVERSAL ) {
Init();
Create( parent, id, name, pos, size, style );
}
virtual wxWindow * SetClient( wxWindow * pClient, bool removeBorder = false );
private:
DECLARE_DYNAMIC_CLASS(wxPane)
};
#endif
// _WX_PANE_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -