1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/stattext.h
3 // Purpose: wxStaticText class
4 // Author: David Elliott
8 // Copyright: (c) 2003 David Elliott
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef __WX_COCOA_STATTEXT_H__
13 #define __WX_COCOA_STATTEXT_H__
15 #include "wx/cocoa/NSTextField.h"
17 // ========================================================================
19 // ========================================================================
20 class WXDLLIMPEXP_CORE wxStaticText
: public wxStaticTextBase
, protected wxCocoaNSTextField
22 DECLARE_DYNAMIC_CLASS(wxStaticText
)
24 WX_DECLARE_COCOA_OWNER(NSTextField
,NSControl
,NSView
)
25 // ------------------------------------------------------------------------
27 // ------------------------------------------------------------------------
30 wxStaticText(wxWindow
*parent
, wxWindowID winid
,
31 const wxString
& label
,
32 const wxPoint
& pos
= wxDefaultPosition
,
33 const wxSize
& size
= wxDefaultSize
, long style
= 0,
34 const wxString
& name
= wxStaticTextNameStr
)
36 Create(parent
, winid
, label
, pos
, size
, style
, name
);
39 bool Create(wxWindow
*parent
, wxWindowID winid
,
40 const wxString
& label
,
41 const wxPoint
& pos
= wxDefaultPosition
,
42 const wxSize
& size
= wxDefaultSize
, long style
= 0,
43 const wxString
& name
= wxStaticTextNameStr
);
44 virtual ~wxStaticText();
46 // ------------------------------------------------------------------------
48 // ------------------------------------------------------------------------
50 virtual void Cocoa_didChangeText(void);
51 // ------------------------------------------------------------------------
53 // ------------------------------------------------------------------------
55 virtual void SetLabel(const wxString
& label
);
56 virtual wxString
GetLabel() const;
59 #endif // __WX_COCOA_STATTEXT_H__