Wt  4.11.4
Public Member Functions | Protected Member Functions | Static Protected Member Functions | List of all members
Wt::StdLayoutImpl Class Referenceabstract

An abstract base class for implementing layout managers. More...

#include <Wt/StdLayoutImpl.h>

Inheritance diagram for Wt::StdLayoutImpl:
[legend]

Public Member Functions

 StdLayoutImpl (WLayout *layout)
 Constructor. More...
 
virtual ~StdLayoutImpl ()
 Destructor.
 
virtual void updateDom (DomElement &parent)=0
 Updates the DomElements in the WLayout. More...
 
virtual bool itemResized (WLayoutItem *item)=0
 Called when a WLayoutItem in the WLayout is resized. More...
 
virtual bool parentResized ()=0
 Called when the parent is resized. More...
 
WLayoutItemlayoutItem () const override
 Returns the WLayout as a WLayoutItem.
 
void update () override
 Updates the layout. More...
 
- Public Member Functions inherited from Wt::StdLayoutItemImpl
 StdLayoutItemImpl ()
 Constructor.
 
virtual ~StdLayoutItemImpl ()
 Destructor.
 
WContainerWidgetcontainer () const
 Returns the container of the of the parent layout.
 
virtual int minimumWidth () const =0
 Returns the minimum width of the item.
 
virtual int minimumHeight () const =0
 Returns the minimum height of the item.
 
virtual int maximumWidth () const =0
 Returns the maximum width of the item.
 
virtual int maximumHeight () const =0
 Returns the maximum height of the item.
 
StdLayoutImplparentLayoutImpl () const
 Returns the parent layout of the item. More...
 
- Public Member Functions inherited from Wt::WObject
void addChild (std::unique_ptr< WObject > child)
 Add a child WObject whose lifetime is determined by this WObject.
 
template<typename Child >
Child * addChild (std::unique_ptr< Child > child)
 Add a child WObject, returning a raw pointer. More...
 
std::unique_ptr< WObjectremoveChild (WObject *child)
 Remove a child WObject, so its lifetime is no longer determined by this WObject.
 
template<typename Child >
std::unique_ptr< Child > removeChild (Child *child)
 Remove a child WObject, so its lifetime is no longer determined by this WObject. More...
 
virtual const std::string id () const
 Returns the (unique) identifier for this object. More...
 
virtual void setObjectName (const std::string &name)
 Sets an object name. More...
 
virtual std::string objectName () const
 Returns the object name. More...
 
void resetLearnedSlots ()
 Resets learned stateless slot implementations. More...
 
template<class T >
void resetLearnedSlot (void(T::*method)())
 Resets a learned stateless slot implementation. More...
 
template<class T >
WStatelessSlot * implementStateless (void(T::*method)())
 Declares a slot to be stateless and learn client-side behaviour on first invocation. More...
 
template<class T >
WStatelessSlot * implementStateless (void(T::*method)(), void(T::*undoMethod)())
 Declares a slot to be stateless and learn client-side behaviour in advance. More...
 
void isNotStateless ()
 Marks the current function as not stateless. More...
 
template<class T >
WStatelessSlot * implementJavaScript (void(T::*method)(), const std::string &jsCode)
 Provides a JavaScript implementation for a method. More...
 
- Public Member Functions inherited from Wt::Core::observable
 observable () noexcept
 Default constructor.
 
virtual ~observable ()
 Destructor. More...
 
template<typename... Args, typename C >
auto bindSafe (void(C::*method)(Args...)) noexcept
 Protects a method call against object destruction. More...
 
template<typename... Args, typename C >
auto bindSafe (void(C::*method)(Args...) const) const noexcept
 Protects a const method call against object destruction. More...
 
template<typename Function >
auto bindSafe (const Function &function) noexcept
 Protects a function against object destruction. More...
 
- Public Member Functions inherited from Wt::WLayoutItemImpl
virtual ~WLayoutItemImpl ()
 Destructor.
 
- Public Member Functions inherited from Wt::WLayoutImpl
virtual ~WLayoutImpl ()
 Destructor.
 
virtual void itemAdded (WLayoutItem *item)=0
 Adds a layout item. More...
 
virtual void itemRemoved (WLayoutItem *item)=0
 Removes a layout item.
 

Protected Member Functions

WLayoutlayout () const
 Returns the WLayout.
 
- Protected Member Functions inherited from Wt::WObject
virtual WStatelessSlot * getStateless (Method method)
 On-demand stateless slot implementation. More...
 

Static Protected Member Functions

static StdLayoutItemImplgetImpl (WLayoutItem *item)
 Returns a WLayoutItem implementation. More...
 

Additional Inherited Members

- Public Types inherited from Wt::WObject
typedef void(WObject::* Method) ()
 Typedef for a WObject method without arguments.
 

Detailed Description

An abstract base class for implementing layout managers.

See also
StdLayoutItemImpl, WLayout

Constructor & Destructor Documentation

◆ StdLayoutImpl()

Wt::StdLayoutImpl::StdLayoutImpl ( WLayout layout)

Constructor.

Creates a new StdLayoutImpl for the given WLayout.

Member Function Documentation

◆ getImpl()

StdLayoutItemImpl * Wt::StdLayoutImpl::getImpl ( WLayoutItem item)
staticprotected

Returns a WLayoutItem implementation.

Returns a WLayoutItem implementation if the implementation is a subclass of StdLayoutItemImpl. Otherwise returns nullptr.

◆ itemResized()

virtual bool Wt::StdLayoutImpl::itemResized ( WLayoutItem item)
pure virtual

Called when a WLayoutItem in the WLayout is resized.

When a WLayoutItem is resized, it may be necessary to update the whole layout. Items may have moved in such a way, that it would push other items of screen, requiring other items to adapt to it.

If it returns true, a subsequent updateDom() may be necessary.

See also
WContainerWidget::updateDomChildren()

◆ parentResized()

virtual bool Wt::StdLayoutImpl::parentResized ( )
pure virtual

Called when the parent is resized.

When the parent is resized, it may be necessary to update the whole layout. More or less items could not potentially fit in the layout, or the layout's boundaries may have changed.

If it returns true, a subsequent updateDom() may be necessary.

See also
updateDom(), WContainerWidget::parentResized()

◆ update()

void Wt::StdLayoutImpl::update ( )
overridevirtual

Updates the layout.

By default, this will trigger a call to updateDom().

Note
Several calls to update() may happens before updateDom() is called.
See also
updateDom()

Implements Wt::WLayoutImpl.

◆ updateDom()

virtual void Wt::StdLayoutImpl::updateDom ( DomElement parent)
pure virtual

Updates the DomElements in the WLayout.

This function should update the DomElements in the WLayout. This means creating DomElements for newly added StdLayoutItemImpl, deleting DomElements from deleted StdLayoutItemImpl and updating the placement and size of the DomElements.