moved ctor implementation into dot-cpp file; reformatted
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37334 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
71786e29fa
commit
3660902c0d
@ -1,7 +1,7 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: statusbr.h
|
// Name: wx/mac/carbon/statusbr.h
|
||||||
// Purpose: native implementation of wxStatusBar. Optional; can use generic
|
// Purpose: native implementation of wxStatusBar.
|
||||||
// version instead.
|
// Optional: can use generic version instead.
|
||||||
// Author: Stefan Csomor
|
// Author: Stefan Csomor
|
||||||
// Modified by:
|
// Modified by:
|
||||||
// Created: 1998-01-01
|
// Created: 1998-01-01
|
||||||
@ -20,30 +20,24 @@ class WXDLLEXPORT wxStatusBarMac : public wxStatusBarGeneric
|
|||||||
wxStatusBarMac();
|
wxStatusBarMac();
|
||||||
wxStatusBarMac(wxWindow *parent, wxWindowID id,
|
wxStatusBarMac(wxWindow *parent, wxWindowID id,
|
||||||
long style = 0,
|
long style = 0,
|
||||||
const wxString& name = wxPanelNameStr)
|
const wxString& name = wxPanelNameStr);
|
||||||
{
|
|
||||||
Create(parent, id, style, name);
|
|
||||||
}
|
|
||||||
|
|
||||||
~wxStatusBarMac();
|
~wxStatusBarMac();
|
||||||
|
|
||||||
bool Create(wxWindow *parent, wxWindowID id,
|
bool Create(wxWindow *parent, wxWindowID id,
|
||||||
long style ,
|
long style ,
|
||||||
const wxString& name = wxPanelNameStr) ;
|
const wxString& name = wxPanelNameStr);
|
||||||
|
|
||||||
virtual void DrawFieldText(wxDC& dc, int i);
|
virtual void DrawFieldText(wxDC& dc, int i);
|
||||||
virtual void DrawField(wxDC& dc, int i);
|
virtual void DrawField(wxDC& dc, int i);
|
||||||
virtual void SetStatusText(const wxString& text, int number = 0) ;
|
virtual void SetStatusText(const wxString& text, int number = 0);
|
||||||
////////////////////////////////////////////////////////////////////////
|
|
||||||
// Implementation
|
// Implementation
|
||||||
|
virtual void MacHiliteChanged();
|
||||||
virtual void MacHiliteChanged() ;
|
|
||||||
|
|
||||||
void OnPaint(wxPaintEvent& event);
|
void OnPaint(wxPaintEvent& event);
|
||||||
protected:
|
|
||||||
|
|
||||||
|
protected:
|
||||||
DECLARE_EVENT_TABLE()
|
DECLARE_EVENT_TABLE()
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif // _WX_STATBAR_H_
|
||||||
// _WX_STATBAR_H_
|
|
||||||
|
Loading…
Reference in New Issue
Block a user