Version: 2.9.4
Public Member Functions | Protected Member Functions
wxRibbonControl Class Reference

#include </home/zeitlin/src/wx/github/interface/wx/ribbon/control.h>

Inheritance diagram for wxRibbonControl:

Detailed Description

wxRibbonControl serves as a base class for all controls which share the ribbon characteristics of having a ribbon art provider, and (optionally) non-continuous resizing.

Despite what the name may imply, it is not the top-level control for creating a ribbon interface - that is wxRibbonBar.

Ribbon controls often have a region which is "transparent", and shows the contents of the ribbon page or panel behind it. If implementing a new ribbon control, then it may be useful to realise that this effect is done by the art provider when painting the background of the control, and hence in the paint handler for the new control, you should call a draw background method on the art provider (wxRibbonArtProvider::DrawButtonBarBackground() and wxRibbonArtProvider::DrawToolBarBackground() typically just redraw what is behind the rectangle being painted) if you want transparent regions.

Library:  wxRibbon
Category:  Ribbon User Interface

Public Member Functions

 wxRibbonControl ()
 Constructor.
 wxRibbonControl (wxWindow *parent, wxWindowID id, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=0, const wxValidator &validator=wxDefaultValidator, const wxString &name=wxControlNameStr)
 Constructor.
virtual void SetArtProvider (wxRibbonArtProvider *art)
 Set the art provider to be used.
wxRibbonArtProviderGetArtProvider () const
 Get the art provider to be used.
virtual bool IsSizingContinuous () const
wxSize GetNextSmallerSize (wxOrientation direction) const
 If sizing is not continuous, then return a suitable size for the control which is smaller than the current size.
wxSize GetNextSmallerSize (wxOrientation direction, wxSize relative_to) const
 If sizing is not continuous, then return a suitable size for the control which is smaller than the given size.
wxSize GetNextLargerSize (wxOrientation direction) const
 If sizing is not continuous, then return a suitable size for the control which is larger than the current size.
wxSize GetNextLargerSize (wxOrientation direction, wxSize relative_to) const
 If sizing is not continuous, then return a suitable size for the control which is larger than the given size.
virtual bool Realize ()
 Perform initial size and layout calculations after children have been added, and/or realize children.
bool Realise ()
 Alias for Realize().
virtual wxRibbonBarGetAncestorRibbonBar () const
 Get the first ancestor which is a wxRibbonBar (or derived) or NULL if not having such parent.
virtual wxSize GetBestSizeForParentSize (const wxSize &parentSize) const
 Finds the best width and height given the parent's width and height.

Protected Member Functions

virtual wxSize DoGetNextSmallerSize (wxOrientation direction, wxSize relative_to) const
 Implementation of GetNextSmallerSize().
virtual wxSize DoGetNextLargerSize (wxOrientation direction, wxSize relative_to) const
 Implementation of GetNextLargerSize().

List of all members.


Constructor & Destructor Documentation

wxRibbonControl::wxRibbonControl ( )

Constructor.

wxRibbonControl::wxRibbonControl ( wxWindow parent,
wxWindowID  id,
const wxPoint pos = wxDefaultPosition,
const wxSize size = wxDefaultSize,
long  style = 0,
const wxValidator validator = wxDefaultValidator,
const wxString name = wxControlNameStr 
)

Constructor.

If parent is a wxRibbonControl with a non-NULL art provider, then the art provider of new control is set to that of parent.


Member Function Documentation

virtual wxSize wxRibbonControl::DoGetNextLargerSize ( wxOrientation  direction,
wxSize  relative_to 
) const [protected, virtual]

Implementation of GetNextLargerSize().

Controls which have non-continuous sizing must override this virtual function rather than GetNextLargerSize().

virtual wxSize wxRibbonControl::DoGetNextSmallerSize ( wxOrientation  direction,
wxSize  relative_to 
) const [protected, virtual]

Implementation of GetNextSmallerSize().

Controls which have non-continuous sizing must override this virtual function rather than GetNextSmallerSize().

virtual wxRibbonBar* wxRibbonControl::GetAncestorRibbonBar ( ) const [virtual]

Get the first ancestor which is a wxRibbonBar (or derived) or NULL if not having such parent.

Since:
2.9.4
wxRibbonArtProvider* wxRibbonControl::GetArtProvider ( ) const

Get the art provider to be used.

Note that until an art provider has been set in some way, this function may return NULL.

virtual wxSize wxRibbonControl::GetBestSizeForParentSize ( const wxSize parentSize) const [virtual]

Finds the best width and height given the parent's width and height.

Used to implement the wxRIBBON_PANEL_FLEXIBLE panel style.

wxSize wxRibbonControl::GetNextLargerSize ( wxOrientation  direction) const

If sizing is not continuous, then return a suitable size for the control which is larger than the current size.

Parameters:
directionThe direction(s) in which the size should increase.
Returns:
The current size if there is no larger size, otherwise a suitable size which is larger in the given direction(s), and the same as the current size in the other direction (if any).
参照:
IsSizingContinuous()
wxSize wxRibbonControl::GetNextLargerSize ( wxOrientation  direction,
wxSize  relative_to 
) const

If sizing is not continuous, then return a suitable size for the control which is larger than the given size.

Parameters:
directionThe direction(s) in which the size should increase.
relative_toThe size for which a larger size should be found.
Returns:
relative_to if there is no larger size, otherwise a suitable size which is larger in the given direction(s), and the same as relative_to in the other direction (if any).
参照:
IsSizingContinuous()
DoGetNextLargerSize()
wxSize wxRibbonControl::GetNextSmallerSize ( wxOrientation  direction,
wxSize  relative_to 
) const

If sizing is not continuous, then return a suitable size for the control which is smaller than the given size.

Parameters:
directionThe direction(s) in which the size should reduce.
relative_toThe size for which a smaller size should be found.
Returns:
relative_to if there is no smaller size, otherwise a suitable size which is smaller in the given direction(s), and the same as relative_to in the other direction (if any).
参照:
IsSizingContinuous()
DoGetNextSmallerSize()
wxSize wxRibbonControl::GetNextSmallerSize ( wxOrientation  direction) const

If sizing is not continuous, then return a suitable size for the control which is smaller than the current size.

Parameters:
directionThe direction(s) in which the size should reduce.
Returns:
The current size if there is no smaller size, otherwise a suitable size which is smaller in the given direction(s), and the same as the current size in the other direction (if any).
参照:
IsSizingContinuous()
virtual bool wxRibbonControl::IsSizingContinuous ( ) const [virtual]
Returns:
true if this window can take any size (greater than its minimum size), false if it can only take certain sizes.
参照:
GetNextSmallerSize()
GetNextLargerSize()
bool wxRibbonControl::Realise ( )

Alias for Realize().

virtual bool wxRibbonControl::Realize ( ) [virtual]

Perform initial size and layout calculations after children have been added, and/or realize children.

Reimplemented in wxRibbonBar, wxRibbonButtonBar, wxRibbonPage, wxRibbonPanel, and wxRibbonToolBar.

virtual void wxRibbonControl::SetArtProvider ( wxRibbonArtProvider art) [virtual]

Set the art provider to be used.

In many cases, setting the art provider will also set the art provider on all child windows which extend wxRibbonControl.

In most cases, controls will not take ownership of the given pointer, with the notable exception being wxRibbonBar::SetArtProvider().

Reimplemented in wxRibbonBar, wxRibbonPage, and wxRibbonPanel.

 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines