Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions

Writing your own layout manager

Here we present an example in detail. The class CardLayout is inspired by the Java layout manager of the same name. It lays out the items (widgets or nested layouts) on top of each other, each item offset by TQLayout::spacing().

To write your own layout class, you must define the following:

In most cases, you will also implement minimumSize().

card.h

#ifndef CARD_H
#define CARD_H

#include <ntqlayout.h>
#include <ntqptrlist.h>

class CardLayout : public TQLayout
{
public:
    CardLayout( TQWidget *parent, int dist )
        : TQLayout( parent, 0, dist ) {}
    CardLayout( TQLayout* parent, int dist)
        : TQLayout( parent, dist ) { }
    CardLayout( int dist )
        : TQLayout( dist ) {}
    ~CardLayout();

    void addItem(TQLayoutItem *item);
    TQSize sizeHint() const;
    TQSize minimumSize() const;
    TQLayoutIterator iterator();
    void setGeometry(const TQRect &rect);

private:
    TQPtrList<TQLayoutItem> list;
};

#endif

card.cpp

#include "card.h"

First we define an iterator over the layout. Layout iterators are used internally by the layout system to handle deletion of widgets. They are also available for application programmers.

There are two different classes involved: TQLayoutIterator is the class that is visible to application programmers, it is explicitly shared. The TQLayoutIterator contains a TQGLayoutIterator that does all the work. We must create a subclass of TQGLayoutIterator that knows how to iterate over our layout class.

In this case, we choose a simple implementation: we store an integer index into the list and a pointer to the list. Every TQGLayoutIterator subclass must implement current(), next() and takeCurrent(), as well as a constructor. In our example we do not need a destructor.

class CardLayoutIterator : public TQGLayoutIterator
{
public:
    CardLayoutIterator( TQPtrList<TQLayoutItem> *l )
        : idx( 0 ), list( l ) {}

    TQLayoutItem *current()
    { return idx < int(list->count()) ? list->at(idx) : 0;  }

    TQLayoutItem *next()
    { idx++; return current(); }

    TQLayoutItem *takeCurrent()
    { return list->take( idx ); }

private:
    int idx;
    TQPtrList<TQLayoutItem> *list;
};

We must implement TQLayout:iterator() to return a TQLayoutIterator over this layout.

TQLayoutIterator CardLayout::iterator()
{       
    return TQLayoutIterator( new CardLayoutIterator(&list) );
}

addItem() implements the default placement strategy for layout items. It must be implemented. It is used by TQLayout::add(), by the TQLayout constructor that takes a layout as parent, and it is used to implement the auto-add feature. If your layout has advanced placement options that require parameters, you must provide extra access functions such as TQGridLayout::addMultiCell().

void CardLayout::addItem( TQLayoutItem *item )
{
    list.append( item );
}

The layout takes over responsibility of the items added. Since TQLayoutItem does not inherit TQObject, we must delete the items manually. The function TQLayout::deleteAllItems() uses the iterator we defined above to delete all the items in the layout.

CardLayout::~CardLayout()
{
    deleteAllItems();
}

The setGeometry() function actually performs the layout. The rectangle supplied as an argument does not include margin(). If relevant, use spacing() as the distance between items.

void CardLayout::setGeometry( const TQRect &rect )
{
    TQLayout::setGeometry( rect );

    TQPtrListIterator<TQLayoutItem> it( list );
    if (it.count() == 0)
        return;

    TQLayoutItem *item;

    int i = 0;

    int w = rect.width() - ( list.count() - 1 ) * spacing();
    int h = rect.height() - ( list.count() - 1 ) * spacing();

    while ( (item = it.current()) != 0 ) {
        ++it;
        TQRect geom( rect.x() + i * spacing(), rect.y() + i * spacing(),
                    w, h );
        item->setGeometry( geom );
        ++i;
    }
}

sizeHint() and minimumSize() are normally very similar in implementation. The sizes returned by both functions should include spacing(), but not margin().

TQSize CardLayout::sizeHint() const
{
    TQSize s( 0, 0 );
    int n = list.count();
    if ( n > 0 )
        s = TQSize( 100, 70 ); // start with a nice default size
    TQPtrListIterator<TQLayoutItem> it( list );
    TQLayoutItem *item;
    while ( (item = it.current()) != 0 ) {
        ++it;
        s = s.expandedTo( item->minimumSize() );
    }
    return s + n * TQSize( spacing(), spacing() );
}

TQSize CardLayout::minimumSize() const
{
    TQSize s( 0, 0 );
    int n = list.count();
    TQPtrListIterator<TQLayoutItem> it( list );
    TQLayoutItem *item;
    while ( (item = it.current()) != 0 ) {
        ++it;
        s = s.expandedTo( item->minimumSize() );
    }
    return s + n * TQSize( spacing(), spacing() );
}

Further Notes

This layout does not implement heightForWidth().

We ignore TQLayoutItem::isEmpty(), this means that the layout will treat hidden widgets as visible.

For complex layouts, speed can be greatly increased by caching calculated values. In that case, implement TQLayoutItem::invalidate() to mark the cached data as dirty.

Calling TQLayoutItem::sizeHint(), etc. may be expensive, so you should store the value in a local variable if you need it again later in the same function.

You should not call TQLayoutItem::setGeometry() twice on the same item in the same function. That can be very expensive if the item has several child widgets, because it will have to do a complete layout every time. Instead, calculate the geometry and then set it. (This doesn't only apply to layouts, you should do the same if you implement your own resizeEvent().)


Copyright © 2007 TrolltechTrademarks
TQt 3.3.8