initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
108
libs/wxWidgets-3.3.1/include/wx/ribbon/page.h
Normal file
108
libs/wxWidgets-3.3.1/include/wx/ribbon/page.h
Normal file
@@ -0,0 +1,108 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/ribbon/page.h
|
||||
// Purpose: Container for ribbon-bar-style interface panels
|
||||
// Author: Peter Cawley
|
||||
// Created: 2009-05-25
|
||||
// Copyright: (C) Peter Cawley
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_RIBBON_PAGE_H_
|
||||
#define _WX_RIBBON_PAGE_H_
|
||||
|
||||
#include "wx/defs.h"
|
||||
|
||||
#if wxUSE_RIBBON
|
||||
|
||||
#include "wx/ribbon/control.h"
|
||||
#include "wx/ribbon/panel.h"
|
||||
#include "wx/bitmap.h"
|
||||
|
||||
class wxRibbonBar;
|
||||
class wxRibbonPageScrollButton;
|
||||
|
||||
class WXDLLIMPEXP_RIBBON wxRibbonPage : public wxRibbonControl
|
||||
{
|
||||
public:
|
||||
wxRibbonPage();
|
||||
|
||||
wxRibbonPage(wxRibbonBar* parent,
|
||||
wxWindowID id = wxID_ANY,
|
||||
const wxString& label = wxEmptyString,
|
||||
const wxBitmap& icon = wxNullBitmap,
|
||||
long style = 0);
|
||||
|
||||
virtual ~wxRibbonPage();
|
||||
|
||||
bool Create(wxRibbonBar* parent,
|
||||
wxWindowID id = wxID_ANY,
|
||||
const wxString& label = wxEmptyString,
|
||||
const wxBitmap& icon = wxNullBitmap,
|
||||
long style = 0);
|
||||
|
||||
void SetArtProvider(wxRibbonArtProvider* art) override;
|
||||
|
||||
wxBitmap& GetIcon() {return m_icon;}
|
||||
virtual wxSize GetMinSize() const override;
|
||||
void SetSizeWithScrollButtonAdjustment(int x, int y, int width, int height);
|
||||
void AdjustRectToIncludeScrollButtons(wxRect* rect) const;
|
||||
|
||||
bool DismissExpandedPanel();
|
||||
|
||||
virtual bool Realize() override;
|
||||
virtual bool Show(bool show = true) override;
|
||||
virtual bool Layout() override;
|
||||
virtual bool ScrollLines(int lines) override;
|
||||
bool ScrollPixels(int pixels);
|
||||
bool ScrollSections(int sections);
|
||||
|
||||
wxOrientation GetMajorAxis() const;
|
||||
|
||||
virtual void RemoveChild(wxWindowBase *child) override;
|
||||
|
||||
void HideIfExpanded();
|
||||
|
||||
wxRibbonPanel* GetPanel(int n);
|
||||
wxRibbonPanel* GetPanelById(wxWindowID id);
|
||||
size_t GetPanelCount() const;
|
||||
|
||||
protected:
|
||||
virtual wxSize DoGetBestSize() const override;
|
||||
virtual wxBorder GetDefaultBorder() const override { return wxBORDER_NONE; }
|
||||
|
||||
void DoSetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO) override;
|
||||
bool DoActualLayout();
|
||||
void OnEraseBackground(wxEraseEvent& evt);
|
||||
void OnPaint(wxPaintEvent& evt);
|
||||
void OnSize(wxSizeEvent& evt);
|
||||
|
||||
bool ExpandPanels(wxOrientation direction, int maximum_amount);
|
||||
bool CollapsePanels(wxOrientation direction, int minimum_amount);
|
||||
bool ShowScrollButtons();
|
||||
void HideScrollButtons();
|
||||
|
||||
void CommonInit(const wxString& label, const wxBitmap& icon);
|
||||
void PopulateSizeCalcArray(wxSize (wxWindow::*get_size)(void) const);
|
||||
|
||||
wxArrayRibbonControl m_collapse_stack;
|
||||
wxBitmap m_icon;
|
||||
wxSize m_old_size;
|
||||
// NB: Scroll button windows are siblings rather than children (to get correct clipping of children)
|
||||
wxRibbonPageScrollButton* m_scroll_left_btn = nullptr;
|
||||
wxRibbonPageScrollButton* m_scroll_right_btn = nullptr;
|
||||
wxSize* m_size_calc_array = nullptr;
|
||||
size_t m_size_calc_array_size;
|
||||
int m_scroll_amount;
|
||||
int m_scroll_amount_limit;
|
||||
int m_size_in_major_axis_for_children;
|
||||
bool m_scroll_buttons_visible;
|
||||
|
||||
#ifndef SWIG
|
||||
wxDECLARE_CLASS(wxRibbonPage);
|
||||
wxDECLARE_EVENT_TABLE();
|
||||
#endif
|
||||
};
|
||||
|
||||
#endif // wxUSE_RIBBON
|
||||
|
||||
#endif // _WX_RIBBON_PAGE_H_
|
||||
Reference in New Issue
Block a user