xh_radbx.h
来自「wxGTK 是 wxWidgets 的 linux GTK+ (>2.2.」· C头文件 代码 · 共 44 行
H
44 行
/////////////////////////////////////////////////////////////////////////////// Name: wx/xrc/xh_radbx.h// Purpose: XML resource handler for wxRadioBox// Author: Bob Mitchell// Created: 2000/03/21// RCS-ID: $Id: xh_radbx.h,v 1.10 2006/10/03 14:53:32 VZ Exp $// Copyright: (c) 2000 Bob Mitchell and Verant Interactive// Licence: wxWindows licence/////////////////////////////////////////////////////////////////////////////#ifndef _WX_XH_RADBX_H_#define _WX_XH_RADBX_H_#include "wx/xrc/xmlres.h"#if wxUSE_XRC && wxUSE_RADIOBOXclass WXDLLIMPEXP_XRC wxRadioBoxXmlHandler : public wxXmlResourceHandler{ DECLARE_DYNAMIC_CLASS(wxRadioBoxXmlHandler)public: wxRadioBoxXmlHandler(); virtual wxObject *DoCreateResource(); virtual bool CanHandle(wxXmlNode *node);private: bool m_insideBox; // the items labels wxArrayString labels; // the items tooltips wxArrayString tooltips; // the item help text wxArrayString helptexts; wxArrayInt helptextSpecified;};#endif // wxUSE_XRC && wxUSE_RADIOBOX#endif // _WX_XH_RADBX_H_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?