📄 stattext.h
字号:
/////////////////////////////////////////////////////////////////////////////// Name: stattext.h// Purpose: wxStaticText class// Author: David Webster// Modified by:// Created: 10/17/99// RCS-ID: $Id: stattext.h,v 1.12 2005/09/23 12:50:28 MR Exp $// Copyright: (c) David Webster// Licence: wxWindows licence/////////////////////////////////////////////////////////////////////////////#ifndef _WX_STATTEXT_H_#define _WX_STATTEXT_H_#include "wx/control.h"class WXDLLEXPORT wxStaticText : public wxStaticTextBase{public: inline wxStaticText() { } inline wxStaticText( wxWindow* pParent ,wxWindowID vId ,const wxString& rsLabel ,const wxPoint& rPos = wxDefaultPosition ,const wxSize& rSize = wxDefaultSize ,long lStyle = 0L ,const wxString& rsName = wxStaticTextNameStr ) { Create(pParent, vId, rsLabel, rPos, rSize, lStyle, rsName); } bool Create( wxWindow* pParent ,wxWindowID vId ,const wxString& rsLabel ,const wxPoint& rPos = wxDefaultPosition ,const wxSize& rSize = wxDefaultSize ,long lStyle = 0L ,const wxString& rsName = wxStaticTextNameStr ); // // Accessors // virtual void SetLabel(const wxString& rsLabel); virtual bool SetFont(const wxFont &rFont); // // Overriden base class virtuals // virtual bool AcceptsFocus() const { return FALSE; } // // Callbacks // virtual MRESULT OS2WindowProc( WXUINT uMsg ,WXWPARAM wParam ,WXLPARAM lParam );protected: virtual void DoSetSize( int nX ,int nY ,int nWidth ,int nHeight ,int nSizeFlags = wxSIZE_AUTO ); virtual wxSize DoGetBestSize(void) const;private: DECLARE_DYNAMIC_CLASS(wxStaticText)}; // end of CLASS wxStaticText#endif // _WX_STATTEXT_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -