StatText coded
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9770 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
d143f2ad06
commit
6d167e3938
@ -27,37 +27,49 @@ class WXDLLEXPORT wxStaticText: public wxControl
|
|||||||
public:
|
public:
|
||||||
inline wxStaticText() { }
|
inline wxStaticText() { }
|
||||||
|
|
||||||
inline wxStaticText(wxWindow *parent, wxWindowID id,
|
inline wxStaticText( wxWindow* pParent
|
||||||
const wxString& label,
|
,wxWindowID vId
|
||||||
const wxPoint& pos = wxDefaultPosition,
|
,const wxString& rsLabel
|
||||||
const wxSize& size = wxDefaultSize,
|
,const wxPoint& rPos = wxDefaultPosition
|
||||||
long style = 0,
|
,const wxSize& rSize = wxDefaultSize
|
||||||
const wxString& name = wxStaticTextNameStr)
|
,long lStyle = 0L
|
||||||
|
,const wxString& rsName = wxStaticTextNameStr
|
||||||
|
)
|
||||||
{
|
{
|
||||||
Create(parent, id, label, pos, size, style, name);
|
Create(pParent, vId, rsLabel, rPos, rSize, lStyle, rsName);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Create(wxWindow *parent, wxWindowID id,
|
bool Create( wxWindow* pParent
|
||||||
const wxString& label,
|
,wxWindowID vId
|
||||||
const wxPoint& pos = wxDefaultPosition,
|
,const wxString& rsLabel
|
||||||
const wxSize& size = wxDefaultSize,
|
,const wxPoint& rPos = wxDefaultPosition
|
||||||
long style = 0,
|
,const wxSize& rSize = wxDefaultSize
|
||||||
const wxString& name = wxStaticTextNameStr);
|
,long lStyle = 0L
|
||||||
|
,const wxString& rsName = wxStaticTextNameStr
|
||||||
|
);
|
||||||
|
|
||||||
// accessors
|
//
|
||||||
|
// Accessors
|
||||||
|
//
|
||||||
void SetLabel(const wxString&);
|
void SetLabel(const wxString&);
|
||||||
|
bool SetFont(const wxFont &rFont);
|
||||||
|
|
||||||
// overriden base class virtuals
|
//
|
||||||
|
// Overriden base class virtuals
|
||||||
|
//
|
||||||
virtual bool AcceptsFocus() const { return FALSE; }
|
virtual bool AcceptsFocus() const { return FALSE; }
|
||||||
|
|
||||||
// callbacks
|
//
|
||||||
virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
|
// Callbacks
|
||||||
WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
|
//
|
||||||
virtual MRESULT OS2WindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
|
virtual MRESULT OS2WindowProc( WXUINT uMsg
|
||||||
|
,WXWPARAM wParam
|
||||||
|
,WXLPARAM lParam
|
||||||
|
);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual wxSize DoGetBestSize() const;
|
virtual wxSize DoGetBestSize(void) const;
|
||||||
};
|
}; // end of CLASS wxStaticText
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
// _WX_STATTEXT_H_
|
// _WX_STATTEXT_H_
|
||||||
|
Loading…
Reference in New Issue
Block a user