mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 21:31:25 +00:00
65 lines
2 KiB
C++
65 lines
2 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/qt/notebook.h
|
|
// Author: Peter Most, Mariano Reingart
|
|
// Copyright: (c) 2010 wxWidgets dev team
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_QT_NOTEBOOK_H_
|
|
#define _WX_QT_NOTEBOOK_H_
|
|
|
|
class QTabWidget;
|
|
|
|
class WXDLLIMPEXP_CORE wxNotebook : public wxNotebookBase
|
|
{
|
|
public:
|
|
wxNotebook();
|
|
wxNotebook(wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
long style = 0,
|
|
const wxString& name = wxASCII_STR(wxNotebookNameStr));
|
|
|
|
bool Create(wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
long style = 0,
|
|
const wxString& name = wxASCII_STR(wxNotebookNameStr));
|
|
|
|
virtual void SetPadding(const wxSize& padding) wxOVERRIDE;
|
|
virtual void SetTabSize(const wxSize& sz) wxOVERRIDE;
|
|
|
|
virtual bool SetPageText(size_t n, const wxString& strText) wxOVERRIDE;
|
|
virtual wxString GetPageText(size_t n) const wxOVERRIDE;
|
|
|
|
virtual int GetPageImage(size_t n) const wxOVERRIDE;
|
|
virtual bool SetPageImage(size_t n, int imageId) wxOVERRIDE;
|
|
|
|
virtual bool InsertPage(size_t n, wxWindow *page, const wxString& text,
|
|
bool bSelect = false, int imageId = -1) wxOVERRIDE;
|
|
|
|
virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const wxOVERRIDE;
|
|
|
|
int SetSelection(size_t nPage) wxOVERRIDE;
|
|
int ChangeSelection(size_t nPage) wxOVERRIDE;
|
|
|
|
virtual bool DeleteAllPages() wxOVERRIDE;
|
|
|
|
virtual QWidget *GetHandle() const wxOVERRIDE;
|
|
|
|
protected:
|
|
virtual wxWindow *DoRemovePage(size_t page) wxOVERRIDE;
|
|
|
|
private:
|
|
QTabWidget *m_qtTabWidget;
|
|
|
|
// internal array to store imageId for each page:
|
|
wxVector<int> m_images;
|
|
|
|
wxDECLARE_DYNAMIC_CLASS( wxNotebook );
|
|
};
|
|
|
|
|
|
#endif // _WX_QT_NOTEBOOK_H_
|