// Version: $Id: 5090392f996d644cc2e7575dd4061a571d417532 $ // // // Commentary: // // // Change Log: // // // Code: #include "dtkViewLayout.h" #include "dtkViewLayoutItem.h" #include class dtkViewLayoutPrivate { public: dtkViewLayoutItem *root; dtkViewLayoutItem *current; }; dtkViewLayout::dtkViewLayout(QWidget *parent) : QFrame(parent), d(new dtkViewLayoutPrivate) { d->root = new dtkViewLayoutItem(0); d->root->setParent(this); d->root->setLayout(this); d->current = d->root; QVBoxLayout *layout = new QVBoxLayout(this); layout->setContentsMargins(0, 0, 0, 0); layout->setSpacing(0); layout->addWidget(d->root); connect(d->root, SIGNAL(focused(dtkAbstractView *)), this, SIGNAL(focused(dtkAbstractView *))); connect(d->root, SIGNAL(unfocused(dtkAbstractView *)), this, SIGNAL(unfocused(dtkAbstractView *))); connect(dtkAbstractViewFactory::instance(), SIGNAL(cleared()), this, SLOT(clear())); } dtkViewLayout::~dtkViewLayout(void) { delete d; d = NULL; } dtkViewLayoutItem *dtkViewLayout::root(void) { return d->root; } dtkViewLayoutItem *dtkViewLayout::current(void) { return d->current; } void dtkViewLayout::setCurrent(dtkViewLayoutItem *item) { d->current = item; } void dtkViewLayout::clear(void) { d->root->clear(); } // // dtkViewLayout.cpp ends here