8fc5475e15
Commit history was lost in the git to svn merge for trunk, so this reflect work done in two GSOC projects and/or by several authors. Lines changed by each user was the main metric used to ack major contributions. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77497 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
52 lines
1.5 KiB
C++
52 lines
1.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/qt/statusbar.h
|
|
// Author: Peter Most, Javier Torres, Mariano Reingart, Sean D'Epagnier
|
|
// Copyright: (c) 2010 wxWidgets dev team
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_QT_STATUSBAR_H_
|
|
#define _WX_QT_STATUSBAR_H_
|
|
|
|
#include "wx/statusbr.h"
|
|
|
|
#include <QtWidgets/QLabel>
|
|
#include <QtWidgets/QStatusBar>
|
|
|
|
class WXDLLIMPEXP_CORE wxStatusBar : public wxStatusBarBase
|
|
{
|
|
public:
|
|
wxStatusBar() {}
|
|
wxStatusBar(wxWindow *parent, wxWindowID winid = wxID_ANY,
|
|
long style = wxSTB_DEFAULT_STYLE,
|
|
const wxString& name = wxStatusBarNameStr);
|
|
|
|
bool Create(wxWindow *parent, wxWindowID winid = wxID_ANY,
|
|
long style = wxSTB_DEFAULT_STYLE,
|
|
const wxString& name = wxStatusBarNameStr);
|
|
|
|
virtual bool GetFieldRect(int i, wxRect& rect) const;
|
|
virtual void SetMinHeight(int height);
|
|
virtual int GetBorderX() const;
|
|
virtual int GetBorderY() const;
|
|
virtual void Refresh( bool eraseBackground = true,
|
|
const wxRect *rect = (const wxRect *) NULL );
|
|
|
|
virtual QStatusBar *GetHandle() const;
|
|
|
|
protected:
|
|
virtual void DoUpdateStatusText(int number);
|
|
|
|
private:
|
|
void Init();
|
|
void UpdateFields();
|
|
|
|
QStatusBar *m_qtStatusBar;
|
|
QList< QLabel* > m_qtPanes;
|
|
|
|
DECLARE_DYNAMIC_CLASS( wxStatusBar )
|
|
};
|
|
|
|
|
|
#endif // _WX_QT_STATUSBAR_H_
|