wxswindow.h
来自「非常好用的可移植的多平台C/C++源代码编辑器」· C头文件 代码 · 共 36 行
H
36 行
#ifndef WXSWINDOW_H
#define WXSWINDOW_H
#include "../wxscontainer.h"
#include "../wxswidgetevents.h"
/** This class is a base for wxsDialog, wxsFrame and wxsPanel classes */
class wxsWindow : public wxsContainer
{
public:
/** Ctor */
wxsWindow(wxsWidgetManager* Man,wxsWindowRes* Res, BasePropertiesType pType);
/** Dctor */
virtual ~wxsWindow();
/** Checking if can add new child */
virtual bool CanAddChild(wxsWidget* NewWidget,int InsertBeforeThis);
/** Own handler for adding children */
virtual int AddChild(wxsWidget* NewWidget,int InsertBeforeThis);
protected:
/** This function should create preview window for resource.
* All resources are drawn using wxPanel
*/
virtual wxWindow* MyCreatePreview(wxWindow* Parent);
/** Function shich should update content of current widget */
virtual void MyFinalUpdatePreview(wxWindow* Preview);
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?