]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/carbon/statusbr.h
add a header placeholder
[wxWidgets.git] / include / wx / mac / carbon / statusbr.h
CommitLineData
8cf73271 1///////////////////////////////////////////////////////////////////////////////
3660902c
DS
2// Name: wx/mac/carbon/statusbr.h
3// Purpose: native implementation of wxStatusBar.
4// Optional: can use generic version instead.
8cf73271
SC
5// Author: Stefan Csomor
6// Modified by:
7// Created: 1998-01-01
8// RCS-ID: $Id$
9// Copyright: (c) Stefan Csomor
65571936 10// Licence: wxWindows licence
8cf73271
SC
11///////////////////////////////////////////////////////////////////////////////
12
3660902c
DS
13#ifndef _WX_STATBAR_H_
14#define _WX_STATBAR_H_
8cf73271 15
8cf73271
SC
16class WXDLLEXPORT wxStatusBarMac : public wxStatusBarGeneric
17{
3660902c 18 DECLARE_DYNAMIC_CLASS(wxStatusBarMac)
8cf73271 19
3660902c 20 wxStatusBarMac();
53b6d7a2
PC
21 wxStatusBarMac(wxWindow *parent, wxWindowID id = wxID_ANY,
22 long style = wxST_SIZEGRIP,
23 const wxString& name = wxStatusBarNameStr);
8cf73271 24
d3c7fc99 25 virtual ~wxStatusBarMac();
8cf73271 26
53b6d7a2
PC
27 bool Create(wxWindow *parent, wxWindowID id = wxID_ANY,
28 long style = wxST_SIZEGRIP,
29 const wxString& name = wxStatusBarNameStr);
8cf73271 30
3660902c
DS
31 virtual void DrawFieldText(wxDC& dc, int i);
32 virtual void DrawField(wxDC& dc, int i);
33 virtual void SetStatusText(const wxString& text, int number = 0);
8cf73271 34
3660902c
DS
35 // Implementation
36 virtual void MacHiliteChanged();
37 void OnPaint(wxPaintEvent& event);
8ab50549 38
8cf73271 39protected:
3660902c 40 DECLARE_EVENT_TABLE()
8cf73271
SC
41};
42
3660902c 43#endif // _WX_STATBAR_H_