| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: wx/cocoa/stattext.h |
| 3 | // Purpose: wxStaticText class |
| 4 | // Author: David Elliott |
| 5 | // Modified by: |
| 6 | // Created: 2003/02/15 |
| 7 | // RCS-ID: $Id: |
| 8 | // Copyright: (c) 2003 David Elliott |
| 9 | // Licence: wxWindows licence |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifndef __WX_COCOA_STATTEXT_H__ |
| 13 | #define __WX_COCOA_STATTEXT_H__ |
| 14 | |
| 15 | #include "wx/cocoa/NSTextField.h" |
| 16 | |
| 17 | // ======================================================================== |
| 18 | // wxStaticText |
| 19 | // ======================================================================== |
| 20 | class WXDLLEXPORT wxStaticText : public wxStaticTextBase, protected wxCocoaNSTextField |
| 21 | { |
| 22 | DECLARE_DYNAMIC_CLASS(wxStaticText) |
| 23 | DECLARE_EVENT_TABLE() |
| 24 | WX_DECLARE_COCOA_OWNER(NSTextField,NSControl,NSView) |
| 25 | // ------------------------------------------------------------------------ |
| 26 | // initialization |
| 27 | // ------------------------------------------------------------------------ |
| 28 | public: |
| 29 | wxStaticText() {} |
| 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) |
| 35 | { |
| 36 | Create(parent, winid, label, pos, size, style, name); |
| 37 | } |
| 38 | |
| 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(); |
| 45 | |
| 46 | // ------------------------------------------------------------------------ |
| 47 | // Cocoa specifics |
| 48 | // ------------------------------------------------------------------------ |
| 49 | protected: |
| 50 | virtual void Cocoa_didChangeText(void); |
| 51 | // ------------------------------------------------------------------------ |
| 52 | // Implementation |
| 53 | // ------------------------------------------------------------------------ |
| 54 | public: |
| 55 | void SetLabel(const wxString& label); |
| 56 | }; |
| 57 | |
| 58 | #endif // __WX_COCOA_STATTEXT_H__ |