AUI Framework  develop
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
AAdvancedGridLayout Class Reference

Grid layout. Unlike AGridLayout, cells may have different sizes. More...

#include <AUI/Layout/AAdvancedGridLayout.h>

Classes

struct  CompositionCache
 
struct  GridCell
 

Public Member Functions

 AAdvancedGridLayout (int cellsX, int cellsY)
 
_< AViewgetViewAt (size_t index)
 
void setViewAt (size_t index, _< AView > view)
 
void onResize (int x, int y, int width, int height) override
 
void addView (const _< AView > &view, int x, int y)
 
void addView (const _< AView > &view, AOptional< size_t > index) override
 Attaches view to the layout.
 
void removeView (aui::no_escape< AView > view, size_t index) override
 Detaches view from the layout.
 
int getMinimumWidth () override
 
int getMinimumHeight () override
 
int indexOf (_< AView > view)
 
AVector< _< AView > > getAllViews () override
 Visits all views in the layout.
 
- Public Member Functions inherited from ALayout
virtual ALayoutDirection getLayoutDirection ()
 
virtual void setSpacing (int spacing)
 Layout spacing.
 
- Public Member Functions inherited from AObject
_< AObjectsharedPtr ()
 
_weak< AObjectweakPtr ()
 
template<typename Connectable, ACompatibleSlotFor< Connectable > Function>
void connect (const Connectable &connectable, Function &&function)
 Connects signal or property to slot of "this" object.
 
void setSignalsEnabled (bool enabled)
 
bool isSignalsEnabled () const noexcept
 
template<ASignalInvokable T>
void operator^ (T &&t)
 
_< AAbstractThreadgetThread () const
 
bool isSlotsCallsOnlyOnMyThread () const noexcept
 
void setSlotsCallsOnlyOnMyThread (bool slotsCallsOnlyOnMyThread)
 
- Public Member Functions inherited from AObjectBase
 AObjectBase (AObjectBase &&rhs) noexcept
 
void clearSignals () noexcept
 
- Public Member Functions inherited from aui::noncopyable
 noncopyable (const noncopyable &)=delete
 
noncopyableoperator= (const noncopyable &)=delete
 

Protected Member Functions

int & indexAt (int x, int y)
 
AVector< _< AView > > getRow (int row)
 
AVector< _< AView > > getColumn (int column)
 
virtual void prepareCache (AVector< CompositionCache > &columns, AVector< CompositionCache > &rows)
 
- Protected Member Functions inherited from AObject
void setThread (_< AAbstractThread > thread)
 Set thread of the object.
 

Protected Attributes

int mCurrentIndex = 0
 
int cellsX
 
int cellsY
 
unsigned mSpacing = 0
 
AVector< GridCellmCells
 
AVector< int > mIndices
 

Additional Inherited Members

- Static Public Member Functions inherited from AObject
static void disconnect ()
 
template<AAnySignal Signal, aui::derived_from< AObjectBase > Object, ACompatibleSlotFor< Signal > Function>
static void connect (const Signal &signal, Object *object, Function &&function)
 Connects signal to the slot of the specified object.
 
template<AAnyProperty Property, aui::derived_from< AObjectBase > Object, typename Function>
static void connect (const Property &property, Object *object, Function &&function)
 Connects property to the slot of the specified object.
 
template<APropertyReadable PropertySource, APropertyWritable PropertyDestination>
requires requires { { *propertySource } -> aui::convertible_to<std::decay_t<decltype(*propertyDestination)>>; }
static void connect (PropertySource &&propertySource, PropertyDestination &&propertyDestination)
 Connects source property to the destination property.
 
template<APropertyWritable PropertySource, APropertyWritable PropertyDestination>
requires requires { { *propertySource } -> aui::convertible_to<std::decay_t<decltype(*propertyDestination)>>; { *propertyDestination } -> aui::convertible_to<std::decay_t<decltype(*propertySource)>>; }
static void biConnect (PropertySource &&propertySource, PropertyDestination &&propertyDestination)
 Connects source property to the destination property and opposite (bidirectionally).
 
template<AAnySignalOrProperty Connectable, aui::derived_from< AObjectBase > Object, ACompatibleSlotFor< Connectable > Function>
static void connect (const Connectable &connectable, Object &object, Function &&function)
 Connects signal or property to the slot of the specified object.
 
template<AAnySignalOrProperty Connectable, aui::derived_from< AObjectBase > Object, ACompatibleSlotFor< Connectable > Function>
static void connect (const Connectable &connectable, _< Object > object, Function &&function)
 Connects signal or property to the slot of the specified object.
 
template<AAnySignalOrProperty Connectable, aui::derived_from< AObjectBase > Object, typename Function>
static void connect (const Connectable &connectable, ASlotDef< Object *, Function > slotDef)
 Connects signal to the slot of the specified object. Slot is packed to single argument.
 
template<AAnyProperty Property, typename Object, ACompatibleSlotFor< Property > Function>
requires (!aui::derived_from<Object, AObject>)
static void connect (const Property &property, _< Object > object, Function &&function)
 Connects signal or property to the slot of the specified non-AObject type.
 
static void moveToThread (aui::no_escape< AObject > object, _< AAbstractThread > thread)
 

Detailed Description

Grid layout. Unlike AGridLayout, cells may have different sizes.

Member Function Documentation

◆ addView()

void AAdvancedGridLayout::addView ( const _< AView > & view,
AOptional< size_t > index )
overridevirtual

Attaches view to the layout.

Parameters
viewview to attach.
indexindex to insert at. If not specified, when the view is inserted at the end.

See ABasicLayout for basic implementation of this method.

Implements ALayout.

◆ getAllViews()

AVector< _< AView > > AAdvancedGridLayout::getAllViews ( )
overridevirtual

Visits all views in the layout.

Implements ALayout.

◆ getMinimumHeight()

int AAdvancedGridLayout::getMinimumHeight ( )
overridevirtual

Implements ALayout.

◆ getMinimumWidth()

int AAdvancedGridLayout::getMinimumWidth ( )
overridevirtual

Implements ALayout.

◆ onResize()

void AAdvancedGridLayout::onResize ( int x,
int y,
int width,
int height )
overridevirtual

Implements ALayout.

◆ removeView()

void AAdvancedGridLayout::removeView ( aui::no_escape< AView > view,
size_t index )
overridevirtual

Detaches view from the layout.

Parameters
viewview to detach.
indexindex of the view in the container. This value is indented for optimization purposes in most cases; the value may be ignored safely.

See ABasicLayout for basic implementation of this method.

Implements ALayout.


The documentation for this class was generated from the following files:
Inheritance diagram for AAdvancedGridLayout:
Collaboration diagram for AAdvancedGridLayout: