initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
44
libs/wxWidgets-3.3.1/include/wx/osx/statusbr.h
Normal file
44
libs/wxWidgets-3.3.1/include/wx/osx/statusbr.h
Normal file
@@ -0,0 +1,44 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/osx/statusbr.h
|
||||
// Purpose: native implementation of wxStatusBar.
|
||||
// Optional: can use generic version instead.
|
||||
// Author: Stefan Csomor
|
||||
// Created: 1998-01-01
|
||||
// Copyright: (c) Stefan Csomor
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_STATBAR_H_
|
||||
#define _WX_STATBAR_H_
|
||||
|
||||
class WXDLLIMPEXP_CORE wxStatusBarMac : public wxStatusBarGeneric
|
||||
{
|
||||
public:
|
||||
wxStatusBarMac();
|
||||
wxStatusBarMac(wxWindow *parent, wxWindowID id = wxID_ANY,
|
||||
long style = wxSTB_DEFAULT_STYLE,
|
||||
const wxString& name = wxASCII_STR(wxStatusBarNameStr));
|
||||
|
||||
virtual ~wxStatusBarMac();
|
||||
|
||||
bool Create(wxWindow *parent, wxWindowID id = wxID_ANY,
|
||||
long style = wxSTB_DEFAULT_STYLE,
|
||||
const wxString& name = wxASCII_STR(wxStatusBarNameStr));
|
||||
|
||||
// Implementation
|
||||
virtual void MacHiliteChanged() override;
|
||||
void OnPaint(wxPaintEvent& event);
|
||||
|
||||
protected:
|
||||
virtual int GetEffectiveFieldStyle(int WXUNUSED(i)) const override { return wxSB_NORMAL; }
|
||||
|
||||
virtual void InitColours() override;
|
||||
|
||||
private:
|
||||
wxColour m_textActive, m_textInactive;
|
||||
|
||||
wxDECLARE_DYNAMIC_CLASS(wxStatusBarMac);
|
||||
wxDECLARE_EVENT_TABLE();
|
||||
};
|
||||
|
||||
#endif // _WX_STATBAR_H_
|
||||
Reference in New Issue
Block a user