⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wxswindow.h

📁 非常好用的可移植的多平台C/C++源代码编辑器
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -