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
|
||||
// Purpose: native implementation of wxStatusBar. Optional; can use generic
|
||||
// version instead.
|
||||
// Name: wx/mac/carbon/statusbr.h
|
||||
// Purpose: native implementation of wxStatusBar.
|
||||
// Optional: can use generic version instead.
|
||||
// Author: Stefan Csomor
|
||||
// Modified by:
|
||||
// Created: 1998-01-01
|
||||
@ -10,40 +10,34 @@
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_STATBAR_H_
|
||||
#define _WX_STATBAR_H_
|
||||
#ifndef _WX_STATBAR_H_
|
||||
#define _WX_STATBAR_H_
|
||||
|
||||
class WXDLLEXPORT wxStatusBarMac : public wxStatusBarGeneric
|
||||
{
|
||||
DECLARE_DYNAMIC_CLASS(wxStatusBarMac)
|
||||
DECLARE_DYNAMIC_CLASS(wxStatusBarMac)
|
||||
|
||||
wxStatusBarMac();
|
||||
wxStatusBarMac(wxWindow *parent, wxWindowID id,
|
||||
wxStatusBarMac();
|
||||
wxStatusBarMac(wxWindow *parent, wxWindowID id,
|
||||
long style = 0,
|
||||
const wxString& name = wxPanelNameStr)
|
||||
{
|
||||
Create(parent, id, style, name);
|
||||
}
|
||||
const wxString& name = wxPanelNameStr);
|
||||
|
||||
~wxStatusBarMac();
|
||||
~wxStatusBarMac();
|
||||
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
long style ,
|
||||
const wxString& name = wxPanelNameStr) ;
|
||||
const wxString& name = wxPanelNameStr);
|
||||
|
||||
virtual void DrawFieldText(wxDC& dc, int i);
|
||||
virtual void DrawField(wxDC& dc, int i);
|
||||
virtual void SetStatusText(const wxString& text, int number = 0) ;
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
// Implementation
|
||||
virtual void DrawFieldText(wxDC& dc, int i);
|
||||
virtual void DrawField(wxDC& dc, int i);
|
||||
virtual void SetStatusText(const wxString& text, int number = 0);
|
||||
|
||||
virtual void MacHiliteChanged() ;
|
||||
// Implementation
|
||||
virtual void MacHiliteChanged();
|
||||
void OnPaint(wxPaintEvent& event);
|
||||
|
||||
void OnPaint(wxPaintEvent& event);
|
||||
protected:
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
DECLARE_EVENT_TABLE()
|
||||
};
|
||||
|
||||
#endif
|
||||
// _WX_STATBAR_H_
|
||||
#endif // _WX_STATBAR_H_
|
||||
|
Loading…
Reference in New Issue
Block a user