Try to place unpositioned applets in areas that aren't occupied using a very

simple placement policy.

BUG: 154122

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=751607
This commit is contained in:
Jason Stubbs 2007-12-22 12:32:55 +00:00
parent 25f506b157
commit fa69a979c9
2 changed files with 53 additions and 9 deletions

View File

@ -417,15 +417,7 @@ Applet* Containment::addApplet(const QString& name, const QVariantList& args, ui
applet->setGeometry(QRectF(appletGeometry.topLeft(), applet->setGeometry(QRectF(appletGeometry.topLeft(),
applet->sizeHint())); applet->sizeHint()));
} else if (geometry().isValid()) { } else if (geometry().isValid()) {
//TODO: Make sure new applets don't overlap with existing ones applet->setGeometry(geometryForApplet(applet));
// Center exactly:
QSizeF size = applet->sizeHint();
qreal appletWidth = size.width();
qreal appletHeight = size.height();
qreal width = geometry().width();
qreal height = geometry().height();
//kDebug() << "measuring geometry with" << appletWidth << appletHeight << width << height;
applet->setGeometry(QRectF(QPointF((width / 2) - (appletWidth / 2), (height / 2) - (appletHeight / 2)), size));
} }
//kDebug() << applet->name() << "sizehint:" << applet->sizeHint() << "geometry:" << applet->geometry(); //kDebug() << applet->name() << "sizehint:" << applet->sizeHint() << "geometry:" << applet->geometry();
@ -443,6 +435,55 @@ Applet* Containment::addApplet(const QString& name, const QVariantList& args, ui
return applet; return applet;
} }
QRectF Containment::geometryForApplet(Applet *applet) const
{
// first try the top left of the containment
QRectF placement = QRectF(geometry().topLeft(), applet->sizeHint());
if (regionIsEmpty(placement, applet)) {
return placement;
}
QList<Applet *> otherApplets = d->applets;
otherApplets.removeAll(applet);
// Then below existing applets
foreach (Applet *otherApplet, otherApplets) {
placement.moveTo(otherApplet->pos() + QPointF(0, otherApplet->size().height()));
if (!geometry().contains(placement)) {
continue;
}
if (regionIsEmpty(placement, applet)) {
return placement;
}
}
// Then to the right
foreach (Applet *otherApplet, otherApplets) {
placement.moveTo(otherApplet->pos() + QPointF(otherApplet->size().width(), 0));
if (!geometry().contains(placement)) {
continue;
}
if (regionIsEmpty(placement, applet)) {
return placement;
}
}
// Otherwise place it in the centre of the screen
placement.moveLeft(geometry().width() / 2 + placement.width() / 2);
placement.moveTop(geometry().height() / 2 + placement.height() / 2);
return placement;
}
bool Containment::regionIsEmpty(const QRectF &region, Applet *ignoredApplet) const
{
foreach (Applet *applet, d->applets) {
if (applet != ignoredApplet && applet->geometry().intersects(region)) {
return false;
}
}
return true;
}
void Containment::addApplet(Applet *applet) void Containment::addApplet(Applet *applet)
{ {
Containment *currentContainment = applet->containment(); Containment *currentContainment = applet->containment();

View File

@ -314,6 +314,9 @@ class PLASMA_EXPORT Containment : public Applet
void destroyApplet(); void destroyApplet();
private: private:
QRectF geometryForApplet(Applet *applet) const;
bool regionIsEmpty(const QRectF &region, Applet *ignoredApplet=0) const;
Q_DISABLE_COPY(Containment) Q_DISABLE_COPY(Containment)
class Private; class Private;