If possible, all windows should call wxWindow::Create() on creation now, because among other things: - It manages generic and non-generic windows uniformly and transparently - It ensures an appropriate initial size for the window - AddChild() and PostCreation() are automatically called - Scrollbar policies are set in one place.
76 lines
2.2 KiB
C++
76 lines
2.2 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/qt/frame.h
|
|
// Purpose: wxFrame class interface
|
|
// Author: Peter Most
|
|
// Created: 09.08.09
|
|
// Copyright: (c) Peter Most
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_QT_FRAME_H_
|
|
#define _WX_QT_FRAME_H_
|
|
|
|
#include "wx/frame.h"
|
|
|
|
class QMainWindow;
|
|
|
|
class WXDLLIMPEXP_CORE wxFrame : public wxFrameBase
|
|
{
|
|
public:
|
|
wxFrame() { Init(); }
|
|
wxFrame(wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxString& title,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
long style = wxDEFAULT_FRAME_STYLE,
|
|
const wxString& name = wxASCII_STR(wxFrameNameStr))
|
|
{
|
|
Init();
|
|
|
|
Create( parent, id, title, pos, size, style, name );
|
|
}
|
|
virtual ~wxFrame();
|
|
|
|
bool Create(wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxString& title,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
long style = wxDEFAULT_FRAME_STYLE,
|
|
const wxString& name = wxASCII_STR(wxFrameNameStr));
|
|
|
|
virtual void SetMenuBar(wxMenuBar *menubar) override;
|
|
virtual void SetStatusBar(wxStatusBar *statusBar ) override;
|
|
virtual void SetToolBar(wxToolBar *toolbar) override;
|
|
|
|
virtual void SetWindowStyleFlag( long style ) override;
|
|
|
|
virtual void AddChild( wxWindowBase *child ) override;
|
|
virtual void RemoveChild( wxWindowBase *child ) override;
|
|
|
|
QMainWindow *GetQMainWindow() const;
|
|
|
|
protected:
|
|
virtual wxPoint GetClientAreaOrigin() const override;
|
|
virtual void DoGetClientSize(int *width, int *height) const override;
|
|
virtual void DoSetClientSize(int width, int height) override;
|
|
|
|
virtual QWidget* QtGetParentWidget() const override;
|
|
|
|
private:
|
|
// Common part of all ctors.
|
|
void Init()
|
|
{
|
|
m_qtToolBar = nullptr;
|
|
}
|
|
|
|
|
|
// Currently active native toolbar.
|
|
class QToolBar* m_qtToolBar;
|
|
|
|
wxDECLARE_DYNAMIC_CLASS( wxFrame );
|
|
};
|
|
|
|
|
|
#endif // _WX_QT_FRAME_H_
|