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

📄 radiobut.h

📁 很牛的GUI源码wxWidgets-2.8.0.zip 可在多种平台下运行.
💻 H
字号:
///////////////////////////////////////////////////////////////////////////////// Name:        wx/univ/radiobut.h// Purpose:     wxRadioButton declaration// Author:      Vadim Zeitlin// Modified by:// Created:     10.09.00// RCS-ID:      $Id: radiobut.h,v 1.12 2005/09/23 12:50:47 MR Exp $// Copyright:   (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)// Licence:     wxWindows licence///////////////////////////////////////////////////////////////////////////////#ifndef _WX_UNIV_RADIOBUT_H_#define _WX_UNIV_RADIOBUT_H_#include "wx/checkbox.h"// ----------------------------------------------------------------------------// wxRadioButton// ----------------------------------------------------------------------------class WXDLLEXPORT wxRadioButton : public wxCheckBox{public:    // constructors    wxRadioButton() { Init(); }    wxRadioButton(wxWindow *parent,                  wxWindowID id,                  const wxString& label,                  const wxPoint& pos = wxDefaultPosition,                  const wxSize& size = wxDefaultSize,                  long style = 0,                  const wxValidator& validator = wxDefaultValidator,                  const wxString& name = wxRadioButtonNameStr)    {        Init();        Create(parent, id, label, pos, size, style, validator, name);    }    bool Create(wxWindow *parent,                wxWindowID id,                const wxString& label,                const wxPoint& pos = wxDefaultPosition,                const wxSize& size = wxDefaultSize,                long style = 0,                const wxValidator& validator = wxDefaultValidator,                const wxString& name = wxRadioButtonNameStr);    // override some base class methods    virtual void ChangeValue(bool value);protected:    // implement our own drawing    virtual void DoDraw(wxControlRenderer *renderer);    // we use the radio button bitmaps for size calculation    virtual wxSize GetBitmapSize() const;    // the radio button can only be cleared using this method, not    // ChangeValue() above - and it is protected as it can only be called by    // another radiobutton    void ClearValue();    // called when the radio button becomes checked: we clear all the buttons    // in the same group with us here    virtual void OnCheck();    // send event about radio button selection    virtual void SendEvent();private:    DECLARE_DYNAMIC_CLASS(wxRadioButton)};#endif // _WX_UNIV_RADIOBUT_H_

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -