]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/stattext.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxStaticText class
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_STATTEXT_H_
13 #define _WX_STATTEXT_H_
16 #pragma interface "stattext.h"
19 #include "wx/control.h"
21 WXDLLEXPORT_DATA(extern const char*) wxStaticTextNameStr
;
23 class WXDLLEXPORT wxStaticText
: public wxControl
25 DECLARE_DYNAMIC_CLASS(wxStaticText
)
27 inline wxStaticText() { }
29 inline wxStaticText(wxWindow
*parent
, wxWindowID id
,
30 const wxString
& label
,
31 const wxPoint
& pos
= wxDefaultPosition
,
32 const wxSize
& size
= wxDefaultSize
,
34 const wxString
& name
= wxStaticTextNameStr
)
36 Create(parent
, id
, label
, pos
, size
, style
, name
);
39 bool Create(wxWindow
*parent
, wxWindowID id
,
40 const wxString
& label
,
41 const wxPoint
& pos
= wxDefaultPosition
,
42 const wxSize
& size
= wxDefaultSize
,
44 const wxString
& name
= wxStaticTextNameStr
);
47 void SetLabel( const wxString
&str
) ;
49 virtual void Command(wxCommandEvent
& WXUNUSED(event
)) {};
50 virtual void ProcessCommand(wxCommandEvent
& WXUNUSED(event
)) {};
52 void OnPaint( wxPaintEvent
&event
) ;
53 void OnDraw( wxDC
&dc
) ;
54 wxSize
DoGetBestSize() const ;
55 virtual bool AcceptsFocus() const { return FALSE
; }